/* =============================================
   BOLLYWOOD TADKA — Global Styles
   ============================================= */

:root {
  --gold:        #D4A017;
  --gold-light:  #F0C040;
  --maroon:      #8B1A1A;
  --black:       #0D0D0D;
  --cream:       #FDF6EC;
  --sand:        #F5E6CC;
  --spice:       #E85D04;
  --text-dark:   #1A1A1A;
  --text-muted:  #6B5C4C;
  --white:       #FFFFFF;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  color: var(--text-dark);
  background: var(--cream);
  overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

img { max-width: 100%; display: block; }

a { text-decoration: none; color: inherit; }

/* ---- ANNOUNCEMENT BAR ---- */
.announcement-bar {
  background: var(--black);
  color: var(--gold);
  font-size: 0.78rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.04em;
  overflow: hidden;
  white-space: nowrap;
  height: 36px;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1000;
}

.announcement-bar .marquee-track {
  display: inline-flex;
  animation: marqueeScroll 35s linear infinite;
  white-space: nowrap;
}

.announcement-bar .marquee-track span {
  padding: 0 2rem;
}

@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- NAVIGATION ---- */
.navbar {
  position: sticky;
  top: 36px;
  z-index: 999;
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(212, 160, 23, 0.2);
}

.navbar.shrunk {
  top: 0;
  backdrop-filter: blur(12px);
  background: rgba(13, 13, 13, 0.88);
}

.navbar .nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.nav-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  line-height: 1;
  gap: 2px;
}

.nav-logo .logo-stars {
  color: var(--gold);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
}

.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.05em;
  border: 1px solid var(--gold);
  padding: 2px 10px;
  white-space: nowrap;
}

.nav-logo .logo-sub {
  font-size: 0.6rem;
  color: rgba(212, 160, 23, 0.7);
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* Nav Links */
.nav-links {
  display: none;
  list-style: none;
  gap: 0.1rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .nav-links { display: flex; }
}

.nav-links a {
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  font-family: 'Lato', sans-serif;
  letter-spacing: 0.03em;
  padding: 0.4rem 0.65rem;
  position: relative;
  transition: color 0.2s;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 50%;
  width: 0; height: 2px;
  background: var(--gold);
  transform: translateX(-50%);
  transition: width 0.25s ease;
}

.nav-links a:hover,
.nav-links a.active { color: var(--gold); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 80%; }

/* Nav Right */
.nav-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.lang-toggle {
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  cursor: pointer;
  display: none;
}

@media (min-width: 768px) {
  .lang-toggle { display: flex; align-items: center; gap: 0.25rem; }
}

.btn-reserve {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--gold);
  border: 1.5px solid var(--gold);
  padding: 0.45rem 1rem;
  border-radius: 4px;
  transition: all 0.25s ease;
  white-space: nowrap;
}

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

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

@media (min-width: 1024px) {
  .hamburger { display: none; }
}

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

/* Mobile overlay */
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--black);
  z-index: 9999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  opacity: 0;
  transition: opacity 0.3s;
}

.mobile-menu.open {
  display: flex;
  opacity: 1;
}

.mobile-menu a {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  transition: color 0.2s;
}

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

.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--gold);
  font-size: 2rem;
  cursor: pointer;
}

.mobile-menu .btn-reserve {
  font-size: 1rem;
  padding: 0.6rem 1.5rem;
  margin-top: 1rem;
}

/* ---- BUTTONS ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.25s ease;
  text-align: center;
}

.btn:hover { transform: scale(1.04); }

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

.btn-gold:hover {
  background: var(--gold-light);
  border-color: 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-outline-white {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
}

.btn-dark {
  background: var(--black);
  color: var(--white);
  border-color: var(--black);
}

.btn-dark:hover {
  background: #222;
}

.btn-spice {
  background: var(--spice);
  color: var(--white);
  border-color: var(--spice);
}

/* ---- CONTAINERS ---- */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section-pad { padding: 5rem 0; }

/* ---- SECTION LABELS ---- */
.section-label {
  display: block;
  font-family: 'Lato', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
}

