/* ============================================================
   Marathi Kachori™ — Modern Heritage Luxury Design System
   "Dark, Dramatic, Confident, Bold"
   ============================================================ */

/* ---- Google Fonts ---- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans:ital,wght@0,300..800;1,300..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Plus+Jakarta+Sans:ital,wght@0,300..800;1,300..800&display=swap');

/* ============================================================
   1. Design Tokens
   ============================================================ */
:root {
  /* Brand Colors */
  --bg-primary:   #0A0A0A;
  --bg-card:      #141414;
  --bg-elevated:  #1C1C1C;
  --orange:       #C8520A;
  --orange-light: #E8620A;
  --orange-glow:  rgba(200, 82, 10, 0.15);
  --orange-glow-strong: rgba(200, 82, 10, 0.40);
  --green:        #2D5A1B;
  --green-light:  #3D7A26;
  --gold:         #D4A017;
  --gold-muted:   rgba(212, 160, 23, 0.2);
  --text-primary: #FFFFFF;
  --text-muted:   rgba(255, 255, 255, 0.50);
  --text-dim:     rgba(255, 255, 255, 0.30);
  --border:       rgba(255, 255, 255, 0.08);
  --border-hover: rgba(200, 82, 10, 0.40);

  /* Typography */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Noto Sans', 'Plus Jakarta Sans', 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --s1:  8px;
  --s2:  16px;
  --s3:  24px;
  --s4:  32px;
  --s5:  40px;
  --s6:  48px;
  --s8:  64px;
  --s10: 80px;
  --s12: 96px;
  --s16: 128px;

  /* Border Radius */
  --r-sm:   8px;
  --r-md:   16px;
  --r-lg:   24px;
  --r-xl:   32px;
  --r-full: 9999px;

  /* Transitions */
  --spring: cubic-bezier(0.175, 0.885, 0.32, 1.275);
  --ease:   cubic-bezier(0.4, 0, 0.2, 1);
  --t-fast: 200ms;
  --t-med:  400ms;
  --t-slow: 500ms;

  /* Shadows */
  --shadow-card:   0 4px 24px rgba(0,0,0,0.4);
  --shadow-lifted: 0 16px 48px rgba(0,0,0,0.5);
  --shadow-orange: 0 8px 32px rgba(200,82,10,0.35);
  --shadow-food:   0 25px 50px rgba(0,0,0,0.5);

  /* Navbar height */
  --nav-h: 72px;
}

/* ============================================================
   2. Reset & Base
   ============================================================ */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Page load animation */
.page-fade { opacity: 0; animation: pageFadeIn 0.5s var(--ease) forwards; }
.page-fade-out { opacity: 0; transition: opacity 0.2s ease; }

@keyframes pageFadeIn {
  to { opacity: 1; }
}

/* ============================================================
   3. Typography
   ============================================================ */
h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-primary);
  letter-spacing: -0.02em;
}

h4, h5, h6 {
  font-family: var(--font-body);
  font-weight: 600;
  color: var(--text-primary);
}

h1 { font-size: clamp(2.25rem, 6vw, 4.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 3rem); }
h3 { font-size: clamp(1.25rem, 2.5vw, 2rem); }
h4 { font-size: 1.125rem; }

p { color: var(--text-muted); line-height: 1.75; }

a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }

.display-italic { font-style: italic; }
.text-orange  { color: var(--orange); }
.text-gold    { color: var(--gold); }
.text-green   { color: var(--green-light); }
.text-muted   { color: var(--text-muted); }

.label-tag {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--orange);
}

/* ============================================================
   4. Layout
   ============================================================ */
.container {
  width: 100%;
  max-width: 1200px;
  margin-inline: auto;
  padding-inline: var(--s4);
}

@media (max-width: 768px) {
  .container { padding-inline: var(--s2); }
}

section {
  padding-block: var(--s10);
}

.section-head {
  text-align: center;
  margin-bottom: var(--s8);
}

.section-head .label-tag {
  display: block;
  margin-bottom: var(--s2);
}

.section-head h2 {
  margin-bottom: var(--s2);
}

.section-head p {
  max-width: 560px;
  margin-inline: auto;
}

