/* ═══════════════════════════════════════════════════════════
   style.css — Céleste Events · Unified Stylesheet
   Includes: shared, index, services, gallery, catering, booking
═══════════════════════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=DM+Sans:wght@300;400;500&display=swap');

/* ══════════════════════════════════════════
   CÉLESTE EVENTS — Shared Stylesheet
══════════════════════════════════════════ */

:root {
  --cream: #FAF7F2;
  --champagne: #E8D9C0;
  --gold: #C4973A;
  --gold-light: #D4AF6A;
  --dark: #1A1409;
  --charcoal: #2E2416;
  --warm-gray: #6B5E4E;
  --blush: #E8C4B0;
  --transition: all 0.45s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
}
h1, h2, h3, h4, h5 { font-family: 'Cormorant Garamond', serif; }

/* ─── NAVBAR ───────────────────────────── */
.navbar-custom {
  background: rgba(26,20,9,0.95);
  backdrop-filter: blur(12px);
  padding: 16px 0;
  position: fixed;
  width: 100%; top: 0; z-index: 1000;
  box-shadow: 0 2px 40px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.navbar-custom.hero-nav { background: transparent; padding: 28px 0; box-shadow: none; }
.navbar-custom.hero-nav.scrolled { background: rgba(26,20,9,0.95); padding: 16px 0; box-shadow: 0 2px 40px rgba(0,0,0,0.25); }
.navbar-brand-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem; font-weight: 300;
  color: var(--cream) !important;
  letter-spacing: 3px; text-transform: uppercase; text-decoration: none;
}
.navbar-brand-text span { color: var(--gold-light); }
.navbar-custom .nav-link {
  color: rgba(250,247,242,0.85) !important;
  font-size: 0.78rem; letter-spacing: 2.5px;
  text-transform: uppercase; font-weight: 400;
  padding: 0 16px !important;
  transition: var(--transition);
  position: relative;
}
.navbar-custom .nav-link::after {
  content: ''; position: absolute; bottom: -4px; left: 16px; right: 16px;
  height: 1px; background: var(--gold-light);
  transform: scaleX(0); transition: var(--transition);
}
.navbar-custom .nav-link:hover { color: var(--gold-light) !important; }
.navbar-custom .nav-link:hover::after,
.navbar-custom .nav-link.active-page::after { transform: scaleX(1); }
.navbar-custom .nav-link.active-page { color: var(--gold-light) !important; }
.btn-nav-book {
  background: var(--gold); color: var(--dark) !important;
  border: none; border-radius: 0;
  font-size: 0.72rem; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 10px 26px !important;
  font-weight: 500; transition: var(--transition);
}
.btn-nav-book:hover { background: var(--gold-light); }
.btn-nav-book::after { display: none !important; }

/* ─── PAGE HERO BANNER ──────────────────── */
.page-hero {
  min-height: 52vh;
  background: var(--dark);
  position: relative;
  display: flex; align-items: flex-end;
  overflow: hidden; padding-bottom: 70px;
  padding-top: 120px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0.3; transform: scale(1.04);
  animation: subtleZoom 18s ease-in-out infinite alternate;
}
@keyframes subtleZoom {
  from { transform: scale(1.04); }
  to   { transform: scale(1.1); }
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,9,0.5) 0%, rgba(26,20,9,0.85) 100%);
}
.page-hero-content { position: relative; z-index: 2; }
.page-eyebrow {
  font-size: 0.7rem; letter-spacing: 5px;
  text-transform: uppercase; color: var(--gold-light);
  margin-bottom: 14px;
  animation: fadeUp 0.8s 0.2s both;
}
.page-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 300; line-height: 1.1;
  color: var(--cream); margin-bottom: 16px;
  animation: fadeUp 0.8s 0.4s both;
}
.page-title em { font-style: italic; color: var(--gold-light); }
.page-hero-sub {
  font-size: 1rem; color: rgba(250,247,242,0.65);
  font-weight: 300; max-width: 520px; line-height: 1.8;
  animation: fadeUp 0.8s 0.6s both;
}
.breadcrumb-custom {
  display: flex; gap: 10px; align-items: center;
  margin-bottom: 18px;
  animation: fadeUp 0.8s 0.1s both;
}
.breadcrumb-custom a {
  font-size: 0.7rem; letter-spacing: 2px;
  text-transform: uppercase; color: rgba(250,247,242,0.4);
  text-decoration: none; transition: var(--transition);
}
.breadcrumb-custom a:hover { color: var(--gold-light); }
.breadcrumb-custom span { color: rgba(250,247,242,0.2); font-size: 0.7rem; }
.breadcrumb-custom .current { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }

/* ─── SECTION COMMONS ───────────────────── */
.section-pad { padding: 110px 0; }
.section-label {
  font-size: 0.68rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px;
}
.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.8vw, 3.4rem);
  font-weight: 300; line-height: 1.15;
  color: var(--dark); margin-bottom: 18px;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-body {
  font-size: 1rem; color: var(--warm-gray);
  line-height: 1.85; font-weight: 300;
}
.divider-gold { width: 60px; height: 1px; background: var(--gold); margin: 20px 0; }
.divider-gold.mx-auto { margin-left: auto; margin-right: auto; }

/* ─── BUTTONS ───────────────────────────── */
.btn-gold {
  background: var(--gold); color: var(--dark);
  border: none; border-radius: 0;
  font-size: 0.78rem; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 16px 40px;
  font-weight: 500; transition: var(--transition);
  text-decoration: none; display: inline-block;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-gold:hover { background: var(--gold-light); color: var(--dark); transform: translateY(-2px); box-shadow: 0 8px 30px rgba(196,151,58,0.3); }
.btn-dark {
  background: var(--dark); color: var(--cream);
  border: none; border-radius: 0;
  font-size: 0.78rem; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 16px 40px;
  font-weight: 400; transition: var(--transition);
  text-decoration: none; display: inline-block;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-dark:hover { background: var(--gold); color: var(--dark); transform: translateY(-2px); }
.btn-outline-gold {
  background: transparent; color: var(--gold);
  border: 1px solid var(--gold); border-radius: 0;
  font-size: 0.78rem; letter-spacing: 2.5px;
  text-transform: uppercase; padding: 14px 36px;
  font-weight: 400; transition: var(--transition);
  text-decoration: none; display: inline-block;
  cursor: pointer; font-family: 'DM Sans', sans-serif;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--dark); }

/* ─── REVEAL ANIMATION ──────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ─── FOOTER ────────────────────────────── */
footer { background: var(--dark); padding: 80px 0 40px; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--cream); letter-spacing: 4px; text-transform: uppercase;
}
.footer-brand span { color: var(--gold-light); }
.footer-tagline { font-size: 0.82rem; color: rgba(250,247,242,0.4); font-style: italic; margin-top: 6px; }
.footer-heading { font-size: 0.68rem; letter-spacing: 3.5px; text-transform: uppercase; color: var(--gold); margin-bottom: 20px; font-weight: 500; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 0.88rem; color: rgba(250,247,242,0.5); text-decoration: none; font-weight: 300; transition: var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 6px; }
.footer-divider { border-color: rgba(250,247,242,0.07); margin: 50px 0 30px; }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 16px; }
.footer-copy { font-size: 0.78rem; color: rgba(250,247,242,0.3); font-weight: 300; }
.social-links { display: flex; gap: 14px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  border: 1px solid rgba(250,247,242,0.12);
  display: flex; align-items: center; justify-content: center;
  color: rgba(250,247,242,0.45); font-size: 0.85rem;
  text-decoration: none; transition: var(--transition);
}
.social-link:hover { border-color: var(--gold); color: var(--gold-light); }

/* ─── TOAST ─────────────────────────────── */
.booking-toast {
  position: fixed; bottom: 30px; right: 30px;
  background: var(--dark); color: var(--cream);
  padding: 18px 28px; border-left: 3px solid var(--gold);
  z-index: 9999; font-size: 0.9rem;
  transform: translateX(120%);
  transition: transform 0.45s cubic-bezier(0.25,0.46,0.45,0.94);
  max-width: 320px; line-height: 1.6;
}
.booking-toast.show { transform: translateX(0); }
.booking-toast strong { color: var(--gold-light); }

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 767px) {
  .section-pad { padding: 70px 0; }
  .page-hero { min-height: 45vh; padding-bottom: 50px; }
}
/* ═══════════════════════════════════════════
   index.css — Home Page Styles
   Depends on: shared.css
═══════════════════════════════════════════ */