/* ---- GOLD DIVIDER ---- */
.gold-divider {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 1.25rem 0;
}

.gold-divider::before,
.gold-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--gold);
  opacity: 0.4;
}

.gold-divider span { color: var(--gold); font-size: 0.8rem; }

.gold-divider.centered {
  justify-content: center;
  max-width: 300px;
  margin: 1.25rem auto;
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/1920/1080?random=10');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(13,13,13,0.55) 0%, rgba(139,26,26,0.75) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 2rem 1.5rem;
  max-width: 900px;
}

.hero-tag {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 1.25rem;
  display: block;
}

.hero h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.hero h1 .shimmer-text {
  display: block;
  color: var(--gold);
}

.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.25rem;
  color: rgba(253, 246, 236, 0.9);
  margin-bottom: 2rem;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.google-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 1.25rem;
  border-radius: 999px;
}

.google-badge .stars { color: #FFD700; }

.scroll-indicator {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: rgba(255,255,255,0.6);
  font-size: 1.5rem;
  animation: bounce 2s infinite;
}

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

/* ---- PHILOSOPHY SECTION ---- */
.philosophy-section {
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.mandala-bg {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 600px; height: 600px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 0;
}

.philosophy-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}

@media (min-width: 768px) {
  .philosophy-grid { grid-template-columns: 1fr 1fr; align-items: center; }
}

.philosophy-left h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--text-dark);
}

.philosophy-left p {
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 1rem;
}

.feature-card {
  background: var(--white);
  border-radius: 10px;
  padding: 1.5rem;
  border-left: 4px solid var(--gold);
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(212,160,23,0.15);
}

.feature-card .icon {
  font-size: 2rem;
  flex-shrink: 0;
  line-height: 1;
}

.feature-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.4rem;
  color: var(--text-dark);
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ---- SIGNATURE DISHES ---- */
.dishes-section {
  background: var(--sand);
}

.indian-border-top {
  height: 8px;
  background: repeating-linear-gradient(90deg, var(--gold) 0px, var(--gold) 10px, transparent 10px, transparent 16px, var(--maroon) 16px, var(--maroon) 22px, transparent 22px, transparent 28px);
  margin-bottom: 0;
}

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

.section-header h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--text-dark);
  margin-bottom: 0.5rem;
}

.dishes-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}

@media (min-width: 640px) {
  .dishes-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (min-width: 1024px) {
  .dishes-grid { grid-template-columns: repeat(5, 1fr); }
}

.dish-card {
  text-align: center;
  cursor: pointer;
}

.dish-card .dish-img-wrap {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 1rem;
  border: 3px solid var(--gold);
  box-shadow: 0 0 0 5px rgba(212,160,23,0.15);
  transition: all 0.3s;
}

@media (min-width: 768px) {
  .dish-card .dish-img-wrap { width: 180px; height: 180px; }
}

.dish-card:hover .dish-img-wrap {
  box-shadow: 0 0 0 5px var(--gold);
  transform: translateY(-6px);
}

.dish-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.dish-card:hover img { transform: scale(1.08); }

.dish-card h3 {
  font-size: 0.95rem;
  letter-spacing: 0.05em;
  color: var(--text-dark);
  margin-bottom: 0.35rem;
  text-transform: uppercase;
}

.dish-badge {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: 999px;
  margin-bottom: 0.4rem;
}

.badge-veg   { background: #e6f4ea; color: #2d7a3a; border: 1px solid #2d7a3a; }
.badge-nonveg { background: #fde8e8; color: #c0392b; border: 1px solid #c0392b; }

.dish-card p {
  font-size: 0.8rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.dishes-desc {
  max-width: 700px;
  margin: 2.5rem auto 0;
  text-align: center;
  color: var(--text-muted);
  line-height: 1.8;
  font-size: 0.98rem;
}

.dishes-cta { text-align: center; margin-top: 2rem; }

/* ---- MEET CHEF ---- */
.chef-section {
  background: var(--black);
  position: relative;
  overflow: hidden;
}

.chef-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(139,26,26,0.15) 0%, transparent 70%);
  pointer-events: none;
}

.chef-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

@media (min-width: 768px) {
  .chef-grid { grid-template-columns: 1fr 1fr; }
}

.chef-img-wrap {
  position: relative;
}

.chef-img-wrap img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border: 4px solid var(--gold);
  border-radius: 4px;
}

.chef-badge {
  position: absolute;
  bottom: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--black);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  white-space: nowrap;
}