/* Gold accent divider */
.gold-divider {
  display: flex;
  align-items: center;
  gap: var(--s2);
  justify-content: center;
  margin-block: var(--s3);
}
.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  max-width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold));
}
.gold-divider::after {
  background: linear-gradient(90deg, var(--gold), transparent);
}
.gold-divider-dot {
  width: 6px; height: 6px;
  background: var(--gold);
  border-radius: 50%;
}

/* ============================================================
   5. Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--s1);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  border-radius: var(--r-full);
  border: none;
  cursor: pointer;
  transition: transform var(--t-med) var(--spring),
              box-shadow var(--t-med) var(--ease),
              background-color var(--t-fast) var(--ease);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn:active { transform: scale(0.97) !important; }

/* Primary — orange */
.btn-primary {
  background: var(--orange);
  color: #fff;
  padding: 14px 28px;
  box-shadow: 0 4px 20px rgba(200,82,10,0.3);
}
.btn-primary:hover {
  background: var(--orange-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-orange);
  color: #fff;
}

/* Secondary — outlined white */
.btn-secondary {
  background: transparent;
  color: var(--text-primary);
  padding: 13px 27px;
  border: 1.5px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
  background: #fff;
  color: #0A0A0A;
  border-color: #fff;
  transform: scale(1.05);
}

/* WhatsApp nav button */
.btn-wa {
  background: var(--orange);
  color: #fff;
  padding: 10px 22px;
  font-size: 11px;
  box-shadow: 0 4px 14px rgba(200,82,10,0.35);
}
.btn-wa:hover {
  background: var(--orange-light);
  transform: scale(1.05);
  box-shadow: var(--shadow-orange);
  color: #fff;
}

/* Small variant */
.btn-sm {
  padding: 10px 20px;
  font-size: 11px;
}

/* ============================================================
   6. Cards
   ============================================================ */
.card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: var(--s4);
  transition: transform var(--t-med) var(--spring),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 40px rgba(200,82,10,0.12);
}

/* ============================================================
   7. Navbar — Glassmorphism Center-Logo Layout
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 9000;
  background: rgba(10,10,10,0.85);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: background var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.navbar.scrolled {
  background: rgba(10,10,10,0.98);
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
  border-bottom-color: rgba(255,255,255,0.12);
}

.navbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  height: var(--nav-h);
  gap: var(--s4);
}

/* Left nav links */
.nav-left {
  display: flex;
  align-items: center;
  gap: var(--s5);
}

/* Center brand */
.navbar-brand {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 12px;
  text-align: left;
  white-space: nowrap;
  color: var(--text-primary);
  text-decoration: none;
}

.navbar-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 1.5px solid var(--gold);
  transition: transform 300ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar-brand:hover .navbar-logo {
  transform: scale(1.1) rotate(8deg);
}

.brand-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
}

.navbar-brand-name {
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.1;
  color: var(--text-primary);
}

.navbar-brand-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
}

/* Right CTA */
.nav-right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* Nav links */
.nav-link {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--orange);
  border-radius: var(--r-full);
  transition: width var(--t-med) var(--ease);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px; height: 36px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
  z-index: 9002;
}

.hamburger-line {
  display: block;
  width: 100%; height: 2px;
  background: var(--text-primary);
  border-radius: var(--r-full);
  transition: transform var(--t-med) var(--ease),
              opacity var(--t-fast) var(--ease);
}

.hamburger.active .hamburger-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger.active .hamburger-line:nth-child(2) {
  opacity: 0;
}
.hamburger.active .hamburger-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav menu — fullscreen overlay */
.nav-menu {
  display: contents;
}

.nav-overlay-bg {
  display: none;
}

/* ============================================================
   8. Hero Section
   ============================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--bg-primary);
}

/* Ambient background glow */
.hero::before {
  content: '';
  position: absolute;
  top: -20%; right: -10%;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,82,10,0.10) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -20%; left: -10%;
  width: 400px; height: 400px;
  background: radial-gradient(circle, rgba(45,90,27,0.07) 0%, transparent 70%);
  pointer-events: none;
  border-radius: 50%;
}

