/* ==========================================================================
   VAKHRAA MODERN INDIA — Stylesheet
   Palette: forest green + warm gold/brass on black/charcoal + off-white
   ========================================================================== */

:root {
  /* Primary/secondary extracted from the real logo (logo.png) */
  --forest: #143d3a;
  --forest-deep: #0c2624;
  --gold: #c0a16c;
  --gold-light: #d9c093;
  --charcoal: #171512;
  --black: #0d0c0a;
  --off-white: #f6f2ea;
  --cream: #efe8da;
  --ink: #211f1b;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-accent: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container-max: 1180px;
  --radius: 2px;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------- Reset & base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body, h1, h2, h3, p, figure, ul, ol {
  margin: 0;
}

body {
  font-family: var(--font-sans);
  background: var(--off-white);
  color: var(--ink);
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; }
button { font: inherit; cursor: pointer; }

h1, h2, h3 { font-family: var(--font-serif); font-weight: 600; line-height: 1.15; color: var(--forest); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap; border: 0;
}

.skip-link {
  position: absolute;
  top: -50px; left: 0;
  background: var(--gold);
  color: var(--black);
  padding: 0.75rem 1.25rem;
  z-index: 1000;
  transition: top 0.2s;
  font-weight: 600;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.section-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.eyebrow {
  font-family: var(--font-accent);
  font-size: 1.05rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.eyebrow-light { color: var(--gold-light); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 0.9rem 2.1rem;
  border-radius: var(--radius);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-align: center;
  border: 1px solid transparent;
  transition: background var(--transition), color var(--transition), border-color var(--transition), transform var(--transition);
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--black);
}
.btn-gold:hover { background: var(--gold-light); }

.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--black);
}

.btn-lg { padding: 1.1rem 2.6rem; font-size: 1rem; }
.btn-full { width: 100%; }

/* ---------- Logo ----------
   The logo artwork is dark green + gold on a transparent background, so it
   needs a light chip behind it to stay legible on the dark header/footer.
   Nav uses the cropped crest emblem (logo-crest.png, near-square) as a
   compact round badge; the footer uses the full crest+wordmark lockup
   (logo.png) sized wider to accommodate its shape. */
.logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--off-white);
  transition: transform var(--transition);
}
.logo-chip:hover { transform: translateY(-1px); }
.logo-img {
  display: block;
  height: 42px;
  width: auto;
}
.logo-chip-nav {
  border-radius: 50%;
  width: 58px;
  height: 58px;
}
.logo-img-crest { height: 40px; }

.logo-chip-footer {
  border-radius: 12px;
  padding: 0.5rem 0.85rem;
}
.logo-chip-footer .logo-img { height: 58px; }

/* ---------- Header / Nav ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 1.1rem 0;
  background: transparent;
  transition: background var(--transition), padding var(--transition), box-shadow var(--transition);
}
.site-header.scrolled {
  background: rgba(13, 12, 10, 0.96);
  padding: 0.7rem 0;
  box-shadow: 0 4px 24px rgba(0,0,0,0.25);
}

.header-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}

.primary-nav ul {
  display: flex;
  gap: 1.9rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--off-white);
  position: relative;
  padding-bottom: 4px;
}
.nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link:focus-visible::after { width: 100%; }
.nav-link:hover { color: var(--gold-light); }

.nav-cta { padding: 0.7rem 1.5rem; font-size: 0.8rem; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  padding: 0.5rem;
  z-index: 60;
}
.nav-toggle-bar {
  width: 24px; height: 2px;
  background: var(--off-white);
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background: var(--forest-deep);
  /* HERO IMAGE — swap this URL for a licensed photo (1920px+ wide, moody/warm) */
  background-image:
    linear-gradient(180deg, rgba(13,12,10,0.55) 0%, rgba(13,12,10,0.35) 45%, rgba(13,12,10,0.85) 100%),
    url('https://images.unsplash.com/photo-1601050690597-df0568f70950?q=80&w=1920&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, transparent 30%, rgba(13,12,10,0.55) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 0 1.5rem;
  color: var(--off-white);
}
.hero .eyebrow { color: var(--gold-light); }
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5rem);
  color: var(--off-white);
  margin-bottom: 1rem;
}
.hero-title span {
  display: block;
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
  font-size: 0.55em;
  letter-spacing: 0.05em;
  margin-top: 0.3rem;
}
.hero-tagline {
  font-family: var(--font-accent);
  font-size: 1.5rem;
  color: var(--gold-light);
  margin-bottom: 0.6rem;
  letter-spacing: 0.02em;
}
.hero-subline {
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(246,242,234,0.85);
  margin-bottom: 2.2rem;
}