.chef-right { color: var(--white); }

.chef-right h2 {
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  color: var(--gold);
  margin-bottom: 1rem;
}

.chef-bio {
  color: rgba(255,255,255,0.8);
  line-height: 1.85;
  font-size: 0.98rem;
  margin-bottom: 1.75rem;
}

.chef-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 1.75rem;
}

.chef-pill {
  background: rgba(212,160,23,0.12);
  border: 1px solid rgba(212,160,23,0.3);
  color: rgba(255,255,255,0.9);
  font-size: 0.8rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.chef-link {
  color: var(--gold);
  font-weight: 700;
  font-size: 0.95rem;
  border-bottom: 1px solid rgba(212,160,23,0.4);
  padding-bottom: 2px;
  transition: all 0.2s;
}

.chef-link:hover {
  border-color: var(--gold);
  text-shadow: 0 0 8px rgba(212,160,23,0.4);
}

/* ---- CHEF SPECIAL ---- */
.chef-special-section {
  background: var(--maroon);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.chef-special-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.3), transparent);
  pointer-events: none;
}

.chef-special-section .container { position: relative; z-index: 1; }

.chef-special-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: var(--white);
  margin-bottom: 1rem;
}

.chef-special-section p {
  max-width: 600px;
  margin: 0 auto 2.5rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.8;
}

.chef-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
  .chef-features { grid-template-columns: repeat(3, 1fr); }
}

.chef-feature-item {
  color: var(--white);
  text-align: center;
}

.chef-feature-item .feat-icon { font-size: 2.5rem; margin-bottom: 0.5rem; display: block; }
.chef-feature-item h4 { font-size: 1.05rem; margin-bottom: 0.3rem; color: var(--gold); }
.chef-feature-item p { font-size: 0.85rem; color: rgba(255,255,255,0.75); }

/* ---- REWARDS ---- */
.rewards-section {
  background: linear-gradient(135deg, #D4A017, #F0C040, #D4A017);
  text-align: center;
}

.rewards-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--black);
  margin-bottom: 0.5rem;
}

.rewards-section .rewards-sub {
  font-size: 1.1rem;
  color: rgba(0,0,0,0.7);
  margin-bottom: 0.75rem;
}

.rewards-section .rewards-desc {
  max-width: 560px;
  margin: 0 auto 2.5rem;
  color: rgba(0,0,0,0.65);
  line-height: 1.7;
}

.tier-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

@media (min-width: 640px) {
  .tier-cards { grid-template-columns: repeat(3, 1fr); }
}

.tier-card {
  background: var(--white);
  border-radius: 14px;
  padding: 1.75rem 1.25rem;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12);
  text-align: center;
  position: relative;
  transition: transform 0.3s;
}

.tier-card:hover { transform: translateY(-6px); }

.tier-card.popular { transform: scale(1.05); }
.tier-card.popular:hover { transform: scale(1.05) translateY(-6px); }

.tier-card .popular-badge {
  position: absolute;
  top: -12px; left: 50%;
  transform: translateX(-50%);
  background: var(--spice);
  color: var(--white);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 999px;
  white-space: nowrap;
}

.tier-card .tier-icon { font-size: 2.5rem; margin-bottom: 0.5rem; display: block; }
.tier-card h3 { font-size: 1.3rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.tier-card p { font-size: 0.85rem; color: var(--text-muted); line-height: 1.6; }

/* ---- INSTAGRAM ---- */
.instagram-section {
  background: var(--cream);
  text-align: center;
}

.instagram-section h2 {
  font-size: clamp(1.7rem, 3vw, 2.3rem);
  margin-bottom: 0.4rem;
}

.instagram-handle {
  font-family: 'Playfair Display', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gold);
  margin-bottom: 2rem;
  display: block;
}