.hero-left {
  padding: var(--s16) var(--s8) var(--s16) 0;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  background: rgba(45,90,27,0.15);
  border: 1px solid rgba(45,90,27,0.35);
  border-radius: var(--r-full);
  padding: 6px 16px;
  margin-bottom: var(--s4);
}

.hero-eyebrow .pulse-dot {
  width: 7px; height: 7px;
  background: #4CAF50;
  border-radius: 50%;
  animation: dotPulse 1.8s ease-in-out infinite;
  flex-shrink: 0;
}

.hero-eyebrow span:last-child {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--green-light);
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  margin-bottom: var(--s4);
  color: var(--text-primary);
}

.hero-title .italic-orange {
  color: var(--orange);
  font-style: italic;
  display: block;
}

.hero-title .line-block {
  display: block;
}

.hero-sub {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 420px;
  margin-bottom: var(--s5);
  line-height: 1.7;
}

.hero-ctas {
  display: flex;
  gap: var(--s2);
  flex-wrap: wrap;
  margin-bottom: var(--s5);
}

.hero-stats {
  display: flex;
  gap: var(--s4);
  padding-top: var(--s4);
  border-top: 1px solid var(--border);
}

.stat-item {
  display: flex;
  flex-direction: column;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.1;
}

.stat-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
}

/* Right image container — 3D floating */
.hero-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  perspective: 1000px;
}

.hero-image-wrap {
  position: relative;
  z-index: 2;
  animation: floatY 3s ease-in-out infinite;
  transition: transform var(--t-slow) var(--spring);
}

.hero-image-wrap:hover {
  animation-play-state: paused;
  transform: translateY(-15px) rotate(2deg) scale(1.05);
}

.hero-food-img {
  width: 100%;
  max-width: 520px;
  height: 560px;
  object-fit: cover;
  border-radius: 32px;
  box-shadow: var(--shadow-food);
  display: block;
}

/* Ambient radial glow behind food image */
.hero-image-glow {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(200,82,10,0.12) 0%, transparent 65%);
  filter: blur(40px);
  border-radius: 50%;
  pointer-events: none;
  z-index: 1;
}

/* Scroll indicator */
.scroll-cue {
  position: absolute;
  bottom: var(--s4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s1);
  color: var(--text-dim);
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  z-index: 10;
  animation: fadeInUp 1s var(--ease) 1.8s both;
}

.scroll-cue-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}

@keyframes scrollLine {
  0%, 100% { opacity: 1; transform: scaleY(1) translateY(0); }
  50%       { opacity: 0.4; transform: scaleY(0.6) translateY(10px); }
}

/* ============================================================
   9. Why Us Section
   ============================================================ */
.why-us {
  background: var(--bg-primary);
  position: relative;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.why-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: var(--s5);
  transition: transform var(--t-med) var(--spring),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--orange), transparent);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 40px rgba(200,82,10,0.12);
}
.why-card:hover::before { opacity: 1; }

.why-icon {
  font-size: 2.5rem;
  display: block;
  margin-bottom: var(--s3);
}

.why-card h3 {
  font-size: 1.35rem;
  margin-bottom: var(--s1);
}

.why-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* ============================================================
   10. Bestsellers / Food Cards
   ============================================================ */
.bestsellers {
  background: var(--bg-card);
  position: relative;
}

.food-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.food-card {
  background: var(--bg-primary);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--t-med) var(--spring),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
}

.food-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5),
              0 0 40px rgba(200,82,10,0.12);
}

.food-card-emoji {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 160px;
  background: radial-gradient(circle at center, rgba(200,82,10,0.12) 0%, var(--bg-elevated) 70%);
  font-size: 5rem;
  position: relative;
}

.food-badge {
  position: absolute;
  top: var(--s2);
  right: var(--s2);
  background: var(--orange);
  color: #fff;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: var(--r-full);
}

.food-card-body {
  padding: var(--s3);
  display: flex;
  flex-direction: column;
  flex: 1;
}

.food-card-body h3 {
  font-size: 1.1rem;
  margin-bottom: var(--s1);
}

.food-card-body p {
  font-size: 0.875rem;
  flex: 1;
  margin-bottom: var(--s3);
}

.food-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.food-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

