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

:root {
  --black: #0a0a0a;
  --dark: #111111;
  --card: #1a1a1a;
  --red: #c0392b;
  --red-bright: #e74c3c;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --green: #2d6a2d;
  --cream: #f5efe0;
  --text: #e8dcc8;
  --muted: #9a8878;
  --border: rgba(212,160,23,0.25);
  --nav-bg: rgba(10,10,10,0.92);
  --mobile-bg: rgba(10,10,10,0.98);
  --red-tint: rgba(192,57,43,0.1);
  --red-tint-border: rgba(192,57,43,0.3);
  --red-glow: rgba(192,57,43,0.4);
  --white-line: rgba(255,255,255,0.06);
}

body.light-mode {
  --black: #faf6f0;
  --dark: #f0ebe1;
  --card: #ffffff;
  --text: #2a1a0e;
  --muted: #7a6a5a;
  --border: rgba(180,120,20,0.2);
  --gold: #b8860b;
  --gold-light: #a0720a;
}

body.light-mode nav {
  background: rgba(250,246,240,0.95);
}

body.light-mode .nav-links a {
  color: #2a1a0e;
}

body.light-mode .hero-bg {
  background-color: #faf6f0;
}

body.light-mode .hero-title {
  color: #1a0a00;
}

body.light-mode .hero-title span {
  color: #1a0a00;
}

body.light-mode .hero-desc {
  color: #7a6a5a;
}

body.light-mode .section-title {
  color: #1a0a00;
}

body.light-mode footer {
  background: #f0ebe1;
}

body.light-mode .mobile-menu {
  background: rgba(250,246,240,0.98);
}

html { scroll-behavior: smooth; }

body {
  background: var(--black);
  color: var(--text);
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── NAV ── */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 2rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  transition: all 0.3s ease;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.nav-logo img {
  height: 48px;
  width: auto;
  border: none;
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  color: var(--text);
  text-decoration: none;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 400;
  position: relative;
  transition: color 0.3s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0; right: 0;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.nav-links a:hover { color: var(--gold-light); }
.nav-links a:hover::after { transform: scaleX(1); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  flex-direction: column;
  gap: 5px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s;
}

.mobile-menu {
  display: none;
  position: fixed;
  top: 70px; left: 0; right: 0;
  background: var(--mobile-bg);
  backdrop-filter: blur(20px);
  padding: 2rem;
  z-index: 999;
  border-bottom: 1px solid var(--border);
}

.mobile-menu.open { display: block; }

.mobile-menu a {
  display: block;
  color: var(--text);
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
  transition: color 0.3s;
}

.mobile-menu a:hover { color: var(--gold-light); }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  padding: 80px 2rem 40px;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 50% 40%, rgba(192,57,43,0.12) 0%, transparent 65%),
    radial-gradient(ellipse 60% 80% at 20% 80%, rgba(45,106,45,0.08) 0%, transparent 55%),
    radial-gradient(ellipse 50% 50% at 80% 20%, rgba(212,160,23,0.07) 0%, transparent 50%);
  background-color: var(--black);
}

/* Decorative spice dots */
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(212,160,23,0.15) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
}

.hero-logo {
  width: 200px;
  height: auto;
  margin-bottom: 1rem;
  animation: fadeInDown 1s ease both;
  filter: drop-shadow(0 0 30px var(--red-glow));
}

.hero-tagline {
  font-size: 0.78rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.6rem;
  animation: fadeInUp 1s 0.2s ease both;
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 700;
  line-height: 1.05;
  color: #ffffff;
  margin-bottom: 0.5rem;
  animation: fadeInUp 1s 0.3s ease both;
}

.hero-title span {
  color: #ffffff;
}

.hero-subtitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--gold-light);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s 0.4s ease both;
}

.hero-desc {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 520px;
  margin: 0 auto 1.5rem;
  animation: fadeInUp 1s 0.5s ease both;
}

.hero-cta {
  display: inline-flex;
  gap: 1rem;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 1s 0.6s ease both;
}

.btn-primary {
  background: var(--red);
  color: #fff;
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--red);
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
}

.btn-primary:hover {
  background: transparent;
  color: var(--red-bright);
  border-color: var(--red-bright);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  text-decoration: none;
  padding: 0.85rem 2.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 700;
  border: 1px solid var(--gold);
  transition: all 0.3s;
  font-family: 'Lato', sans-serif;
}

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


/* ── SECTION BASE ── */
section { padding: 4rem 2rem; }

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.72rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.8rem;
  display: block;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3.2rem);
  font-weight: 600;
  color: var(--text);
  line-height: 1.2;
  margin-bottom: 1rem;
}

.section-title em {
  color: var(--red-bright);
  font-style: italic;
}

.divider {
  width: 60px;
  height: 2px;
  background: linear-gradient(to right, var(--gold), var(--red));
  margin-bottom: 2rem;
}

/* ── ABOUT ── */
#about { background: var(--black); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.about-visual {
  position: sticky;
  top: 90px;
}

.about-img-frame {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-img-frame::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--red-tint) 0%, transparent 70%);
}

.about-badge {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  width: 120px;
  height: 120px;
  background: var(--red);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 1rem;
}

.about-badge strong {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  color: #fff;
  line-height: 1;
}

.about-badge span {
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

.about-text p {
  color: var(--muted);
  margin-bottom: 1.2rem;
  font-size: 1.05rem;
}

/* ── MENU ── */
#menu { background: var(--black); }

.menu-legend {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  margin-bottom: 2rem;
  padding: 1rem 1.2rem;
  border: 1px solid var(--border);
  background: var(--card);
}

.menu-legend-row {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  font-size: 0.82rem;
  color: var(--muted);
}

.menu-legend-label {
  font-size: 0.78rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}

.menu-legend-sep {
  color: var(--border);
}

.menu-legend-notice {
  flex-direction: column;
  align-items: flex-start;
  gap: 0.2rem;
}

.menu-legend-bullets {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.78rem;
  color: var(--muted);
  font-style: italic;
  padding-left: 1rem;
}

.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid var(--border);
  padding-bottom: 1rem;
}