.insta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  max-width: 800px;
  margin: 0 auto 2rem;
}

.insta-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}

.insta-cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}

.insta-cell:hover img { transform: scale(1.06); }

.insta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(212,160,23,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
  font-size: 2rem;
  color: var(--white);
  opacity: 0;
}

.insta-cell:hover .insta-overlay {
  background: rgba(212,160,23,0.45);
  opacity: 1;
}

/* ---- REVIEWS ---- */
.reviews-section {
  background: var(--black);
  text-align: center;
}

.reviews-section h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.5rem);
  color: var(--white);
  margin-bottom: 0.5rem;
}

.rating-big {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.rating-big .score {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  color: var(--gold);
  font-weight: 700;
  line-height: 1;
}

.rating-big .stars { color: #FFD700; font-size: 1.5rem; }

.reviews-sub { color: rgba(255,255,255,0.6); margin-bottom: 2.5rem; font-size: 0.9rem; }

.reviews-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

.review-card {
  background: var(--white);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: left;
  position: relative;
}

.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.reviewer-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.reviewer-name { font-weight: 700; font-size: 0.95rem; color: var(--text-dark); }
.review-stars { color: #FFD700; font-size: 0.85rem; }
.review-quote { font-style: italic; font-size: 0.88rem; color: var(--text-muted); line-height: 1.7; }

.google-icon {
  position: absolute;
  bottom: 1rem; right: 1rem;
  font-size: 0.7rem;
  color: #4285F4;
  font-weight: 700;
  letter-spacing: 0.05em;
}

/* ---- CONTACT / MAP ---- */
.contact-section {
  background: #111111;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: stretch;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-left h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.6;
}

.contact-item .ci-icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 2px; }

.contact-item a {
  color: rgba(255,255,255,0.85);
  transition: color 0.2s;
}

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

.hours-card {
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.hours-card h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.hours-row:last-child { border-bottom: none; }

.social-row {
  display: flex;
  gap: 1rem;
  margin-top: 1.25rem;
}

.social-icon {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1.5px solid rgba(212,160,23,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.6);
  font-size: 0.85rem;
  font-weight: 700;
  transition: all 0.25s;
  text-decoration: none;
}

.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: scale(1.1);
}

.map-wrap {
  height: 100%;
  min-height: 400px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid rgba(212,160,23,0.3);
}

.map-wrap iframe {
  width: 100%; height: 100%;
  min-height: 400px;
  display: block;
  filter: grayscale(20%);
}

/* ---- FOOTER ---- */
footer {
  background: var(--black);
  border-top: 1px solid rgba(212,160,23,0.25);
  padding: 3.5rem 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 640px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .footer-grid { grid-template-columns: 1.5fr 1fr 1.5fr; }
}

.footer-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  border: 1px solid var(--gold);
  display: inline-block;
  padding: 3px 12px;
  margin-bottom: 0.75rem;
}

.footer-tagline {
  color: rgba(255,255,255,0.5);
  font-size: 0.85rem;
  line-height: 1.6;
  margin-bottom: 1.25rem;
}

.footer-social { display: flex; gap: 0.75rem; }

.footer-col h4 {
  color: var(--gold);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  font-family: 'Lato', sans-serif;
  font-weight: 700;
}

.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }

.footer-links a {
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  transition: color 0.2s;
}

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

.footer-contact-item {
  display: flex;
  gap: 0.6rem;
  color: rgba(255,255,255,0.65);
  font-size: 0.85rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  border-top: 1px solid rgba(212,160,23,0.2);
  padding: 1.25rem 0;
  text-align: center;
  color: rgba(255,255,255,0.4);
  font-size: 0.78rem;
}

.footer-bottom a {
  color: rgba(255,255,255,0.4);
  transition: color 0.2s;
}

.footer-bottom a:hover { color: var(--gold); }

/* ---- PAGE HERO (inner pages) ---- */
.page-hero {
  background: var(--maroon);
  padding: 5rem 1.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.4), transparent);
  pointer-events: none;
}