/* ============================================================
   11. Reviews Section
   ============================================================ */
.reviews-section {
  background: var(--bg-primary);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: var(--s4);
  border-left: 3px solid var(--orange);
  transition: transform var(--t-med) var(--spring),
              box-shadow var(--t-med) var(--ease);
}

.review-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.review-stars {
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: var(--s2);
  letter-spacing: 2px;
}

.review-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: var(--s2);
  line-height: 1.7;
}

.review-author {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-primary);
}

.review-location {
  font-size: 0.8rem;
  color: var(--text-dim);
  margin-top: 2px;
}

/* ============================================================
   12. CTA Banner
   ============================================================ */
.cta-banner {
  background: linear-gradient(135deg, #1a0f00 0%, #0A0A0A 40%, #0d1f09 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
  padding-block: var(--s12);
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(200,82,10,0.15) 0%, transparent 60%);
  border-radius: 50%;
  pointer-events: none;
}

.cta-banner-inner {
  position: relative; z-index: 1;
}

.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: var(--s2);
}

.cta-banner p {
  font-size: 1.1rem;
  margin-bottom: var(--s5);
}

/* ============================================================
   13. Footer
   ============================================================ */
.site-footer {
  background: #050505;
  border-top: 1px solid var(--gold-muted);
  padding-top: var(--s10);
  padding-bottom: var(--s5);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--s8);
  margin-bottom: var(--s8);
}

.footer-brand-name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--s1);
}

.footer-tagline {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin-bottom: var(--s4);
  max-width: 260px;
}

.footer-order-pills {
  display: flex;
  flex-direction: column;
  gap: var(--s1);
}

.footer-pill {
  display: inline-flex;
  align-items: center;
  gap: var(--s1);
  padding: 10px 18px;
  border-radius: var(--r-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: transform var(--t-med) var(--spring),
              box-shadow var(--t-med) var(--ease);
  width: fit-content;
}

.footer-pill:hover {
  transform: scale(1.05);
}

.footer-pill-wa {
  background: var(--green);
  color: #fff;
}

.footer-pill-wa:hover { box-shadow: 0 6px 20px rgba(45,90,27,0.5); }

.footer-pill-swiggy {
  background: #E86B35;
  color: #fff;
}

.footer-pill-swiggy:hover { box-shadow: 0 6px 20px rgba(232,107,53,0.5); }

.footer-pill-zomato {
  background: #E23744;
  color: #fff;
}

.footer-pill-zomato:hover { box-shadow: 0 6px 20px rgba(226,55,68,0.4); }

.footer-col h5 {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--s3);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s2);
}

.footer-links a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--t-fast) var(--ease);
}

.footer-links a:hover { color: var(--text-primary); }

.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: var(--s4);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-dim);
}

/* ============================================================
   14. Page Header (inner pages)
   ============================================================ */
.page-header {
  padding-top: calc(var(--nav-h) + var(--s10));
  padding-bottom: var(--s8);
  background: var(--bg-primary);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  transform: translateX(-50%);
  width: 600px; height: 300px;
  background: radial-gradient(ellipse, rgba(200,82,10,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-header-inner { position: relative; z-index: 1; }

.page-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: var(--s2);
}

.page-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin-inline: auto;
}

/* ============================================================
   15. Menu Page
   ============================================================ */
.menu-tabs-wrap {
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: var(--nav-h);
  z-index: 100;
}

.menu-tabs {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}

.menu-tabs::-webkit-scrollbar { display: none; }

.menu-tab {
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--text-muted);
  background: none;
  border: none;
  padding: var(--s3) var(--s4);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
  transition: color var(--t-fast) var(--ease);
}

.menu-tab::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--orange);
  transition: width var(--t-med) var(--ease);
}

.menu-tab.active {
  color: var(--text-primary);
}

.menu-tab.active::after { width: 100%; }

.menu-tab:hover { color: var(--text-primary); }

.menu-content {
  background: var(--bg-primary);
  padding-block: var(--s8);
}

.menu-section { display: none; }
.menu-section.visible { display: block; }

.menu-section-head {
  margin-bottom: var(--s5);
}

