/* ==========================================================================
   Indian Masala — main stylesheet
   ========================================================================== */

:root {
  /* Spice palette: charcoal/black with orange, red, gold accents */
  --color-black: #0c0a09;
  --color-charcoal: #171311;
  --color-charcoal-2: #201a17;
  --color-charcoal-3: #2a221d;

  --color-red: #d62828;
  --color-orange: #f2711c;
  --color-gold: #e8ab1f;
  --color-gold-light: #f4c542;

  --gradient-spice: linear-gradient(90deg, var(--color-red), var(--color-orange) 55%, var(--color-gold));
  --gradient-hero: linear-gradient(180deg, rgba(12,10,9,0.35) 0%, rgba(12,10,9,0.55) 45%, rgba(12,10,9,0.95) 100%);

  --font-display: 'Poppins', 'Arial Narrow', sans-serif;
  --font-body: 'Poppins', system-ui, -apple-system, sans-serif;

  --container-w: 1180px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-soft: 0 20px 45px rgba(0,0,0,0.45);
  --header-h: 76px;
  --color-cream: #f7ede0;
  --color-text-muted: #cabdae;
}

/* -------------------- Reset -------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--color-black);
  color: var(--color-cream);
  font-family: var(--font-body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 700; letter-spacing: 0.3px; margin: 0 0 0.5em; line-height: 1.15; }
p { margin: 0 0 1em; }
address { font-style: normal; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--color-orange);
  color: #14100b;
  padding: 12px 20px;
  z-index: 999;
  font-weight: 700;
}
.skip-link:focus { left: 12px; top: 12px; }

.text-spice {
  background: var(--gradient-spice);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-size: 0.85rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--color-gold-light);
  margin-bottom: 0.6em;
}

.section-heading { text-align: center; max-width: 640px; margin: 0 auto 3rem; }
.section-heading h1, .section-heading h2 { font-size: clamp(1.8rem, 4vw, 2.6rem); }
.section-sub { color: var(--color-text-muted); }

.page-hero {
  padding: calc(var(--header-h) + 3.5rem) 0 3.5rem;
  background: linear-gradient(160deg, var(--color-charcoal-2), var(--color-black) 70%);
  text-align: center;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.2rem); }
.page-hero p { color: var(--color-text-muted); max-width: 620px; margin: 0 auto; }

/* -------------------- Buttons -------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.9em 1.8em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.3px;
  border: 2px solid transparent;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, color 0.25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-spice);
  color: #14100b;
  box-shadow: 0 8px 24px rgba(214, 40, 40, 0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 14px 32px rgba(242, 113, 28, 0.45); }
.btn-outline {
  background: transparent;
  color: var(--color-cream);
  border-color: var(--color-gold);
}
.btn-outline:hover { background: var(--color-gold); color: #14100b; transform: translateY(-3px); }
.btn-lg { padding: 1.05em 2.2em; font-size: 1.05rem; }
.btn-sm { padding: 0.6em 1.3em; font-size: 0.85rem; }

/* -------------------- Header / Nav -------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(12, 10, 9, 0.92);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 6px 24px rgba(0,0,0,0.4); }
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-logo { width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0; }
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name { font-family: var(--font-display); font-size: 1.15rem; letter-spacing: 0.5px; color: var(--color-cream); font-weight: 800; }
.brand-sub { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; color: var(--color-gold-light); }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav ul { display: flex; gap: 1.5rem; align-items: center; }
.main-nav a:not(.btn) {
  font-size: 0.92rem;
  font-weight: 600;
  padding: 0.4rem 0;
  position: relative;
  color: var(--color-cream);
  transition: color 0.2s ease;
}
.main-nav a:not(.btn)::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--gradient-spice);
  transition: width 0.25s ease;
}
.main-nav a:not(.btn):hover,
.main-nav a.current:not(.btn) { color: var(--color-gold-light); }
.main-nav a:not(.btn):hover::after,
.main-nav a.current:not(.btn)::after { width: 100%; }

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: transparent;
  border: none;
  padding: 0;
}
.nav-toggle span {
  display: block;
  height: 2px;
  width: 100%;
  background: var(--color-cream);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------------------- Hero (home) -------------------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(ellipse at 50% 20%, #3a1f12 0%, var(--color-black) 65%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 15% 25%, rgba(242,113,28,0.18) 0%, transparent 35%),
    radial-gradient(circle at 85% 75%, rgba(214,40,40,0.18) 0%, transparent 40%),
    radial-gradient(circle at 50% 100%, rgba(232,171,31,0.15) 0%, transparent 45%);
  z-index: 0;
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: var(--header-h);
}
.hero-title {
  font-size: clamp(2.6rem, 7vw, 5.2rem);
  color: var(--color-cream);
  text-shadow: 0 8px 30px rgba(0,0,0,0.6);
  margin-bottom: 0.25em;
  font-weight: 800;
}
.hero-tagline {
  font-size: clamp(1.05rem, 2.4vw, 1.4rem);
  color: var(--color-gold-light);
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 2rem;
  max-width: 620px;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-locations { margin-top: 2.4rem; display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.hero-loc-pill {
  display: flex; align-items: center; gap: 0.5rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.6em 1.2em;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text-muted);
}
.hero-loc-pill strong { color: var(--color-cream); }

/* -------------------- About / Intro -------------------- */
.about { padding: 6rem 0; background: var(--color-charcoal); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}
.about-media { position: relative; }
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  background: linear-gradient(135deg, var(--color-charcoal-3), var(--color-black));
}
.about-media-badge {
  position: absolute;
  bottom: -18px; right: -18px;
  background: var(--gradient-spice);
  color: #14100b;
  font-family: var(--font-display);
  font-size: 0.9rem;
  letter-spacing: 0.5px;
  font-weight: 700;
  padding: 0.8em 1.4em;
  border-radius: 999px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.4);
}
.about-copy p { color: var(--color-text-muted); }
.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}
.highlight-card {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--color-charcoal-2);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 0.7em 1.1em;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 600;
}
.highlight-icon { font-size: 1.1rem; }