.page-hero .container { position: relative; z-index: 1; }

.page-hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--gold);
  margin-bottom: 0.75rem;
}

.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  max-width: 560px;
  margin: 0 auto;
}

/* ---- MENU PAGE ---- */
.menu-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  padding: 2rem 1rem 0;
}

.tab-btn {
  background: transparent;
  border: 1.5px solid rgba(212,160,23,0.35);
  color: var(--text-muted);
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s;
}

.tab-btn:hover, .tab-btn.active {
  background: var(--gold);
  color: var(--black);
  border-color: var(--gold);
}

.tab-content { display: none; padding: 2.5rem 0; }
.tab-content.active { display: block; }

.menu-items-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  max-width: 900px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .menu-items-grid { grid-template-columns: repeat(2, 1fr); }
}

.menu-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border-radius: 10px;
  padding: 1rem 1.25rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: box-shadow 0.25s;
}

.menu-item:hover { box-shadow: 0 4px 24px rgba(212,160,23,0.15); }

.menu-item img {
  width: 72px; height: 72px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.menu-item-info { flex: 1; }
.menu-item-info h4 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text-dark); }
.menu-item-info p { font-size: 0.82rem; color: var(--text-muted); line-height: 1.5; margin-bottom: 0.4rem; }
.menu-item-footer { display: flex; justify-content: space-between; align-items: center; }
.menu-price { font-weight: 700; color: var(--gold); font-size: 0.95rem; }

.menu-download {
  background: var(--black);
  padding: 4rem 0;
  text-align: center;
}

.menu-download h3 { color: var(--white); margin-bottom: 1.25rem; font-size: 1.5rem; }

.menu-download-btns {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.25rem;
}

.menu-note {
  color: rgba(255,255,255,0.5);
  font-style: italic;
  font-size: 0.85rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ---- EVENTS PAGE ---- */
.events-hero {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.events-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/1920/700?random=30');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.events-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.65);
  z-index: 1;
}

.events-hero .container { position: relative; z-index: 2; }

.events-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  color: var(--white);
  margin-bottom: 0.75rem;
}

.events-hero p {
  color: rgba(255,255,255,0.8);
  font-style: italic;
  font-size: 1.1rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .events-grid { grid-template-columns: repeat(3, 1fr); }
}

.event-card {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
}

.event-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(212,160,23,0.2);
}

.event-card img { width: 100%; height: 220px; object-fit: cover; }

.event-card-body { padding: 1.5rem; }

.event-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--black);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 3px 12px;
  border-radius: 999px;
  margin-bottom: 0.75rem;
}

.event-card-body h3 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--text-dark); }
.event-card-body p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }

/* ---- PARTY/CATERING ---- */
.catering-hero {
  min-height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.catering-hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://picsum.photos/1920/700?random=50');
  background-size: cover;
  background-position: center;
  z-index: 0;
}

.catering-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(13,13,13,0.65);
  z-index: 1;
}

.catering-hero .container { position: relative; z-index: 2; }
.catering-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); color: var(--white); margin-bottom: 0.75rem; }
.catering-hero p { color: rgba(255,255,255,0.8); font-style: italic; font-size: 1.1rem; }

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

@media (min-width: 768px) {
  .catering-grid { grid-template-columns: 1fr 1fr; }
}

.catering-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}

.catering-gallery img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: 8px;
}

.catering-right h2 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  margin-bottom: 1rem;
  color: var(--text-dark);
}