.menu-section-head h2 {
  font-size: 2rem;
  margin-bottom: var(--s1);
}

/* ============================================================
   16. About Page
   ============================================================ */
.about-story {
  background: var(--bg-primary);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s8);
  align-items: center;
}

.story-text h2 { margin-bottom: var(--s3); }
.story-text p  { margin-bottom: var(--s3); font-size: 1.025rem; }

.about-timeline {
  background: var(--bg-card);
  padding-block: var(--s10);
}

.timeline-steps {
  display: flex;
  align-items: flex-start;
  gap: 0;
  position: relative;
  justify-content: center;
  padding-top: var(--s5);
}

.timeline-step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: var(--s3);
  position: relative;
}

.step-num {
  width: 52px; height: 52px;
  background: var(--orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
  margin: 0 auto var(--s3);
  position: relative;
  z-index: 2;
}

.timeline-connector {
  flex: 0 0 80px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), var(--gold));
  margin-top: 26px;
  opacity: 0.4;
}

.timeline-step h3 { font-size: 1.2rem; margin-bottom: var(--s1); }
.timeline-step p  { font-size: 0.9rem; }

.about-values { background: var(--bg-primary); }

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s3);
}

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s4);
  display: flex;
  gap: var(--s3);
  align-items: flex-start;
  transition: transform var(--t-med) var(--spring),
              border-color var(--t-med) var(--ease);
}

.value-card:hover {
  transform: translateY(-6px);
  border-color: var(--border-hover);
}

.value-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.value-card h3 { font-size: 1.1rem; margin-bottom: 4px; }
.value-card p  { font-size: 0.875rem; }

.about-promise {
  background: var(--bg-card);
  text-align: center;
  padding-block: var(--s10);
}

.promise-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.1rem, 2.5vw, 1.4rem);
  color: var(--text-muted);
  max-width: 640px;
  margin-inline: auto;
  line-height: 1.7;
  margin-bottom: var(--s3);
}

.promise-sig {
  font-weight: 700;
  font-size: 0.9rem;
  color: var(--orange);
  letter-spacing: 0.1em;
}

/* ============================================================
   17. Contact Page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s3);
}

.contact-card {
  background: var(--bg-card);
  border-radius: var(--r-lg);
  border: 1px solid var(--border);
  padding: var(--s5);
  text-align: center;
  transition: transform var(--t-med) var(--spring),
              border-color var(--t-med) var(--ease),
              box-shadow var(--t-med) var(--ease);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--s2);
}

.contact-card:hover {
  transform: translateY(-8px);
  border-color: var(--border-hover);
  box-shadow: var(--shadow-lifted);
}

.contact-card-wa {
  border-top: 3px solid var(--green);
}

.contact-icon {
  font-size: 2.5rem;
  width: 72px; height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-elevated);
  border-radius: 50%;
}

.contact-card h3 { font-size: 1.25rem; }

.contact-num {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--orange);
}

.contact-sub {
  font-size: 0.875rem;
  color: var(--text-muted);
  margin: 0;
}

.info-section {
  background: var(--bg-card);
  padding-block: var(--s10);
}

.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s3);
  max-width: 800px;
  margin-inline: auto;
}

.info-card {
  background: var(--bg-primary);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: var(--s5);
  text-align: center;
}

.info-card .info-icon { font-size: 2.5rem; margin-bottom: var(--s2); }
.info-card h3 { font-size: 1.1rem; margin-bottom: var(--s2); }
.info-card .info-value {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--green-light);
  margin-bottom: 4px;
}
.info-card .info-note { font-size: 0.8rem; color: var(--text-dim); }

/* ============================================================
   18. Keyframe Animations
   ============================================================ */
@keyframes floatY {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; transform: scale(1); box-shadow: 0 0 0 0 rgba(76,175,80,0.5); }
  50%       { opacity: 0.8; transform: scale(1.15); box-shadow: 0 0 0 6px rgba(76,175,80,0); }
}

@keyframes shimmer {
  0%   { background-position: -200% center; }
  100% { background-position: 200% center; }
}

/* ============================================================
   19. Scroll Animation Classes
   ============================================================ */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease),
              transform 0.7s var(--spring);
}