/* -------------------- Food photo tiles (with icon fallback) -------------------- */
.food-tile {
  border-radius: var(--radius-md);
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  background: linear-gradient(135deg, var(--color-charcoal-3), var(--color-charcoal-2));
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
}
.food-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* -------------------- Best Sellers -------------------- */
.best-sellers { padding: 6rem 0; background: var(--color-black); }
.bs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.4rem;
}
.bs-card {
  background: var(--color-charcoal-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}
.bs-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-soft); border-color: var(--color-orange); }
.bs-card-body { padding: 1.3rem 1.4rem 1.5rem; }
.bs-card h3 { font-size: 1.05rem; margin-bottom: 0.3em; }
.bs-price { color: var(--color-gold-light); font-weight: 700; font-family: var(--font-display); }

/* -------------------- Menu -------------------- */
.menu-page { padding: 4rem 0 6rem; background: var(--color-black); }
.location-tabs {
  display: flex;
  gap: 0.7rem;
  justify-content: center;
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.location-tab {
  background: var(--color-charcoal-2);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-cream);
  padding: 0.75em 1.6em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: all 0.25s ease;
}
.location-tab:hover { border-color: var(--color-orange); color: var(--color-gold-light); }
.location-tab.active {
  background: var(--gradient-spice);
  color: #14100b;
  border-color: transparent;
}

.menu-category-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  margin-bottom: 3rem;
}
.menu-category-nav a {
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.5em 1.1em;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--color-text-muted);
  transition: all 0.2s ease;
}
.menu-category-nav a:hover { border-color: var(--color-gold); color: var(--color-gold-light); }

.menu-location-panel[hidden] { display: none; }

.menu-category { max-width: 820px; margin: 0 auto 3.5rem; scroll-margin-top: 100px; }
.menu-category h2 {
  font-size: 1.5rem;
  color: var(--color-gold-light);
  border-bottom: 2px solid rgba(242,113,28,0.3);
  padding-bottom: 0.5rem;
  margin-bottom: 1.2rem;
}
.menu-list { display: flex; flex-direction: column; gap: 0.6rem; }
.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  background: var(--color-charcoal-2);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 1rem 1.5rem;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}
.menu-item:hover {
  transform: translateX(4px);
  border-color: var(--color-orange);
  background: var(--color-charcoal-3);
}
.item-name { font-weight: 600; }
.item-desc { color: var(--color-text-muted); font-size: 0.85rem; margin-top: 0.2em; }
.item-price {
  color: var(--color-gold-light);
  font-weight: 700;
  font-family: var(--font-display);
  white-space: nowrap;
}

