/* ==========================================================================
   AB Events — Design tokens
   Palette: deep wine + marigold gold + blush + ivory, evoking Indian wedding
   décor (mandap drapes, marigold garlands/torans) rather than a generic
   template palette.
   Type: Cormorant Garamond (display/serif, invitation feel) + Jost (clean
   geometric sans for body/UI).
   Signature element: the marigold "garland/toran" scalloped divider used
   between every major section (see footer.php svg + .garland-divider).
   ========================================================================== */

:root{
  --wine:#6B2247;
  --wine-dark:#4A1732;
  --marigold:#E8A33D;
  --marigold-deep:#C97E1F;
  --blush:#F6E1E8;
  --sage:#8FA66B;
  --ivory:#FFFBF3;
  --charcoal:#2B2320;
  --muted:#7A6F68;
  --white:#FFFFFF;

  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:'Jost', 'Segoe UI', sans-serif;

  --radius:10px;
  --shadow-soft:0 10px 30px rgba(107,34,71,0.12);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  font-family:var(--font-body);
  color:var(--charcoal);
  background:var(--ivory);
  line-height:1.7;
}
h1,h2,h3,h4,.font-display{
  font-family:var(--font-display);
  font-weight:700;
  color:var(--wine);
  line-height:1.15;
}
h1{font-size:clamp(2.4rem,5vw,3.6rem);}
h2{font-size:clamp(1.9rem,3.6vw,2.6rem);}
h3{font-size:1.5rem;}
a{color:var(--wine); text-decoration:none;}
a:hover{color:var(--marigold-deep);}

.skip-link{
  position:absolute; left:-999px; top:auto;
  background:var(--wine); color:#fff; padding:10px 16px; z-index:2000;
}
.skip-link:focus{left:10px; top:10px;}

.eyebrow{
  font-family:var(--font-body); text-transform:uppercase; letter-spacing:.22em;
  font-size:.72rem; font-weight:600; color:var(--marigold-deep);
  display:inline-flex; align-items:center; gap:8px; margin-bottom:10px;
}
.eyebrow::before{content:'';width:26px;height:2px;background:var(--marigold);display:inline-block;}

.section{padding:88px 0;}
.section-alt{background:var(--blush);}
@media(max-width:768px){.section{padding:56px 0;}}