.tab-btn {
  background: transparent;
  border: 1px solid transparent;
  color: var(--muted);
  padding: 0.35rem 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: 'Lato', sans-serif;
  transition: all 0.3s;
}

.tab-btn:hover {
  color: var(--gold);
  border-color: var(--border);
}

.tab-btn.active {
  background: var(--red);
  color: #fff;
  border-color: var(--red);
}

.menu-panel { display: none; }
.menu-panel.active { display: block; }

.menu-note {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  align-items: center;
  margin-bottom: 1.5rem;
  padding: 0.8rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.menu-note-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
  margin-right: 0.3rem;
}

.menu-note-pill {
  background: rgba(212,160,23,0.08);
  border: 1px solid var(--border);
  color: var(--gold);
  font-size: 0.78rem;
  padding: 0.3rem 0.8rem;
  white-space: nowrap;
}

.menu-category-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 0.4rem;
}

.menu-category-desc {
  font-size: 0.85rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1px;
  margin-bottom: 3rem;
}

.menu-item {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.2rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  transition: background 0.2s;
}

.menu-item:hover { background: var(--dark); }

.menu-item-info { flex: 1; }

.menu-item-name {
  font-size: 0.95rem;
  color: var(--text);
  font-weight: 700;
  margin-bottom: 0.3rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.veg-badge {
  width: 14px;
  height: 14px;
  border: 1.5px solid #2ecc71;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.veg-badge::after {
  content: '';
  width: 6px;
  height: 6px;
  background: #2ecc71;
  border-radius: 50%;
}

.menu-item-desc {
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}

.menu-item-price {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: var(--gold);
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}

/* Curry choice items */
.menu-choice-block {
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  margin-bottom: 1px;
}

.menu-choice-block .price-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin: 0.8rem 0;
}

.price-pill {
  background: rgba(212,160,23,0.1);
  border: 1px solid var(--border);
  padding: 0.3rem 0.8rem;
  font-size: 0.78rem;
  color: var(--gold);
}

.curry-options {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 0.5rem;
  margin-top: 1rem;
}

.curry-opt {
  background: var(--dark);
  padding: 0.6rem 1rem;
  font-size: 0.82rem;
  color: var(--text);
}

.curry-opt span {
  display: block;
  font-size: 0.72rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* ── GALLERY ── */
#gallery { background: var(--dark); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto;
  gap: 8px;
}

.gallery-item {
  background: var(--card);
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--border);
  transition: transform 0.3s;
  cursor: pointer;
}

.gallery-item:nth-child(1) { grid-column: span 2; aspect-ratio: 2/1; }
.gallery-item:nth-child(5) { grid-column: span 2; aspect-ratio: 2/1; }

.gallery-item:hover { transform: scale(0.99); }

.gallery-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  color: var(--muted);
  text-align: center;
  padding: 1rem;
}

.gallery-placeholder .ph-icon {
  font-size: 2.5rem;
  opacity: 0.4;
}

.gallery-placeholder span {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.5;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(192,57,43,0.05) 0%, transparent 60%);
  pointer-events: none;
}

/* ── CONTACT ── */
#contact { background: var(--black); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
}

.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 1.5rem;
}

.contact-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
  align-items: flex-start;
}

.contact-icon {
  width: 42px;
  height: 42px;
  background: var(--red-tint);
  border: 1px solid var(--red-tint-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-block h4 {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.4rem;
}

.contact-block p, .contact-block a {
  color: var(--text);
  font-size: 0.95rem;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}

.contact-block a:hover { color: var(--gold-light); }

.hours-table { width: 100%; border-collapse: collapse; }

.hours-table tr { border-bottom: 1px solid var(--white-line); }

.hours-table td {
  padding: 0.6rem 0;
  font-size: 0.9rem;
  color: var(--text);
}

.hours-table td:last-child {
  text-align: right;
  color: var(--gold);
}

/* Map placeholder */
.map-placeholder {
  width: 100%;
  height: 300px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
}

.map-placeholder::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(212,160,23,0.05) 0%, transparent 70%);
}

.map-placeholder .map-icon { font-size: 3rem; opacity: 0.3; }

/* ── SOCIAL ── */
.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
}

.social-link {
  width: 44px;
  height: 44px;
  background: var(--card);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: var(--muted);
  font-size: 1.1rem;
  transition: all 0.3s;
}

.social-link:hover {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

/* ── FOOTER ── */
footer {
  background: #050505;
  border-top: 1px solid var(--border);
  padding: 2.5rem 2rem;
  text-align: center;
}

.footer-logo {
  height: 60px;
  margin-bottom: 1rem;
  opacity: 0.7;
}

.footer-text {
  font-size: 0.78rem;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin-bottom: 0.4rem;
}

.footer-note {
  font-size: 0.72rem;
  color: rgba(154,136,120,0.5);
  margin-top: 1rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeInDown {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

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

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }
  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-visual { order: -1; }
  .about-badge { bottom: -1rem; right: -0.5rem; width: 90px; height: 90px; }
  .about-badge strong { font-size: 1.5rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 2; }
  .menu-grid { grid-template-columns: 1fr; }
  .about-features { grid-template-columns: 1fr; }
  .hero-logo { width: 150px; }
}

@media (max-width: 480px) {
  section { padding: 4rem 1.2rem; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item:nth-child(1),
  .gallery-item:nth-child(5) { grid-column: span 1; aspect-ratio: 1; }
}