/* ─── HERO ───────────────────────────────── */
#home {
  min-height: 100vh;
  background: var(--dark);
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://images.unsplash.com/photo-1519225421980-715cb0215aed?w=1800&q=80') center/cover no-repeat;
  opacity: 0.35;
  animation: subtleZoom 18s ease-in-out infinite alternate;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,20,9,0.88) 0%, rgba(26,20,9,0.4) 60%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 80px;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
  animation: fadeUp 0.9s 0.3s both;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 28px;
  animation: fadeUp 0.9s 0.55s both;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(250,247,242,0.7);
  font-weight: 300;
  max-width: 480px;
  line-height: 1.85;
  margin-bottom: 44px;
  animation: fadeUp 0.9s 0.8s both;
}
.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  animation: fadeUp 0.9s 1.05s both;
}
.btn-outline-cream {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(250,247,242,0.35);
  border-radius: 0;
  font-size: 0.78rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  padding: 16px 40px;
  font-weight: 400;
  transition: var(--transition);
  text-decoration: none;
}
.btn-outline-cream:hover {
  border-color: var(--gold-light);
  color: var(--gold-light);
}
.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 60px;
  display: flex;
  gap: 40px;
  z-index: 2;
  animation: fadeUp 0.9s 1.3s both;
}
.stat-item { text-align: center; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold-light);
  line-height: 1;
}
.stat-label {
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250,247,242,0.5);
  margin-top: 4px;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,247,242,0.4);
  font-size: 0.65rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  animation: fadeUp 0.9s 1.5s both;
}
.scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, rgba(250,247,242,0.4), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; }
  50% { opacity: 1; }
}

/* ─── ABOUT STRIP ───────────────────────── */
.about-strip {
  background: var(--dark);
  padding: 70px 0;
}
.about-strip .section-title { color: var(--cream); }
.about-strip .section-label { color: var(--gold-light); }
.about-strip .section-body  { color: rgba(250,247,242,0.55); }
.about-strip .divider-gold  { background: var(--gold-light); }
.about-feature {
  padding: 36px 28px;
  border: 1px solid rgba(196,151,58,0.15);
  transition: var(--transition);
}
.about-feature:hover {
  border-color: var(--gold);
  background: rgba(196,151,58,0.05);
  transform: translateY(-4px);
}
.about-feature i {
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 16px;
  display: block;
}
.about-feature h5 {
  font-size: 1.1rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 10px;
}
.about-feature p {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.5);
  font-weight: 300;
  line-height: 1.75;
}

/* ─── SERVICES PREVIEW ──────────────────── */
.service-card {
  background: #fff;
  border: 1px solid rgba(196,151,58,0.12);
  padding: 44px 36px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: var(--transition);
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(196,151,58,0.1);
}
.service-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, var(--champagne), var(--cream));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 24px;
  font-size: 1.3rem;
  color: var(--gold);
}
.service-card h4 {
  font-size: 1.4rem;
  font-weight: 400;
  margin-bottom: 12px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.9rem;
  color: var(--warm-gray);
  line-height: 1.8;
  font-weight: 300;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 20px;
  transition: var(--transition);
  font-weight: 500;
}
.service-link:hover { gap: 14px; }

/* ─── CTA BANNER ────────────────────────── */
.cta-banner {
  background: var(--gold);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: 'VIVAAHMANTRA';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 14rem; font-weight: 300;
  color: rgba(26,20,9,0.07);
  line-height: 1; pointer-events: none; white-space: nowrap;
}
.cta-banner h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300;
  color: var(--dark);
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(26,20,9,0.65);
  font-weight: 300;
  max-width: 500px;
  line-height: 1.75;
}