.catering-right p {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.catering-list { list-style: none; margin-bottom: 1.5rem; }

.catering-list li {
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
  color: var(--text-muted);
  font-size: 0.93rem;
  margin-bottom: 0.6rem;
  line-height: 1.5;
}

.catering-list li::before { content: '✦'; color: var(--gold); flex-shrink: 0; margin-top: 2px; }

/* Contact Form */
.contact-form {
  background: var(--sand);
  border-radius: 12px;
  padding: 2rem;
  margin-top: 3rem;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.contact-form h3 { font-size: 1.4rem; margin-bottom: 1.5rem; color: var(--text-dark); }

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

@media (min-width: 640px) {
  .form-grid { grid-template-columns: 1fr 1fr; }
  .form-grid .full { grid-column: 1 / -1; }
}

.form-group { display: flex; flex-direction: column; gap: 0.3rem; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.7rem 1rem;
  border: 1.5px solid rgba(107,92,76,0.2);
  border-radius: 6px;
  font-family: 'Lato', sans-serif;
  font-size: 0.92rem;
  background: var(--white);
  color: var(--text-dark);
  transition: border-color 0.2s;
  outline: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--gold); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-note {
  font-size: 0.78rem;
  color: var(--text-muted);
  font-style: italic;
  margin-top: 0.75rem;
  text-align: center;
}

/* ---- CHEF STORY ---- */
.chef-story-hero {
  display: grid;
  grid-template-columns: 1fr;
  min-height: 50vh;
}

@media (min-width: 768px) {
  .chef-story-hero { grid-template-columns: 1fr 1fr; min-height: 60vh; }
}

.chef-story-hero-img {
  background-image: url('../assets/images/chef-disha.png');
  background-size: cover;
  background-position: top center;
  min-height: 350px;
}

.chef-story-hero-right {
  background: var(--black);
  display: flex;
  align-items: center;
  padding: 3rem 2rem;
}

.chef-story-hero-right h1 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.75rem;
}

.chef-story-hero-right .chef-name {
  color: var(--white);
  font-size: clamp(1.4rem, 3vw, 2rem);
  font-family: 'Playfair Display', serif;
  margin-bottom: 0.4rem;
}

.chef-story-hero-right .chef-role {
  color: rgba(255,255,255,0.5);
  font-style: italic;
}

.story-content {
  max-width: 780px;
  margin: 0 auto;
}

.story-section { margin-bottom: 2.5rem; }

.story-section h3 {
  font-size: 1.4rem;
  color: var(--text-dark);
  border-left: 4px solid var(--gold);
  padding-left: 1rem;
  margin-bottom: 1rem;
}

.story-section p {
  color: var(--text-muted);
  line-height: 1.9;
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.story-blockquote {
  border-left: 4px solid var(--gold);
  background: var(--cream);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  border-radius: 0 8px 8px 0;
}

.story-blockquote p {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: var(--maroon);
  line-height: 1.5;
  margin: 0;
  font-style: normal;
}

/* ---- REWARDS PAGE ---- */
.rewards-how {
  background: var(--cream);
}

.steps-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  max-width: 800px;
  margin: 0 auto;
}

@media (min-width: 640px) {
  .steps-row { grid-template-columns: repeat(3, 1fr); }
}

.step-item { text-align: center; }

.step-number {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 0.75rem;
  font-family: 'Playfair Display', serif;
}

.step-item .step-icon { font-size: 2rem; margin-bottom: 0.5rem; display: block; }
.step-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; color: var(--text-dark); }
.step-item p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; }

/* ---- CHEF SPECIAL CALENDAR ---- */
.calendar-placeholder {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  max-width: 500px;
  margin: 0 auto 1.5rem;
}

.calendar-placeholder h4 {
  text-align: center;
  font-size: 1.2rem;
  color: var(--text-dark);
  margin-bottom: 1rem;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  padding-bottom: 0.75rem;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  text-align: center;
}

.cal-day-header {
  font-size: 0.65rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  padding: 4px 0;
}

.cal-day {
  font-size: 0.82rem;
  padding: 6px 2px;
  border-radius: 6px;
  color: var(--text-dark);
  cursor: default;
}

.cal-day.special {
  background: var(--gold);
  color: var(--black);
  font-weight: 700;
  cursor: pointer;
}

.cal-day.empty { opacity: 0; }

/* ---- UTILITY ---- */
.text-gold { color: var(--gold); }
.text-center { text-align: center; }
.mt-2 { margin-top: 2rem; }
.mb-2 { margin-bottom: 2rem; }

/* Page-level top offset when announcement bar is present */
.page-top { padding-top: 0; }
