/* ====== GLOBAL RESET / BASE ====== */
* { box-sizing: border-box; }

body{
  margin: 0;
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
  color: #111;
  background: #f7f7fb;
}

a{ color: inherit; }

/* ====== LAYOUT HELPERS ====== */
.container{
  max-width: 1100px;
  margin: 0 auto;
  padding: 30px 18px;
}

.lead{ opacity: .85; margin-top: 8px; }

/* ====== NAVBAR (GLASS) ====== */
.navbar{
  position: sticky;
  top: 0;
  z-index: 1000;

  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 18px;

  background: rgba(15, 23, 42, 0.55);
  color: #fff;

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid rgba(255,255,255,.12);
  box-shadow: 0 14px 30px rgba(0,0,0,.25);
}

/* Brand */
.brand{
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-weight: 800;
}

.brand-logo{
  width: 42px;
  height: 42px;
  border-radius: 12px;
  object-fit: cover;
  background: #fff;
}

.brand-name{
  font-size: 18px;
  letter-spacing: .2px;
}

/* Tabs */
.nav-links a{
  position: relative;
  display: inline-block;

  text-decoration: none;
  margin-left: 10px;
  padding: 10px 14px;
  border-radius: 999px;

  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);

  font-weight: 700;
  transition: transform .18s ease, background .18s ease, box-shadow .18s ease, color .18s ease;
  will-change: transform;
}

.nav-links a:hover{
  background: rgba(255,255,255,.16);
  transform: translateY(-2px);
  box-shadow: 0 10px 22px rgba(0,0,0,.22);
}

.nav-links a.active{
  background: rgba(255,255,255,.92);
  color: #0f172a;
  border-color: rgba(255,255,255,.35);
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(0,0,0,.28);
}

/* Animated underline shine */
.nav-links a::after{
  content:"";
  position:absolute;
  left: 14px;
  right: 14px;
  bottom: 7px;
  height: 2px;
  border-radius: 999px;

  background: rgba(255,255,255,.55);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
  opacity: .9;
}

.nav-links a:hover::after{ transform: scaleX(1); }
.nav-links a.active::after{
  background: rgba(15,23,42,.65);
  transform: scaleX(1);
}

/* Optional: navbar entrance */
@keyframes navDrop{
  from { transform: translateY(-8px); opacity: 0; }
  to   { transform: translateY(0); opacity: 1; }
}
.navbar{ animation: navDrop .28s ease both; }

/* ====== HERO ====== */
.hero{ padding: 38px 0 10px; }

.hero .kicker{
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(15,23,42,.08);
  font-weight: 800;
  font-size: 13px;
}

.hero h1{
  font-size: clamp(28px, 4vw, 44px);
  margin: 14px 0 10px;
  line-height: 1.15;
}

.hero p{ max-width: 820px; font-size: 16px; }

/* ====== FULL-WIDTH MOVING TOP LINE (for Home) ====== */
.top-line{
  width: 100%;
  height: 4px;
  margin: 8px 0 12px;
  border-radius: 999px;

  background: linear-gradient(
    90deg,
    #ffffff 0%,
    #e53935 25%,
    #6a1b9a 50%,
    #fdd835 75%,
    #ffffff 100%
  );
  background-size: 300% 100%;
  animation: slideLine 2s linear infinite;

  box-shadow: 0 6px 18px rgba(0,0,0,.15);
}

@keyframes slideLine{
  0%   { background-position: 0% 50%; }
  100% { background-position: 100% 50%; }
}

/* ====== BUTTONS ====== */
.btns{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 16px;
}

.btn{
  display: inline-block;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.btn.primary{ background: #0f172a; color: #fff; }
.btn.ghost{ background: #fff; color: #0f172a; }

/* ====== CARDS ====== */
.cards{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.card{
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
}

.card h3{ margin: 0 0 8px; }

/* ====== GALLERY HEADER + TABS ====== */
.gallery-head{
  display:flex;
  gap:16px;
  align-items:flex-end;
  justify-content:space-between;
  flex-wrap:wrap;
}

.gallery-controls{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.tab{
  border: 0;
  padding: 10px 14px;
  border-radius: 999px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.08);
  font-weight: 800;
  transition: transform .18s ease, box-shadow .18s ease;
}

.tab.active{
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0,0,0,.12);
}

/* ====== GALLERY GRID ====== */
.grid{
  margin-top: 18px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
}

.tile{
  margin: 0;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.10);
}

.tile img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display: block;
  transition: transform .25s ease, filter .25s ease;
}

.tile figcaption{
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(0,0,0,.55);
  color: #fff;
  font-weight: 800;
  transform: translateY(8px);
  opacity: 0;
  transition: .25s ease;
}

.tile:hover img{ transform: scale(1.05); filter: contrast(1.05); }
.tile:hover figcaption{ transform: translateY(0); opacity: 1; }

/* ====== MODAL ====== */
.modal{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.78);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  z-index: 9999;
}

.modal.open{ display: flex; }

.modal-wrap{ text-align: center; }

.modal-img{
  max-width: min(980px, 92vw);
  max-height: 78vh;
  border-radius: 18px;
  box-shadow: 0 14px 40px rgba(0,0,0,.35);
}

.modal-caption{
  color: #fff;
  margin-top: 14px;
  text-align: center;
  opacity: .9;
  font-weight: 700;
}

.modal-close{
  position: fixed;
  top: 14px;
  right: 16px;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 0;
  font-size: 28px;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(0,0,0,.25);
}

/* ====== WHATSAPP FLOAT (MOBILE ONLY) ====== */
.whatsapp-float{
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25D366;

  display: none; /* hidden on desktop */
  align-items: center;
  justify-content: center;
  text-decoration: none;

  box-shadow: 0 10px 25px rgba(0,0,0,.25);
  z-index: 9999;
  transition: transform .2s ease, box-shadow .2s ease;
}

.whatsapp-float:hover{
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.whatsapp-icon{
  width: 28px;
  height: 28px;
  display: block;
}

@media (max-width: 768px){
  .whatsapp-float{ display: flex; }
}

/* ====== OPTIONAL: BIG PAGE LOGO (if used) ====== */
.page-logo{
  width: 180px;
  max-width: 60vw;
  height: auto;
  border-radius: 18px;
  display: block;
}