/* ─── TESTIMONIAL STRIP ─────────────────── */
.testi-strip { background: var(--charcoal); padding: 80px 0; }
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-style: italic;
  color: var(--cream); line-height: 1.75; font-weight: 300;
}
.testi-name {
  font-size: 0.78rem; letter-spacing: 2px;
  text-transform: uppercase; color: var(--gold); margin-top: 20px;
}
.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 6rem; color: var(--gold);
  line-height: 0.8; opacity: 0.4;
}

/* ─── RESPONSIVE ────────────────────────── */
@media (max-width: 991px) { .hero-stats { display: none; } }
/* ═══════════════════════════════════════════
   services.css — Services Page Styles
   Depends on: shared.css
═══════════════════════════════════════════ */

/* ─── SERVICE CARDS ─────────────────────── */
.service-card {
  background: #fff;
  border: 1px solid rgba(196,151,58,0.12);
  padding: 50px 40px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  height: 100%;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--gold);
  transition: var(--transition);
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(196,151,58,0.1);
}
.service-icon {
  width: 58px; height: 58px;
  background: linear-gradient(135deg, var(--champagne), var(--cream));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 26px;
  font-size: 1.4rem;
  color: var(--gold);
}
.service-card h4 {
  font-size: 1.5rem;
  font-weight: 400;
  margin-bottom: 14px;
  color: var(--dark);
}
.service-card p {
  font-size: 0.92rem;
  color: var(--warm-gray);
  line-height: 1.82;
  font-weight: 300;
}
.service-tag {
  display: inline-block;
  font-size: 0.62rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  background: rgba(196,151,58,0.1);
  color: var(--gold);
  padding: 4px 12px;
  margin-bottom: 14px;
}
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  margin-top: 22px;
  transition: var(--transition);
  font-weight: 500;
}
.service-link:hover { gap: 14px; }
.service-list {
  list-style: none;
  padding: 0;
  margin-top: 16px;
}
.service-list li {
  font-size: 0.88rem;
  color: var(--warm-gray);
  padding: 6px 0;
  border-bottom: 1px solid rgba(196,151,58,0.08);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 300;
}
.service-list li i { color: var(--gold); font-size: 0.7rem; }

/* ─── PROCESS SECTION ───────────────────── */
.process-section { background: var(--dark); }
.process-section .section-title { color: var(--cream); }
.process-section .section-label { color: var(--gold-light); }
.process-section .divider-gold  { background: var(--gold-light); margin: 20px auto; }

.process-step { position: relative; padding: 40px 30px; }
.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem; font-weight: 300;
  color: rgba(196,151,58,0.12);
  line-height: 1;
  position: absolute; top: 20px; right: 20px;
}
.step-icon {
  width: 50px; height: 50px;
  background: rgba(196,151,58,0.12);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light);
  font-size: 1.2rem;
  margin-bottom: 20px;
}
.process-step h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  color: var(--cream);
  font-weight: 400;
  margin-bottom: 10px;
}
.process-step p {
  font-size: 0.88rem;
  color: rgba(250,247,242,0.5);
  line-height: 1.8;
  font-weight: 300;
}

/* ─── WHY US ─────────────────────────────── */
.why-card {
  text-align: center;
  padding: 40px 28px;
  transition: var(--transition);
}
.why-card:hover {
  background: #fff;
  box-shadow: 0 12px 40px rgba(196,151,58,0.08);
}
.why-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--champagne), var(--cream));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--gold);
}
.why-card h5 { font-size: 1.2rem; font-weight: 400; margin-bottom: 12px; }
.why-card p  { font-size: 0.88rem; color: var(--warm-gray); line-height: 1.8; font-weight: 300; }

/* ─── TESTIMONIALS ──────────────────────── */
.testi-card {
  background: #fff;
  padding: 40px 36px;
  border-left: 3px solid var(--gold);
  transition: var(--transition);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 50px rgba(196,151,58,0.1);
}
.stars { color: var(--gold); margin-bottom: 16px; letter-spacing: 3px; }
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-style: italic;
  color: var(--dark); line-height: 1.75;
  margin-bottom: 22px; font-weight: 300;
}
.testi-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%; object-fit: cover;
  border: 2px solid var(--champagne);
}
.author-name  { font-weight: 500; font-size: 0.9rem; color: var(--dark); }
.author-event { font-size: 0.75rem; color: var(--warm-gray); font-weight: 300; }
/* ═══════════════════════════════════════════
   gallery.css — Gallery Page Styles
   Depends on: shared.css
═══════════════════════════════════════════ */