.animate-on-scroll.animated {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger children support */
.stagger-children > * {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s var(--ease),
              transform 0.6s var(--spring);
}

.stagger-children.animated > * {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================================
   20. Counter Animation
   ============================================================ */
.animate-counter {
  display: inline-block;
}

/* ============================================================
   21. Hero load animations
   ============================================================ */
.slideUp {
  display: block;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s var(--spring) forwards;
}

.fadeIn {
  opacity: 0;
  animation: fadeInUp 0.8s var(--ease) forwards;
}

/* ============================================================
   22. Mobile Floating CTA Bar
   ============================================================ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 8000;
  background: rgba(20,20,20,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid var(--border);
  border-radius: var(--r-full);
  padding: 6px;
  gap: 6px;
  box-shadow: 0 8px 40px rgba(0,0,0,0.6);
}

.mobile-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--r-full);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: transform var(--t-med) var(--spring);
}

.mobile-cta-btn:active { transform: scale(0.95); }

.mobile-cta-menu {
  background: #fff;
  color: #0A0A0A;
}

.mobile-cta-order {
  background: var(--orange);
  color: #fff;
}

/* ============================================================
   23. Floating Particles (hero)
   ============================================================ */
.hero-particles {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}

.particle {
  position: absolute;
  border-radius: 50%;
  background: rgba(200,82,10,0.15);
  animation: particleFloat linear infinite;
}

@keyframes particleFloat {
  0%   { transform: translateY(100vh) scale(0); opacity: 0; }
  10%  { opacity: 1; }
  90%  { opacity: 0.6; }
  100% { transform: translateY(-20vh) scale(1.5); opacity: 0; }
}

/* ============================================================
   24. Hero inner-grid layout (desktop)
   ============================================================ */
.hero-inner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  min-height: 100vh;
  padding-top: var(--nav-h);
  gap: var(--s8);
}

/* ============================================================
   25. Nav overlay for mobile
   ============================================================ */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: #0A0A0A;
  z-index: 8999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--s5);
  opacity: 0;
  transition: opacity var(--t-med) var(--ease);
}

.nav-overlay.open {
  opacity: 1;
}

.nav-overlay .nav-link {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0;
  color: var(--text-primary);
  text-transform: none;
}

.nav-overlay .nav-link:hover { color: var(--orange); }
.nav-overlay .nav-link::after { display: none; }

/* ============================================================
   26. Reduced Motion
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .animate-on-scroll { opacity: 1; transform: none; }
  .stagger-children > * { opacity: 1; transform: none; }
}

/* ============================================================
   27. Responsive — Mobile
   ============================================================ */
@media (max-width: 900px) {
  .why-grid,
  .food-grid,
  .reviews-grid { grid-template-columns: 1fr; }

  .hero-inner-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: calc(var(--nav-h) + var(--s5));
  }

  .hero-left { padding: var(--s5) 0; }
  .hero-right { display: none; }

  .hero-eyebrow { margin-inline: auto; }
  .hero-ctas { justify-content: center; }
  .hero-stats { justify-content: center; }

  .about-story-grid { grid-template-columns: 1fr; }

  .contact-grid { grid-template-columns: 1fr; }
  .info-grid { grid-template-columns: 1fr; }

  .footer-grid { grid-template-columns: 1fr; gap: var(--s5); }

  .values-grid { grid-template-columns: 1fr; }
  .timeline-steps { flex-direction: column; align-items: center; gap: var(--s3); }
  .timeline-connector { display: none; }
}

@media (max-width: 768px) {
  /* Navbar: hide desktop links, show hamburger */
  .nav-left, .nav-right { display: none; }
  .hamburger { display: flex; }

  /* Three-column grid → hamburger on left, brand in center, ghost on right */
  .navbar-inner {
    grid-template-columns: 40px 1fr 40px;
  }

  .navbar-brand { grid-column: 2; }

  /* Mobile floating CTA bar */
  .mobile-cta-bar { display: flex; }

  /* Scroll cue hide on very small */
  .scroll-cue { display: none; }

  section { padding-block: var(--s8); }

  .page-header {
    padding-top: calc(var(--nav-h) + var(--s6));
    padding-bottom: var(--s5);
  }

  .menu-tabs-wrap { top: var(--nav-h); }

  .footer-grid { padding-bottom: var(--s10); }
}

