@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400;1,600&family=Inter:wght@300;400;500;600&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --maroon: #7B1212;
  --maroon-dark: #580D0D;
  --maroon-mid: #8E1A1A;
  --gold: #C9973A;
  --gold-light: #E5B96B;
  --gold-pale: #FDF6E8;
  --gold-border: rgba(201,151,58,0.35);
  --cream: #FAF7F1;
  --cream-dark: #F2EDE2;
  --white: #FFFFFF;
  --text-dark: #1A0F0F;
  --text-mid: #3D2010;
  --text-muted: #7A6040;
  --border: rgba(123,18,18,0.12);
  --border-gold: rgba(201,151,58,0.25);
}

html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--cream); color: var(--text-dark); line-height: 1.7; }

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(250,247,241,0.97); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  height: 70px; padding: 0 4rem;
  display: flex; align-items: center; justify-content: space-between;
}
.nav-brand { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-monogram {
  width: 44px; height: 44px; background: var(--maroon); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Playfair Display', serif; font-size: 14px; font-weight: 700;
  color: #fff; letter-spacing: 0.5px; border: 2px solid var(--gold);
  flex-shrink: 0;
}
.nav-logo-img {
  width: 48px; height: 48px; border-radius: 50%;
  object-fit: cover; border: 2px solid var(--gold);
  flex-shrink: 0;
}
.nav-brand-text { line-height: 1.1; }
.nav-name { font-family: 'Playfair Display', serif; font-size: 18px; font-weight: 700; color: var(--maroon); }
.nav-sub { font-size: 10px; color: var(--gold); font-weight: 600; letter-spacing: 2px; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links a {
  font-size: 13px; font-weight: 500; color: var(--text-mid);
  text-decoration: none; padding: 8px 16px; letter-spacing: 0.3px;
  transition: color 0.2s; border-radius: 4px;
}
.nav-links a:hover, .nav-links a.active { color: var(--maroon); }
.nav-links a.active { font-weight: 600; }
.nav-links .nav-book {
  background: var(--maroon); color: #fff !important; margin-left: 8px;
  padding: 9px 22px; border-radius: 3px;
}
.nav-links .nav-book:hover { background: var(--maroon-dark); }
.nav-veg {
  display: flex; align-items: center; gap: 5px;
  background: #e8f5e9; border: 1.5px solid #2e7d32;
  border-radius: 3px; padding: 4px 10px;
  font-size: 11px; font-weight: 700; color: #1b5e20; letter-spacing: 0.5px;
  margin-right: 12px;
}
.veg-dot { width: 9px; height: 9px; background: #2e7d32; border-radius: 50%; flex-shrink: 0; }

/* ── FLOATING WHATSAPP ── */
.floating-wa {
  position: fixed; bottom: 24px; right: 24px; z-index: 9999;
  display: flex; flex-direction: column; gap: 10px; align-items: flex-end;
}
.wa-float-btn {
  background: #25D366; color: #fff; border-radius: 50px;
  padding: 10px 18px 10px 10px; font-size: 13px; font-weight: 600;
  text-decoration: none; display: flex; align-items: center; gap: 10px;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4); transition: all 0.25s; white-space: nowrap;
}
.wa-float-btn:hover { background: #128C7E; transform: translateX(-4px); }
.wa-icon-circle {
  width: 34px; height: 34px; background: rgba(255,255,255,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.wa-info { line-height: 1.2; }
.wa-person { font-size: 10px; opacity: 0.8; font-weight: 400; }
.wa-number { font-size: 13px; font-weight: 700; }

/* ── COMMON SECTION STYLES ── */
.page-content { padding-top: 70px; }
section { padding: 6rem 5rem; }
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 3.5px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif; font-size: 44px; font-weight: 700;
  color: var(--maroon); line-height: 1.12; margin-bottom: 1.25rem;
}
.section-sub { font-size: 16px; color: var(--text-muted); line-height: 1.85; max-width: 560px; }
.gold-rule { width: 52px; height: 2px; background: var(--gold); margin: 1.25rem 0 1.75rem; }
.gold-rule.center { margin: 1.25rem auto 1.75rem; }

/* ── BUTTONS ── */
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--maroon); color: #fff; padding: 14px 30px;
  border-radius: 3px; font-size: 14px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.5px; transition: all 0.2s;
}
.btn-primary:hover { background: var(--maroon-dark); transform: translateY(-2px); }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: var(--maroon);
  border: 1.5px solid var(--maroon); padding: 13px 28px;
  border-radius: 3px; font-size: 14px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.5px; transition: all 0.2s;
}
.btn-outline:hover { background: var(--maroon); color: #fff; }
.btn-gold {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gold); color: #fff; padding: 14px 30px;
  border-radius: 3px; font-size: 14px; font-weight: 600;
  text-decoration: none; letter-spacing: 0.5px; transition: all 0.2s;
}
.btn-gold:hover { background: #B8832A; transform: translateY(-2px); }

/* ── ORNAMENT DIVIDER ── */
.ornament {
  display: flex; align-items: center; gap: 16px; margin: 0 auto 3rem;
  justify-content: center;
}
.ornament-line { flex: 1; max-width: 80px; height: 1px; background: var(--gold-border); }
.ornament-diamond {
  width: 10px; height: 10px; background: var(--gold);
  transform: rotate(45deg); flex-shrink: 0;
}

/* ── PROMISE STRIP ── */
.promise-strip {
  background: var(--maroon); padding: 3rem 5rem; text-align: center;
  border-top: 3px solid var(--gold); border-bottom: 3px solid var(--gold);
}
.promise-strip blockquote {
  font-family: 'Playfair Display', serif; font-size: 26px; font-style: italic;
  color: #fff; line-height: 1.6; max-width: 680px; margin: 0 auto 1rem;
}
.promise-strip cite { font-size: 12px; color: var(--gold-light); letter-spacing: 2.5px; text-transform: uppercase; font-style: normal; }

/* ── FOOTER ── */
footer {
  background: var(--maroon-dark); color: rgba(255,255,255,0.8);
  padding: 4rem 5rem 0;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 4rem;
}
.footer-logo-name { font-family: 'Playfair Display', serif; font-size: 22px; color: #fff; font-weight: 700; margin-bottom: 4px; }
.footer-logo-sub { font-size: 10px; color: var(--gold-light); letter-spacing: 2.5px; text-transform: uppercase; margin-bottom: 1rem; }
.footer-desc { font-size: 13px; line-height: 1.85; color: rgba(255,255,255,0.55); }
.footer-heading { font-size: 11px; font-weight: 600; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 1.25rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.6); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-line { font-size: 13px; color: rgba(255,255,255,0.6); margin-bottom: 10px; line-height: 1.7; }
.footer-contact-line a { color: var(--gold-light); text-decoration: none; }
.footer-bottom {
  background: #3D0808; margin-top: 3rem; padding: 1.25rem 5rem;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 12px; color: rgba(255,255,255,0.4);
}
.footer-gst { font-size: 11px; letter-spacing: 0.5px; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 1.5rem; }
  .nav-links { display: none; }
  section { padding: 4rem 1.5rem; }
  .promise-strip { padding: 2.5rem 1.5rem; }
  footer { grid-template-columns: 1fr; padding: 3rem 1.5rem 0; gap: 2rem; }
  .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; gap: 6px; text-align: center; }
}