/* ─── PAGE BACKGROUND ────────────────────── */
body { background: var(--charcoal); }

/* ─── FILTER BAR ─────────────────────────── */
.filter-bar {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 50px;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(250,247,242,0.18);
  color: rgba(250,247,242,0.55);
  padding: 9px 24px;
  font-size: 0.7rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}

/* ─── MASONRY GRID ──────────────────────── */
.masonry-grid {
  columns: 3;
  column-gap: 16px;
}
@media (max-width: 991px) { .masonry-grid { columns: 2; } }
@media (max-width: 576px)  { .masonry-grid { columns: 1; } }

.gallery-item {
  break-inside: avoid;
  margin-bottom: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25,0.46,0.45,0.94);
}
.gallery-item:hover img { transform: scale(1.06); }

.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(26,20,9,0.88) 100%);
  opacity: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
  transition: var(--transition);
}
.gallery-item:hover .gallery-overlay { opacity: 1; }

.overlay-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--cream);
  font-weight: 300;
  margin-bottom: 4px;
}
.overlay-cat {
  font-size: 0.65rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold-light);
}
.overlay-icon {
  position: absolute;
  top: 20px; right: 20px;
  width: 38px; height: 38px;
  background: rgba(250,247,242,0.15);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--cream);
  font-size: 0.9rem;
  backdrop-filter: blur(4px);
}

/* ─── STATS BAR ──────────────────────────── */
.stats-bar { background: var(--gold); padding: 50px 0; }
.stat-box  { text-align: center; }
.stat-num  {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--dark); line-height: 1;
}
.stat-lbl {
  font-size: 0.68rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(26,20,9,0.65);
  margin-top: 6px;
}

/* ─── DARK SECTION OVERRIDES ─────────────── */
#gallery-section .section-title { color: var(--cream); }
#gallery-section .section-label { color: var(--gold-light); }
#gallery-section .section-body  { color: rgba(250,247,242,0.55); }
#gallery-section .divider-gold  { background: var(--gold-light); }

/* ─── LIGHTBOX ───────────────────────────── */
.lightbox {
  position: fixed; inset: 0;
  background: rgba(0,0,0,0.95);
  z-index: 9999;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.lightbox.active { opacity: 1; pointer-events: all; }
.lightbox-inner {
  position: relative;
  max-width: 900px; width: 90%;
  max-height: 90vh;
  display: flex; flex-direction: column;
}
.lightbox-img  { width: 100%; max-height: 75vh; object-fit: contain; }
.lightbox-info { padding: 20px 0; }
.lightbox-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem; color: var(--cream);
  font-weight: 300; margin-bottom: 6px;
}
.lightbox-desc {
  font-size: 0.9rem;
  color: rgba(250,247,242,0.55);
  font-weight: 300; line-height: 1.7;
}
.lightbox-close {
  position: absolute; top: -50px; right: 0;
  background: none; border: none;
  color: rgba(250,247,242,0.6);
  font-size: 1.5rem; cursor: pointer;
  transition: var(--transition);
}
.lightbox-close:hover { color: var(--gold-light); }

.lightbox-nav { display: flex; gap: 12px; margin-top: 16px; }
.lnav-btn {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: var(--cream);
  padding: 10px 24px;
  font-size: 0.72rem; letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer; transition: var(--transition);
  font-family: 'DM Sans', sans-serif;
}
.lnav-btn:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--dark);
}
.lnav-count {
  font-size: 0.8rem;
  color: rgba(250,247,242,0.4);
  align-self: center;
  margin-left: auto;
}
/* ═══════════════════════════════════════════
   catering.css — Catering Page Styles
   Depends on: shared.css
═══════════════════════════════════════════ */