@media (max-width: 480px) {
  .hero-stats { flex-direction: column; gap: var(--s2); }
  .hero-ctas { flex-direction: column; align-items: center; }
  .food-grid, .why-grid, .reviews-grid { gap: var(--s2); }
  .contact-grid { gap: var(--s2); }
}

/* ============================================================
   28. Menu page header (premium dark variant)
   ============================================================ */
.page-header-dark {
  background: var(--bg-card);
}

/* ============================================================
   29. Color utilities
   ============================================================ */
.bg-primary  { background-color: var(--bg-primary); }
.bg-card     { background-color: var(--bg-card); }

/* ============================================================
   30. Accent line under section titles
   ============================================================ */
.orange-line {
  width: 48px; height: 3px;
  background: var(--orange);
  border-radius: var(--r-full);
  margin-top: var(--s2);
  margin-bottom: var(--s3);
}

.center-line { margin-inline: auto; }

/* ============================================================
   31. Hero image wrapper on about page
   ============================================================ */
.about-image-float {
  animation: floatY 3.5s ease-in-out infinite;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-food);
}

/* ============================================================
   32. Gold shimmer text effect
   ============================================================ */
.text-shimmer {
  background: linear-gradient(
    90deg,
    var(--gold) 0%,
    #fff 40%,
    var(--gold) 60%,
    #C8A040 100%
  );
  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: shimmer 3s linear infinite;
}

/* ============================================================
   33. Hero content split (Text & Delivery Partners)
   ============================================================ */
.hero-content-split {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
  margin-bottom: 28px;
  width: 100%;
}

.hero-text-group {
  flex: 1;
}

.hero-partner-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
}

.hero-right-col {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column !important;
  align-items: flex-start !important;
  justify-content: center;
  gap: 16px;
  padding-left: 32px;
  width: 45%;
}

/* Premium partner buttons */
.partner-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  background: rgba(20, 20, 20, 0.6);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  padding: 20px 32px;
  text-decoration: none;
  transition: all 400ms cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 364px;
  min-height: 80px;
  box-sizing: border-box;
}

.partner-btn:hover {
  transform: translateY(-4px) scale(1.03);
  background: rgba(26, 26, 26, 0.8);
}

.btn-swiggy:hover {
  border-color: #FC8019;
  box-shadow: 0 10px 30px rgba(252, 128, 25, 0.2);
}

.btn-zomato:hover {
  border-color: #E23744;
  box-shadow: 0 10px 30px rgba(226, 55, 68, 0.2);
}

.partner-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  padding: 4px;
  transition: background 300ms ease, transform 300ms ease;
}

.partner-btn:hover .partner-logo {
  background: rgba(255, 255, 255, 0.08);
  transform: rotate(-5deg) scale(1.05);
}

.partner-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.partner-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.partner-label {
  font-family: var(--font-body);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.partner-brand {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-primary);
}

/* Stacking behavior on smaller layouts */
@media (max-width: 1024px) {
  .hero-content-split {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--s3);
  }
  
  .hero-partner-stack {
    flex-direction: row;
    width: 100%;
    gap: var(--s2);
  }
  
  .partner-btn {
    flex: 1;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-partner-stack {
    flex-direction: column;
    width: 100%;
  }
  
  .partner-btn {
    width: 100%;
  }
}

.hero-section {
  background-image: url('images/hero_food.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.55) 0%,
    rgba(0, 0, 0, 0.30) 40%,
    rgba(0, 0, 0, 0.30) 70%,
    rgba(0, 0, 0, 0.85) 100%
  );
  z-index: 1;
}

.hero-right-btn {
  width: 100%;
}

.btn-whatsapp:hover {
  border-color: #25D366;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.2);
}
.partner-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}
.partner-label {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.50);
}
.partner-brand {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
}
.partner-svg {
  width: 32px;
  height: 32px;
}

.hero-trust-row {
  position: relative;
  z-index: 3;
}

.trust-item {
  color: rgba(255, 255, 255, 0.90) !important;
}