.scroll-cue {
  position: absolute;
  bottom: 2.2rem; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 26px; height: 42px;
  border: 1px solid rgba(246,242,234,0.55);
  border-radius: 20px;
}
.scroll-cue span {
  position: absolute;
  top: 8px; left: 50%;
  transform: translateX(-50%);
  width: 4px; height: 8px;
  background: var(--gold);
  border-radius: 2px;
  animation: scrollCue 1.8s ease-in-out infinite;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-cue span { animation: none; }
}
@keyframes scrollCue {
  0% { opacity: 1; top: 8px; }
  70% { opacity: 0; top: 22px; }
  100% { opacity: 0; top: 22px; }
}

/* ---------- Section spacing ---------- */
section:not(.hero) { padding: 6.5rem 0; }
.section-heading { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.section-sub { color: #6b6559; margin-top: 0.6rem; }

/* ---------- About ---------- */
.about { background: var(--off-white); }
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: 4.5rem;
  align-items: center;
}
.about-media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: var(--radius);
}
.about-media img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.about-media-frame {
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(192,161,108,0.7);
  pointer-events: none;
}
.about-copy h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.about-copy .lead {
  font-family: var(--font-accent);
  font-size: 1.4rem;
  font-style: italic;
  color: var(--gold);
  margin-bottom: 1.3rem;
}
.about-copy p { color: #4a473f; margin-bottom: 1rem; }
.about-copy p:last-child { margin-bottom: 0; }

/* ---------- Menu ---------- */
.menu { background: var(--cream); }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.menu-card {
  background: var(--off-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(23,21,18,0.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.menu-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 32px rgba(23,21,18,0.14);
}
.menu-card-media {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}
.menu-card-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.menu-card:hover .menu-card-media img { transform: scale(1.07); }
.menu-card-body { padding: 1.4rem 1.5rem 1.6rem; }
.menu-card-title {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 0.75rem;
  margin-bottom: 0.5rem;
}
.menu-card-title h3 {
  font-size: 1.15rem;
  color: var(--forest);
}
.tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--forest);
  background: rgba(26,51,41,0.09);
  padding: 0.15rem 0.4rem;
  border-radius: 3px;
  vertical-align: middle;
  margin-left: 0.35rem;
}
.price {
  font-family: var(--font-accent);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--gold);
  white-space: nowrap;
}
.menu-card-body p {
  font-size: 0.92rem;
  color: #6b6559;
}
.menu-card-feature { outline: 1px solid rgba(192,161,108,0.5); }

.menu-cta { text-align: center; margin-top: 3.5rem; }

/* ---------- Gallery ---------- */
.gallery { background: var(--forest); }
.gallery .eyebrow { color: var(--gold-light); }
.gallery .section-heading h2 { color: var(--off-white); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 1rem;
}
.gallery-item {
  overflow: hidden;
  border-radius: var(--radius);
  position: relative;
}
.gallery-item-tall { grid-row: span 2; }
.gallery-item-wide { grid-column: span 2; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease, filter 0.6s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  box-shadow: inset 0 0 0 1px rgba(192,161,108,0.25);
  pointer-events: none;
}

/* ---------- Celebrations / Banquet ---------- */
.celebrations {
  position: relative;
  background: var(--forest-deep);
  background-image:
    linear-gradient(180deg, rgba(16,32,26,0.88), rgba(16,32,26,0.94)),
    url('https://images.unsplash.com/photo-1519690889869-e705e59f72e1?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center;
  color: var(--off-white);
  text-align: center;
}
.celebrations-inner { max-width: 720px; }
.celebrations h2 { color: var(--off-white); font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1.2rem; }
.celebrations-copy { color: rgba(246,242,234,0.82); margin-bottom: 2.8rem; }

.banquet-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  margin-bottom: 1.5rem;
}
.banquet-card {
  border: 1px solid rgba(192,161,108,0.35);
  border-radius: var(--radius);
  padding: 1.8rem 1rem;
}
.banquet-card-highlight {
  border-color: var(--gold);
  background: rgba(192,161,108,0.08);
}
.banquet-card h3 {
  color: var(--gold-light);
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 0.6rem;
}
.banquet-price {
  font-family: var(--font-serif);
  font-size: 2.1rem;
  color: var(--off-white);
}
.banquet-price span {
  font-size: 0.9rem;
  font-family: var(--font-sans);
  color: rgba(246,242,234,0.6);
  margin-left: 0.2rem;
}
.banquet-note {
  font-size: 0.85rem;
  color: rgba(246,242,234,0.65);
  margin-bottom: 2.2rem;
}