/* ─── MENU TABS ─────────────────────────── */
.menu-tabs {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(196,151,58,0.18);
  margin-bottom: 0;
  flex-wrap: wrap;
}
.menu-tab {
  background: none; border: none;
  padding: 16px 28px;
  font-size: 0.72rem; letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--warm-gray);
  cursor: pointer;
  font-family: 'DM Sans', sans-serif;
  position: relative;
  transition: var(--transition);
  font-weight: 400;
}
.menu-tab::after {
  content: '';
  position: absolute; bottom: -1px; left: 0; right: 0;
  height: 2px; background: var(--gold);
  transform: scaleX(0); transition: var(--transition);
}
.menu-tab.active       { color: var(--dark); }
.menu-tab.active::after { transform: scaleX(1); }
.menu-tab:hover        { color: var(--dark); }

.menu-pane        { display: none; padding: 40px 0; }
.menu-pane.active { display: block; }

/* ─── MENU ITEMS ────────────────────────── */
.menu-category-header {
  display: flex; align-items: center; gap: 16px;
  margin-bottom: 24px; margin-top: 36px;
}
.menu-category-header:first-child { margin-top: 0; }
.menu-cat-line  { flex: 1; height: 1px; background: rgba(196,151,58,0.15); }
.menu-cat-title {
  font-size: 0.68rem; letter-spacing: 4px;
  text-transform: uppercase; color: var(--gold); white-space: nowrap;
}
.menu-item-row {
  display: flex; justify-content: space-between; align-items: flex-start;
  padding: 16px 0;
  border-bottom: 1px dashed rgba(196,151,58,0.12);
}
.menu-item-row:last-child { border-bottom: none; }
.menu-item-left { flex: 1; }
.menu-item-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; font-weight: 400;
  color: var(--dark); margin-bottom: 4px;
}
.menu-item-desc {
  font-size: 0.85rem; color: var(--warm-gray);
  font-weight: 300; line-height: 1.6;
}
.menu-item-tags { margin-top: 6px; display: flex; gap: 6px; flex-wrap: wrap; }
.tag {
  font-size: 0.58rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 3px 10px;
  background: rgba(196,151,58,0.08);
  color: var(--gold);
}
.tag.veg { background: rgba(138,158,126,0.1); color: #6a8a5c; }
.menu-item-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--gold);
  font-style: italic; white-space: nowrap;
  margin-left: 24px; padding-top: 3px;
}

/* ─── CATERING FEATURES ─────────────────── */
.catering-feature {
  display: flex; align-items: flex-start; gap: 20px;
  padding: 28px;
  border: 1px solid rgba(196,151,58,0.1);
  transition: var(--transition);
}
.catering-feature:hover {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 8px 30px rgba(196,151,58,0.08);
}
.cf-icon {
  width: 50px; height: 50px; min-width: 50px;
  background: linear-gradient(135deg, var(--champagne), var(--cream));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold); font-size: 1.2rem;
}
.cf-text h5 {
  font-size: 1.05rem; font-weight: 400;
  margin-bottom: 8px; color: var(--dark);
}
.cf-text p {
  font-size: 0.88rem; color: var(--warm-gray);
  line-height: 1.75; font-weight: 300; margin: 0;
}

/* ─── CHEF SECTION ──────────────────────── */
.chef-section { background: var(--dark); }
.chef-section .section-title { color: var(--cream); }
.chef-section .section-label { color: var(--gold-light); }
.chef-section .section-body  { color: rgba(250,247,242,0.55); }
.chef-section .divider-gold  { background: var(--gold-light); margin: 20px auto; }