/* -------------------- Locations / Contact -------------------- */
.locations-page { padding: 4rem 0 6rem; background: var(--color-black); }
.location-block {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.location-block:last-of-type { border-bottom: none; }
.hl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: start;
}
.hours-list { margin: 1.5rem 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.7em 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  font-weight: 600;
  font-size: 0.95rem;
}
.hours-list li span:last-child { color: var(--color-gold-light); }
.hl-info address { color: var(--color-text-muted); margin-bottom: 1.2rem; font-size: 1.05rem; }
.hl-info .btn { margin-right: 0.6rem; margin-bottom: 0.6rem; }
.hl-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(255,255,255,0.08);
  aspect-ratio: 4/3;
}
.hl-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.3) contrast(1.1); }

/* -------------------- Contact form -------------------- */
.contact-form-section { padding: 5rem 0; background: var(--color-charcoal); }
.contact-form {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-field { display: flex; flex-direction: column; gap: 0.4rem; }
.form-field label { font-size: 0.85rem; font-weight: 600; color: var(--color-text-muted); }
.form-field input, .form-field textarea, .form-field select {
  background: var(--color-charcoal-2);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 0.85em 1em;
  color: var(--color-cream);
  font-family: inherit;
  font-size: 0.95rem;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--color-orange);
}
.contact-form button { align-self: flex-start; margin-top: 0.5rem; }

/* -------------------- Reviews -------------------- */
.reviews-page { padding: 4rem 0 6rem; background: var(--color-black); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
}
.review-card {
  background: var(--color-charcoal-2);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.stars { color: var(--color-gold-light); letter-spacing: 2px; margin-bottom: 0.8rem; font-size: 1.1rem; }
.review-card p { color: var(--color-cream); font-style: italic; }
.review-name { color: var(--color-text-muted); font-size: 0.85rem; font-weight: 600; }
.review-loc { color: var(--color-gold-light); font-size: 0.75rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 0.2em; }
.reviews-note {
  text-align: center;
  color: var(--color-text-muted);
  max-width: 560px;
  margin: 3rem auto 0;
  font-size: 0.92rem;
}

/* -------------------- CTA band -------------------- */
.cta-band {
  padding: 4.5rem 0;
  background: linear-gradient(160deg, #3a1508, var(--color-charcoal) 65%);
  text-align: center;
}
.cta-band h2 { font-size: clamp(1.6rem, 4vw, 2.2rem); }
.cta-band p { color: var(--color-text-muted); margin-bottom: 1.8rem; }
.cta-band .hero-actions { justify-content: center; }

/* -------------------- Footer -------------------- */
.site-footer { background: #060504; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding: 4rem 24px 3rem;
}
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { width: 56px; height: 56px; border-radius: 50%; }
.footer-brand-name { font-family: var(--font-display); font-weight: 800; font-size: 1.2rem; color: var(--color-cream); }
.footer-brand p { color: var(--color-text-muted); margin: 0; }
.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--color-gold-light);
  font-weight: 600;
  width: fit-content;
  transition: color 0.2s ease;
}
.social-link:hover { color: var(--color-orange); }
.footer-col h4 {
  font-family: var(--font-body);
  font-weight: 700;
  color: var(--color-cream);
  margin-bottom: 0.8rem;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.footer-col p, .footer-col address { color: var(--color-text-muted); font-size: 0.92rem; margin-bottom: 0.3rem; }
.footer-col a:hover { color: var(--color-gold-light); }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 1.4rem 0;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .about-grid, .hl-grid { grid-template-columns: 1fr; }
  .about-media { order: -1; }
  .bs-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .form-row { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    background: rgba(12,10,9,0.98);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 1rem 24px 2rem;
    transform: translateY(-140%);
    opacity: 0;
    transition: transform 0.35s ease, opacity 0.3s ease;
    border-bottom: 1px solid rgba(255,255,255,0.08);
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }
  .main-nav.open { transform: translateY(0); opacity: 1; }
  .main-nav ul { flex-direction: column; gap: 0; align-items: stretch; }
  .main-nav ul li { border-bottom: 1px solid rgba(255,255,255,0.06); }
  .main-nav a:not(.btn) { display: block; padding: 1em 0; }
  .nav-cta { margin-top: 1rem; width: 100%; }
  .nav-toggle { display: flex; }

  .bs-grid { grid-template-columns: 1fr 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-brand { align-items: center; }
  .social-link { margin: 0 auto; }
  .hours-list li { font-size: 0.9rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .menu-item { flex-direction: column; align-items: flex-start; gap: 0.3rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { transition-duration: 0.01ms !important; }
}