.btn-cta{
  background:var(--marigold); color:var(--wine-dark)!important; font-weight:600;
  border-radius:40px; padding:.65rem 1.5rem; border:none;
  box-shadow:0 6px 16px rgba(232,163,61,.35); transition:.2s transform ease,.2s box-shadow ease;
}
.btn-cta:hover{transform:translateY(-2px); box-shadow:0 10px 22px rgba(232,163,61,.45);}
.btn-outline-wine{
  border:1.5px solid var(--wine); color:var(--wine); border-radius:40px; font-weight:600;
  padding:.6rem 1.4rem; background:transparent;
}
.btn-outline-wine:hover{background:var(--wine); color:#fff;}

/* ==== Top bar & Navbar ==== */
.topbar{background:var(--wine-dark); color:#F3D9C8; font-size:.82rem; padding:7px 0;}
.topbar a{color:#F3D9C8;}
.topbar a:hover{color:var(--marigold);}

/* Logo images */
.navbar-logo{
  height:54px; width:54px; object-fit:contain; border-radius:8px;
  filter:drop-shadow(0 2px 6px rgba(107,34,71,.18));
}
.footer-brand-wrap{display:flex; align-items:center; gap:12px; text-decoration:none;}
.footer-logo{height:60px; width:60px; object-fit:contain; border-radius:8px; filter:brightness(1.1);}

.navbar-main{background:var(--ivory); padding:14px 0; border-bottom:1px solid rgba(107,34,71,.08);}
.navbar-brand{display:flex; align-items:center; gap:10px;}
.brand-mark{color:var(--marigold); font-size:1.6rem;}
.brand-text{font-family:var(--font-display); font-weight:700; font-size:1.5rem; color:var(--wine);}
.navbar-nav .nav-link{font-weight:500; color:var(--charcoal); margin:0 8px; position:relative;}
.navbar-nav .nav-link.active,
.navbar-nav .nav-link:hover{color:var(--wine);}
.navbar-nav .nav-link.active::after{
  content:''; position:absolute; left:0; right:0; bottom:-4px; height:2px; background:var(--marigold);
}

/* ==== Garland divider (signature element) ==== */
.garland-divider{width:100%; height:34px; background:var(--wine); overflow:hidden;}
.garland-divider svg{width:100%; height:100%; display:block;}

/* ==== Hero / Slider ==== */
.hero-slider{position:relative;}
.hero-slide{
  height:88vh; min-height:520px; background-size:cover; background-position:center;
  display:flex; align-items:center; position:relative;
}
.hero-slide::before{
  content:''; position:absolute; inset:0;
  background:linear-gradient(90deg, rgba(74,23,50,.82) 0%, rgba(74,23,50,.45) 55%, rgba(74,23,50,.15) 100%);
}
.hero-caption{position:relative; z-index:2; color:#fff; max-width:640px;}
.hero-caption .eyebrow{color:var(--marigold);}
.hero-caption .eyebrow::before{background:var(--marigold);}
.hero-caption h1{color:#fff;}
.hero-caption p{font-size:1.1rem; color:#F3E6EC; margin-bottom:28px;}
.hero-slider .carousel-indicators [data-bs-target]{
  background:var(--marigold); width:9px; height:9px; border-radius:50%;
}
.hero-slider .carousel-control-prev,
.hero-slider .carousel-control-next{width:6%; opacity:.85;}
.hero-scallop{
  position:absolute; left:0; right:0; bottom:-1px; height:36px; z-index:3;
  background:var(--ivory);
  -webkit-mask: radial-gradient(circle at 18px 0, transparent 18px, #000 19px) repeat-x;
  mask: radial-gradient(circle at 18px 0, transparent 18px, #000 19px) repeat-x;
  -webkit-mask-size:36px 36px; mask-size:36px 36px;
}

/* ==== About page — stat mini blocks ==== */
.stat-mini{
  background:var(--white); border-radius:var(--radius); padding:18px 14px; text-align:center;
  box-shadow:var(--shadow-soft); border-left:4px solid var(--marigold);
}
.stat-num{font-family:var(--font-display); font-size:1.8rem; font-weight:700; color:var(--wine);}
.stat-lbl{font-size:.72rem; text-transform:uppercase; letter-spacing:.12em; color:var(--muted); margin-top:2px;}

/* ==== Mission / Vision cards ==== */
.mv-card{
  background:var(--white); border-radius:var(--radius); padding:40px 36px;
  box-shadow:var(--shadow-soft); border-top:4px solid var(--marigold);
}
.mv-card-dark{
  background:var(--wine-dark); border-top-color:var(--marigold);
}
.mv-icon{
  width:64px; height:64px; border-radius:50%; background:var(--blush); color:var(--wine);
  display:flex; align-items:center; justify-content:center; font-size:1.8rem; margin-bottom:20px;
}
.mv-icon-gold{background:rgba(232,163,61,.18); color:var(--marigold);}
.mv-card h3{font-size:1.55rem; margin-bottom:14px;}

/* ==== Why choose us cards ==== */
.why-card{
  background:var(--white); border-radius:var(--radius); padding:32px 26px; height:100%;
  box-shadow:var(--shadow-soft); transition:.25s transform ease, .25s box-shadow ease;
  border-bottom:3px solid transparent;
}
.why-card:hover{transform:translateY(-5px); box-shadow:0 18px 34px rgba(107,34,71,.16); border-bottom-color:var(--marigold);}
.why-icon{
  width:52px; height:52px; border-radius:50%; background:var(--blush); color:var(--wine);
  display:flex; align-items:center; justify-content:center; font-size:1.4rem; margin-bottom:16px;
}
.why-card h4{font-size:1.1rem; font-weight:600; color:var(--wine); margin-bottom:10px;}
.why-card p{color:var(--muted); font-size:.92rem; line-height:1.65;}

/* ==== CTA logo ==== */
.cta-logo{height:70px; width:auto; object-fit:contain; filter:brightness(1.15);}

/* ==== About ==== */
.about-photo-frame{
  position:relative; border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft);
}
.about-stat{
  background:var(--white); border-radius:var(--radius); box-shadow:var(--shadow-soft);
  padding:18px 22px; position:absolute; bottom:-24px; right:-18px; text-align:center;
}
.about-stat .num{font-family:var(--font-display); font-weight:700; font-size:2rem; color:var(--wine);}
.about-stat .label{font-size:.72rem; text-transform:uppercase; letter-spacing:.1em; color:var(--muted);}
.about-list li{margin-bottom:10px; display:flex; gap:10px; align-items:flex-start;}
.about-list i{color:var(--marigold-deep); margin-top:4px;}

/* ==== Service cards ==== */
.service-card{
  background:var(--white); border-radius:var(--radius); padding:34px 28px; height:100%;
  box-shadow:var(--shadow-soft); border:1px solid rgba(107,34,71,.06);
  transition:.25s transform ease, .25s box-shadow ease; position:relative; overflow:hidden;
}
.service-card:hover{transform:translateY(-6px); box-shadow:0 18px 34px rgba(107,34,71,.18);}
.service-icon{
  width:60px; height:60px; border-radius:50%; background:var(--blush); color:var(--wine);
  display:flex; align-items:center; justify-content:center; font-size:1.6rem; margin-bottom:18px;
}
.service-card h3{margin-bottom:10px;}
.service-card p{color:var(--muted); font-size:.95rem;}
.service-card .service-link{font-weight:600; font-size:.85rem; letter-spacing:.03em;}

/* ==== Gallery ==== */
.filter-pills{display:flex; flex-wrap:wrap; gap:10px; justify-content:center; margin-bottom:36px;}
.filter-pill{
  border:1.5px solid var(--wine); color:var(--wine); background:transparent;
  border-radius:30px; padding:.4rem 1.1rem; font-size:.85rem; font-weight:600; cursor:pointer;
  transition:.2s all ease;
}
.filter-pill.active,.filter-pill:hover{background:var(--wine); color:#fff;}
.gallery-item{
  border-radius:var(--radius); overflow:hidden; position:relative; box-shadow:var(--shadow-soft);
  margin-bottom:24px; background:#000;
}
.gallery-item img{width:100%; height:280px; object-fit:cover; display:block; transition:.4s transform ease;}
.gallery-item:hover img{transform:scale(1.07);}
.gallery-caption{
  position:absolute; left:0; right:0; bottom:0; padding:16px;
  background:linear-gradient(0deg, rgba(74,23,50,.92), transparent);
  color:#fff; transform:translateY(8px); opacity:0; transition:.25s ease;
}
.gallery-item:hover .gallery-caption{opacity:1; transform:translateY(0);}
.gallery-caption small{color:var(--marigold); text-transform:uppercase; letter-spacing:.08em;}

/* ==== Contact / Enquiry forms ==== */
.form-panel{
  background:var(--white); border-radius:var(--radius); padding:38px; box-shadow:var(--shadow-soft);
}
.form-panel label{font-weight:600; font-size:.85rem; color:var(--wine-dark); margin-bottom:6px;}
.form-control,.form-select{
  border-radius:8px; border:1.5px solid #E7DCD3; padding:.65rem .9rem; font-family:var(--font-body);
}
.form-control:focus,.form-select:focus{
  border-color:var(--marigold); box-shadow:0 0 0 .2rem rgba(232,163,61,.18);
}
.contact-info-card{
  background:var(--wine); color:#F3E6EC; border-radius:var(--radius); padding:38px; height:100%;
}
.contact-info-card h3{color:#fff;}
.contact-info-card .item{display:flex; gap:14px; margin-bottom:22px;}
.contact-info-card .item i{font-size:1.2rem; color:var(--marigold); margin-top:3px;}
.map-embed{border-radius:var(--radius); overflow:hidden; box-shadow:var(--shadow-soft);}

/* ==== CTA band ==== */
.cta-band{
  background:linear-gradient(120deg, var(--wine) 0%, var(--wine-dark) 100%);
  color:#fff; border-radius:var(--radius); padding:50px; position:relative; overflow:hidden;
}
.cta-band h2{color:#fff;}
.cta-band p{color:#F3E6EC;}

/* ==== Footer ==== */
.site-footer{background:var(--wine-dark); color:#E6D2DC; padding:60px 0 0;}
.footer-brand{font-size:1.4rem; color:#fff!important;}
.footer-about{color:#D9BFCB; font-size:.9rem;}
.footer-heading{color:#fff; font-size:1rem; text-transform:uppercase; letter-spacing:.08em; margin-bottom:16px;}
.footer-links{list-style:none; padding:0; margin:0;}
.footer-links li{margin-bottom:10px;}
.footer-links a{color:#D9BFCB; font-size:.9rem;}
.footer-links a:hover{color:var(--marigold);}
.footer-contact{list-style:none; padding:0; margin:0; font-size:.88rem; color:#D9BFCB;}
.footer-contact li{display:flex; gap:10px; margin-bottom:14px; align-items:flex-start;}
.footer-contact a{color:#D9BFCB;}
.social-links{display:flex; gap:12px; margin-top:20px;}
.social-links a{
  width:38px; height:38px; border-radius:50%; border:1px solid rgba(255,255,255,.25);
  display:flex; align-items:center; justify-content:center; color:#fff;
}
.social-links a:hover{background:var(--marigold); border-color:var(--marigold); color:var(--wine-dark);}
.footer-bottom{border-top:1px solid rgba(255,255,255,.12); margin-top:36px; padding:18px 0; text-align:center; font-size:.8rem; color:#C9A9B7;}

.whatsapp-float{
  position:fixed; bottom:24px; right:24px; width:56px; height:56px; border-radius:50%;
  background:#25D366; color:#fff; display:flex; align-items:center; justify-content:center;
  font-size:1.6rem; box-shadow:0 8px 20px rgba(0,0,0,.25); z-index:1500;
}

/* ==== Breadcrumb (SEO internal linking) ==== */
.breadcrumb-bar{background:var(--blush); padding:14px 0;}
.breadcrumb-bar .breadcrumb{margin:0; font-size:.85rem;}

/* ==== Page header banner (inner pages) ==== */
.page-banner{
  background:linear-gradient(120deg, var(--wine-dark), var(--wine));
  color:#fff; padding:70px 0 46px; text-align:center;
}
.page-banner h1{color:#fff; margin-bottom:8px;}
.page-banner p{color:#E9D3DE; max-width:640px; margin:0 auto;}

/* ==== Scroll reveal ==== */
.reveal{opacity:0; transform:translateY(24px); transition:opacity .6s ease, transform .6s ease;}
.reveal-in{opacity:1; transform:translateY(0);}

/* ==== Utility ==== */
.text-marigold{color:var(--marigold-deep);}
.bg-blush{background:var(--blush);}
.rounded-xl{border-radius:var(--radius);}
.alert-brand{border-radius:var(--radius); border:none;}