.chef-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,58,0.15);
  overflow: hidden; transition: var(--transition);
}
.chef-card:hover { border-color: var(--gold); transform: translateY(-4px); }
.chef-img   { width: 100%; height: 280px; object-fit: cover; object-position: top; }
.chef-info  { padding: 28px 28px 32px; }
.chef-name  {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem; font-weight: 300;
  color: var(--cream); margin-bottom: 4px;
}
.chef-role  {
  font-size: 0.68rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.chef-bio   {
  font-size: 0.88rem; color: rgba(250,247,242,0.5);
  line-height: 1.75; font-weight: 300;
}

/* ─── PACKAGES TEASER ───────────────────── */
.pkg-teaser {
  background: var(--gold); padding: 80px 0;
  position: relative; overflow: hidden;
}
.pkg-teaser::before {
  content: 'VIVAAHMANTRA';
  position: absolute; right: -40px; top: 50%; transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem; font-weight: 300;
  color: rgba(26,20,9,0.07);
  pointer-events: none; white-space: nowrap;
}
.pkg-teaser h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 300; color: var(--dark);
}
.pkg-teaser p {
  font-size: 1rem; color: rgba(26,20,9,0.65);
  font-weight: 300; max-width: 520px; line-height: 1.75;
}
/* ═══════════════════════════════════════════
   booking.css — Packages & Booking Page Styles
   Depends on: shared.css
═══════════════════════════════════════════ */

/* ─── PACKAGES SECTION ──────────────────── */
#packages { background: var(--dark); }
#packages .section-title { color: var(--cream); }
#packages .section-label { color: var(--gold-light); }
#packages .section-body  { color: rgba(250,247,242,0.55); }
#packages .divider-gold  { background: var(--gold-light); }

.pkg-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(196,151,58,0.2);
  padding: 50px 40px;
  transition: var(--transition);
  position: relative; overflow: hidden; height: 100%;
}
.pkg-card.featured {
  background: var(--gold);
  border-color: var(--gold);
}
.pkg-card:hover:not(.featured) {
  border-color: var(--gold);
  transform: translateY(-8px);
  background: rgba(255,255,255,0.07);
}
.pkg-tag {
  font-size: 0.65rem; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 12px;
}
.pkg-card.featured .pkg-tag { color: var(--dark); opacity: 0.7; }

.pkg-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem; font-weight: 300;
  color: var(--cream); margin-bottom: 6px;
}
.pkg-card.featured .pkg-name { color: var(--dark); }

.pkg-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  color: var(--gold-light); line-height: 1; margin-bottom: 4px;
}
.pkg-card.featured .pkg-price { color: var(--dark); }
.pkg-price sup { font-size: 1.2rem; vertical-align: super; }

.pkg-per {
  font-size: 0.72rem; letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250,247,242,0.4); margin-bottom: 32px;
}
.pkg-card.featured .pkg-per { color: rgba(26,20,9,0.55); }

.pkg-feature-list { list-style: none; padding: 0; margin-bottom: 36px; }
.pkg-feature-list li {
  display: flex; align-items: center; gap: 12px;
  padding: 10px 0; font-size: 0.9rem;
  color: rgba(250,247,242,0.7);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-weight: 300;
}
.pkg-card.featured .pkg-feature-list li {
  color: rgba(26,20,9,0.8);
  border-color: rgba(26,20,9,0.1);
}
.pkg-feature-list li i { color: var(--gold-light); font-size: 0.75rem; }
.pkg-card.featured .pkg-feature-list li i { color: var(--dark); }

.btn-pkg {
  display: block; text-align: center;
  padding: 14px; font-size: 0.72rem;
  letter-spacing: 2.5px; text-transform: uppercase;
  text-decoration: none; transition: var(--transition);
  font-weight: 500; font-family: 'DM Sans', sans-serif;
  cursor: pointer; border: none;
}
.btn-pkg-outline {
  border: 1px solid rgba(196,151,58,0.4) !important;
  background: transparent; color: var(--gold-light);
}
.btn-pkg-outline:hover {
  border-color: var(--gold-light) !important;
  background: rgba(196,151,58,0.08);
  color: var(--gold-light);
}
.btn-pkg-dark { background: var(--dark); color: var(--cream); border: none !important; }
.btn-pkg-dark:hover { background: var(--charcoal); color: var(--cream); }

.popular-badge {
  position: absolute; top: 0; right: 0;
  background: var(--dark); color: var(--gold);
  font-size: 0.6rem; letter-spacing: 2px;
  text-transform: uppercase; padding: 8px 18px;
}