/* ---------- Location ---------- */
.location { background: var(--off-white); }
.location-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 4rem;
  align-items: start;
}
.location-info h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1.3rem; }
.location-info address { font-style: normal; color: #4a473f; margin-bottom: 1.8rem; line-height: 1.8; }

.hours-table { border-collapse: collapse; margin-bottom: 0.5rem; }
.hours-table th, .hours-table td {
  text-align: left;
  padding: 0.55rem 0;
  border-bottom: 1px solid rgba(26,51,41,0.1);
  font-size: 0.95rem;
}
.hours-table th {
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--forest);
  padding-right: 2.5rem;
  white-space: nowrap;
}
.hours-table td { color: #4a473f; }
.hours-note { font-size: 0.85rem; color: var(--gold); margin: 0.8rem 0 2rem; font-style: italic; }

.location-map {
  aspect-ratio: 4 / 3;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(23,21,18,0.12);
}
.location-map iframe { width: 100%; height: 100%; }

/* ---------- Contact / Reserve ---------- */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 4.5rem;
}
.contact-info h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); margin-bottom: 1rem; }
.contact-info p { color: #4a473f; margin-bottom: 2rem; }

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(26,51,41,0.1);
}
.contact-list li:first-child { padding-top: 0; }
.contact-label {
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 600;
}
.contact-list a { color: var(--forest); font-size: 1.05rem; font-weight: 500; }
.contact-list a:hover { color: var(--gold); }

.reserve-form {
  background: var(--off-white);
  padding: 2.5rem;
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(23,21,18,0.08);
}
.form-row { margin-bottom: 1.3rem; }
.form-row-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}
.form-row label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--forest);
  margin-bottom: 0.45rem;
}
.optional { font-weight: 400; color: #8a8578; text-transform: none; letter-spacing: 0; }
.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border: 1px solid rgba(26,51,41,0.2);
  border-radius: var(--radius);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  background: var(--off-white);
  color: var(--ink);
  transition: border-color var(--transition);
}
.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-row textarea { resize: vertical; }

.form-status {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: var(--forest);
  min-height: 1.2em;
}
.form-status.success { color: #2f6b4f; font-weight: 600; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--black);
  color: rgba(246,242,234,0.75);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid rgba(246,242,234,0.1);
}
.footer-brand p { margin: 1.1rem 0 1.3rem; font-size: 0.9rem; max-width: 260px; }
.logo-chip-footer { margin-bottom: 0.2rem; }

.social-icons { display: flex; gap: 0.8rem; }
.social-icon {
  display: flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(192,161,108,0.4);
  border-radius: 50%;
  color: var(--gold);
  transition: background var(--transition), color var(--transition);
}
.social-icon:hover { background: var(--gold); color: var(--black); }

.footer-col h3 {
  color: var(--gold);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-family: var(--font-sans);
  font-weight: 600;
  margin-bottom: 1.1rem;
}
.footer-col p, .footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: rgba(246,242,234,0.7);
}
.footer-col a:hover { color: var(--gold); }
.footer-links li { margin-bottom: 0.55rem; }
.footer-links a { font-size: 0.9rem; color: rgba(246,242,234,0.7); }

.footer-bottom {
  text-align: center;
  padding: 1.8rem 0;
  font-size: 0.8rem;
  color: rgba(246,242,234,0.45);
}

/* ---------- Scroll animations ---------- */
.fade-in,
.fade-in-up {
  opacity: 0;
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.fade-in { transform: translateY(0); }
.fade-in-up { transform: translateY(28px); }
.fade-in.is-visible,
.fade-in-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-in-up { opacity: 1; transform: none; }
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1024px) {
  .about-grid,
  .location-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .location-map { aspect-ratio: 16 / 9; }
  .menu-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; row-gap: 2.5rem; }
  .gallery-grid { grid-auto-rows: 160px; }
}

@media (max-width: 860px) {
  .primary-nav {
    position: fixed;
    top: 0; right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--forest-deep);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 6.5rem 2rem 2rem;
    gap: 2.5rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: -12px 0 40px rgba(0,0,0,0.3);
  }
  .primary-nav.is-open { transform: translateX(0); }
  .primary-nav ul {
    flex-direction: column;
    gap: 1.6rem;
    width: 100%;
  }
  .nav-link { font-size: 1.05rem; }
  .nav-cta { width: 100%; text-align: center; }
  .nav-toggle { display: flex; }
}

@media (max-width: 640px) {
  section:not(.hero) { padding: 4.5rem 0; }
  .menu-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 150px; }
  .gallery-item-wide { grid-column: span 2; }
  .gallery-item-tall { grid-row: span 1; }
  .banquet-grid { grid-template-columns: 1fr; }
  .form-row-split { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2.2rem; text-align: left; }
  .reserve-form { padding: 1.8rem; }
  .hero-title { font-size: clamp(2.2rem, 10vw, 3rem); }
}