/* ─── ADD-ONS ─────────────────────────────── */
#addons { background: linear-gradient(160deg, #FAF7F2 60%, #F0E8D8 100%); }
.addon-item {
  display: flex; align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(196,151,58,0.12);
}
.addon-item:last-child { border-bottom: none; }
.addon-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; color: var(--dark); font-weight: 400;
}
.addon-desc { font-size: 0.82rem; color: var(--warm-gray); font-weight: 300; margin-top: 2px; }
.addon-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--gold);
  font-style: italic; white-space: nowrap; margin-left: 20px;
}

/* ─── BOOKING FORM ───────────────────────── */
.booking-left {
  background: var(--dark);
  padding: 70px 55px;
}
.booking-right {
  background: #fff;
  padding: 70px 55px;
  box-shadow: 0 30px 80px rgba(26,20,9,0.1);
}
.booking-info-item {
  display: flex; align-items: flex-start; gap: 18px;
  padding: 20px 0;
  border-bottom: 1px solid rgba(250,247,242,0.07);
}
.booking-info-item:last-child { border-bottom: none; }
.booking-info-icon {
  width: 44px; height: 44px; min-width: 44px;
  background: rgba(196,151,58,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-size: 1rem;
}
.booking-info-text h6 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem; color: var(--cream);
  font-weight: 400; margin-bottom: 4px;
}
.booking-info-text p {
  font-size: 0.85rem; color: rgba(250,247,242,0.5);
  font-weight: 300; margin: 0;
}
.form-label-custom {
  font-size: 0.68rem; letter-spacing: 2.5px;
  text-transform: uppercase; color: var(--warm-gray);
  margin-bottom: 8px; font-weight: 500; display: block;
}
.form-control-custom {
  background: var(--cream);
  border: 1px solid rgba(196,151,58,0.2);
  border-radius: 0; padding: 13px 17px;
  font-size: 0.95rem; color: var(--dark);
  font-family: 'DM Sans', sans-serif;
  transition: var(--transition); width: 100%; outline: none;
}
.form-control-custom:focus {
  border-color: var(--gold); background: #fff;
  box-shadow: 0 0 0 3px rgba(196,151,58,0.07);
}
.form-select-custom {
  background: var(--cream) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='none'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23C4973A' stroke-width='1.5'/%3E%3C/svg%3E") no-repeat right 16px center;
  appearance: none;
}
.form-check-custom {
  display: flex; align-items: center; gap: 10px; cursor: pointer;
}
.form-check-custom input[type="checkbox"] {
  width: 18px; height: 18px;
  accent-color: var(--gold); cursor: pointer;
}
.form-check-custom label {
  font-size: 0.88rem; color: var(--warm-gray);
  cursor: pointer; font-weight: 300;
}
.btn-submit {
  background: var(--dark); color: var(--cream);
  border: none; border-radius: 0; width: 100%;
  padding: 18px; font-size: 0.78rem; letter-spacing: 3px;
  text-transform: uppercase;
  font-family: 'DM Sans', sans-serif; font-weight: 500;
  cursor: pointer; transition: var(--transition); margin-top: 10px;
}
.btn-submit:hover { background: var(--gold); color: var(--dark); }

/* ─── FAQ ─────────────────────────────────── */
#faq { background: var(--charcoal); }
#faq .section-title { color: var(--cream); }
#faq .section-label { color: var(--gold-light); }
#faq .divider-gold  { background: var(--gold-light); }

.faq-item { border-bottom: 1px solid rgba(250,247,242,0.07); }
.faq-question {
  background: none; border: none; width: 100%; text-align: left;
  padding: 22px 0;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; color: var(--cream);
  font-weight: 300; transition: var(--transition);
}
.faq-question:hover { color: var(--gold-light); }
.faq-icon {
  color: var(--gold); font-size: 1rem;
  transition: var(--transition); min-width: 20px;
}
.faq-question.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer.open { max-height: 300px; padding-bottom: 20px; }
.faq-answer p {
  font-size: 0.92rem; color: rgba(250,247,242,0.55);
  line-height: 1.8; font-weight: 300; margin: 0;
}

/* ─── RESPONSIVE ─────────────────────────── */
@media (max-width: 991px) {
  .booking-left,
  .booking-right { padding: 50px 30px; }
}
