/* ============================================
   INDIAN HOUSE — Premium Restaurant Website
   Main Stylesheet
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400;1,500&family=Jost:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,700;1,400&display=swap');

/* ---------- CSS Variables ---------- */
:root {
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #A07828;
  --cream: #FAF6EE;
  --cream-dark: #F2EAD8;
  --charcoal: #1A1208;
  --charcoal-mid: #2C2010;
  --charcoal-light: #3D2E18;
  --text-dark: #1A1208;
  --text-mid: #4A3820;
  --text-light: #7A6040;
  --text-cream: #FAF6EE;
  --white: #FFFFFF;
  --shadow-gold: 0 4px 30px rgba(201,168,76,0.25);
  --shadow-dark: 0 8px 40px rgba(0,0,0,0.3);
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --border-gold: 1px solid rgba(201,168,76,0.3);
  --radius: 4px;
  --radius-lg: 12px;
  
  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.06);
  --glass-border: rgba(255, 255, 255, 0.12);
  --glass-blur: blur(12px);
  --glass-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.3);
}

/* Glassmorphism Utility */
.glass {
  background: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--glass-border);
  box-shadow: var(--glass-shadow);
}
.glass-gold {
  background: rgba(201,168,76, 0.1);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid rgba(201,168,76, 0.2);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

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

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

/* ---------- Typography ---------- */
.display-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 8vw, 6rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--white);
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.2;
  color: var(--text-dark);
}

.section-subtitle {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 0.75rem;
}

/* ---------- Decorative Rule ---------- */
.gold-rule {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.gold-rule::before,
.gold-rule::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.gold-rule-icon {
  color: var(--gold);
  font-size: 1.2rem;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.9rem 2.2rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  border-radius: var(--radius);
  position: relative;
  overflow: hidden;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, var(--gold-dark) 100%);
  color: var(--charcoal);
}
.btn-gold:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5);
  color: var(--charcoal);
}

.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: var(--gold);
  color: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.6);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}

/* Glassmorphism Buttons */
.btn-outline-white.glass {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.15);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.btn-gold.glass-gold {
  border: 1px solid rgba(201,168,76,0.3);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* Hero Section Elements */
.hero-google-rating {
  display: flex; align-items: center; gap: 0.8rem;
  padding: 0.6rem 1.25rem; border-radius: 50px;
  margin-bottom: 2.2rem; width: fit-content;
  border: 1px solid rgba(201,168,76,0.25);
  background: rgba(201,168,76, 0.08); /* Subtle gold glass */
}
.hero-google-rating .stars { color: var(--gold); font-size: 0.78rem; letter-spacing: 1px; }
.hero-google-rating strong { font-size: 1.1rem; color: var(--gold-light); font-weight: 700; }
.hero-google-rating .rating-label { font-size: 0.65rem; text-transform: uppercase; letter-spacing: 0.12em; color: rgba(255,255,255,0.6); }

/* Hero Actions & Groups */
.hero-actions { display: flex; align-items: center; gap: 1.5rem; flex-wrap: wrap; margin-top: 3.5rem; }
.hero-btn-group { display: flex; gap: 1rem; }
.hero-icon-group { display: flex; gap: 0.8rem; }

/* ---------- Sections ---------- */
.section {
  padding: 6rem 0;
}
.section-dark {
  background: var(--charcoal);
  color: var(--text-cream);
}
.section-dark .section-title {
  color: var(--cream);
}
.section-cream {
  background: var(--cream-dark);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}
.container-narrow {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* ---------- NAVIGATION ---------- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1100;
  padding: 1.2rem 0;
  transition: var(--transition);
}
.navbar.scrolled {
  background: rgba(26, 18, 8, 0.96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0.7rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  text-decoration: none;
}
.nav-logo-icon {
  width: 48px;
  height: 48px;
  position: relative;
}
.nav-logo-icon svg {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 8px rgba(201,168,76,0.5));
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}
.nav-logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.05em;
}
.nav-logo-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.6rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.8;
}

/* Nav Links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  position: relative;
  padding-bottom: 4px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: var(--transition);
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
}
.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal) !important;
  padding: 0.6rem 1.5rem;
  border-radius: var(--radius);
  font-weight: 600 !important;
}
.nav-cta:hover {
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  transform: translateY(-1px);
}
.nav-cta::after {
  display: none !important;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px; height: 44px;
  cursor: pointer;
  z-index: 1200;
  background: rgba(255,255,255,0.05);
  border: none;
  border-radius: 50%;
  transition: var(--transition);
}
.hamburger:hover { background: rgba(255,255,255,0.1); }
.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  display: block; width: 28px; height: 2px;
  background: var(--gold); border-radius: 2px;
  position: relative; transition: var(--transition);
}
.hamburger span::before,
.hamburger span::after {
  content: ''; position: absolute; left: 0;
  width: 100%; height: 2px; background: var(--gold); border-radius: 2px;
  transition: var(--transition);
}
.hamburger span::before { top: -8px; }
.hamburger span::after { top: 8px; }

.hamburger.active span { background: transparent; }
.hamburger.active span::before { transform: rotate(45deg); top: 0; background: var(--gold-light); }
.hamburger.active span::after { transform: rotate(-45deg); top: 0; background: var(--gold-light); }

/* Premium Mobile Menu Overlay */
.mobile-menu {
  position: fixed; top: 0; left: 0; width: 100%; height: 100vh;
  background: var(--charcoal); display: flex; flex-direction: column;
  align-items: center; justify-content: center; z-index: 1000;
  transform: translateX(100%); transition: transform 0.6s cubic-bezier(0.77, 0, 0.175, 1);
  padding: 2rem;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu a {
  font-family: 'Cormorant Garamond', serif; font-size: 2.2rem;
  color: var(--white); margin: 1.25rem 0; opacity: 0; transform: translateY(20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.mobile-menu.active a { opacity: 1; transform: translateY(0); }
/* Staggered text reveal */
.mobile-menu.active a:nth-child(1) { transition-delay: 0.1s; }
.mobile-menu.active a:nth-child(2) { transition-delay: 0.2s; }
.mobile-menu.active a:nth-child(3) { transition-delay: 0.3s; }
.mobile-menu.active a:nth-child(4) { transition-delay: 0.4s; }
.mobile-menu.active a:nth-child(5) { transition-delay: 0.5s; }
.mobile-menu.active a:nth-child(6) { transition-delay: 0.6s; }
.mobile-menu a:hover {
  color: var(--gold);
}

/* ---------- HERO SECTION ---------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-spices.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 12s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1.05); }
  to { transform: scale(1.12); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(26,18,8,0.82) 0%,
    rgba(26,18,8,0.55) 60%,
    rgba(44,32,16,0.3) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
  padding-top: 5rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  opacity: 0;
  animation: fadeUp 0.8s forwards 0.3s;
}
.hero-badge-line {
  width: 40px;
  height: 1px;
  background: var(--gold);
}
.hero-badge-text {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--gold-light);
}

.hero-title-block {
  opacity: 0;
  animation: fadeUp 0.9s forwards 0.5s;
}
.hero-subtitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1rem, 2vw, 1.3rem);
  font-style: italic;
  color: rgba(250,246,238,0.75);
  margin-top: 1rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.5rem;
  opacity: 0;
  animation: fadeUp 0.9s forwards 0.8s;
}

.hero-scroll {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  z-index: 2;
  opacity: 0;
  animation: fadeUp 0.9s forwards 1.2s;
  cursor: pointer;
}
.hero-scroll-text {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.hero-scroll-line {
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollLine 1.5s ease-in-out infinite;
}
@keyframes scrollLine {
  0%, 100% { opacity: 0.3; transform: scaleY(0.7); }
  50% { opacity: 1; transform: scaleY(1); }
}

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

/* ---------- INTRO SECTION ---------- */
.intro-section {
  padding: 7rem 0;
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.intro-image-wrap {
  position: relative;
}
.intro-image-main {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.intro-image-badge {
  position: absolute;
  bottom: -2rem;
  right: -2rem;
  width: 120px;
  height: 120px;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  box-shadow: var(--shadow-gold);
}
.intro-image-badge-num {
  font-size: 2rem;
  font-weight: 700;
  color: var(--charcoal);
  line-height: 1;
}
.intro-image-badge-text {
  font-size: 0.55rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--charcoal);
  text-align: center;
  line-height: 1.3;
}

.intro-text .section-label {
  margin-bottom: 0.5rem;
}
.intro-text .section-title {
  margin-bottom: 1.5rem;
}
.intro-text p {
  color: var(--text-mid);
  font-size: 1rem;
  margin-bottom: 1.2rem;
}
.intro-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 2rem 0;
}
.intro-feature {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.intro-feature-icon {
  width: 36px;
  height: 36px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}
.intro-feature-text h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 0.15rem;
}
.intro-feature-text p {
  font-size: 0.82rem;
  color: var(--text-light);
  margin: 0;
}

/* ---------- FEATURED DISHES ---------- */
.dishes-section {
  padding: 7rem 0;
  background: var(--charcoal);
}
.dishes-section .section-title {
  color: var(--cream);
}
.section-header {
  text-align: center;
  margin-bottom: 4rem;
}
.section-header .section-label {
  display: inline-block;
  margin-bottom: 0.75rem;
}
.section-header p {
  max-width: 540px;
  margin: 1rem auto 0;
  color: rgba(250,246,238,0.6);
}

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

.dish-card {
  background: var(--charcoal-mid);
  border: var(--border-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}
.dish-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-gold);
  border-color: var(--gold);
}
.dish-card-img-wrap {
  height: 240px;
  overflow: hidden;
  position: relative;
}
.dish-card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dish-card:hover .dish-card-img-wrap img {
  transform: scale(1.08);
}
.dish-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
}
.dish-card-body {
  padding: 1.5rem;
}
.dish-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 0.5rem;
}
.dish-card-body p {
  font-size: 0.85rem;
  color: rgba(250,246,238,0.55);
  margin-bottom: 1.2rem;
  line-height: 1.6;
}
.dish-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--gold);
}

/* ---------- REVIEWS SECTION ---------- */
.reviews-section {
  padding: 7rem 0;
  background: var(--cream-dark);
}
.reviews-header {
  text-align: center;
  margin-bottom: 4rem;
}
.google-rating {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  margin-top: 1.5rem;
  padding: 0.8rem 1.5rem;
  background: var(--white);
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.google-rating-img {
  height: 20px;
}
.stars {
  display: flex;
  gap: 2px;
  color: #FBBC04;
  font-size: 1rem;
}
.google-rating-text {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-mid);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  transition: var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.12);
}
.review-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  color: rgba(201,168,76,0.15);
  line-height: 1;
}
.review-stars {
  display: flex;
  gap: 3px;
  color: #FBBC04;
  font-size: 0.9rem;
  margin-bottom: 1rem;
}
.review-text {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.review-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  flex-shrink: 0;
}
.review-author-info h4 {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-dark);
  margin-bottom: 0.1rem;
}
.review-author-info span {
  font-size: 0.75rem;
  color: var(--text-light);
}
.review-google-icon {
  margin-left: auto;
  font-size: 1.2rem;
  opacity: 0.5;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
  padding: 7rem 0;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-inner .section-title {
  color: var(--cream);
  margin-bottom: 1rem;
}
.cta-inner p {
  color: rgba(250,246,238,0.6);
  max-width: 480px;
  margin: 0 auto 2.5rem;
}
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ---------- FOOTER ---------- */
.footer {
  background: #0E0B04;
  color: rgba(250,246,238,0.7);
  padding: 5rem 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 4rem;
  margin-bottom: 4rem;
}
.footer-brand-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 0.25rem;
}
.footer-brand-sub {
  font-size: 0.65rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  opacity: 0.65;
  margin-bottom: 1.2rem;
}
.footer-brand p {
  font-size: 0.88rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
}
.footer-social-link {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(201,168,76,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  color: rgba(250,246,238,0.5);
  transition: var(--transition);
}
.footer-social-link:hover {
  background: var(--gold);
  color: var(--charcoal);
  border-color: var(--gold);
}

.footer-col h4 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 1.2rem;
  position: relative;
  padding-bottom: 0.75rem;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 32px;
  height: 1px;
  background: var(--gold);
}
.footer-col ul li {
  margin-bottom: 0.6rem;
}
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(250,246,238,0.55);
  transition: var(--transition);
}
.footer-col ul li a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
  font-size: 0.87rem;
}
.footer-contact-icon {
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-hours-row {
  display: flex;
  justify-content: space-between;
  font-size: 0.82rem;
  margin-bottom: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid rgba(201,168,76,0.08);
}
.footer-hours-day {
  color: rgba(250,246,238,0.5);
}
.footer-hours-time {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(201,168,76,0.1);
  padding: 2rem 0;
}
.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom-left {
  font-size: 0.8rem;
  color: rgba(250,246,238,0.35);
}
.footer-partners {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-partner {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  color: rgba(250,246,238,0.4);
  transition: var(--transition);
}
.dd-logo { height: 26px !important; }
.sipo-logo { height: 44px !important; }
.footer-partner:hover {
  color: rgba(250,246,238,0.7);
}
.footer-partner img {
  height: 32px;
  width: auto;
  opacity: 0.55;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}
.footer-partner:hover img {
  opacity: 0.85;
}

/* ---------- PAGE HEADERS ---------- */
.page-header {
  height: 45vh;
  min-height: 380px;
  background: var(--charcoal);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.page-header-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-spices.png');
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.page-header-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26,18,8,0.85), rgba(26,18,8,0.7));
}
.page-header-content {
  position: relative;
  z-index: 1;
  text-align: center;
}
.page-header-content .section-label {
  margin-bottom: 0.75rem;
}
.page-header-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 500;
  color: var(--cream);
  letter-spacing: -0.02em;
}
.breadcrumb {
  margin-top: 1rem;
  font-size: 0.8rem;
  color: rgba(250,246,238,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.breadcrumb a {
  color: rgba(250,246,238,0.4);
}
.breadcrumb a:hover {
  color: var(--gold);
}
.breadcrumb span {
  color: var(--gold);
}

/* Hero Icon Buttons (Circle) */
.hero-icon-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem; 
  background: var(--gold);
  color: var(--charcoal);
  box-shadow: 0 5px 20px rgba(201,168,76,0.3);
  transition: var(--transition);
}
.hero-icon-btn:hover {
  background: var(--gold-light);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(201,168,76,0.6);
  color: var(--charcoal);
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ---------- FLOATING ORDER BUTTON ---------- */
.float-order {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--charcoal);
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.8rem 1.5rem;
  border-radius: 50px;
  box-shadow: 0 4px 20px rgba(201,168,76,0.5);
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: var(--transition);
  animation: floatPulse 2.5s ease-in-out infinite;
}
.float-order:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 30px rgba(201,168,76,0.65);
  color: var(--charcoal);
}
@keyframes floatPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(201,168,76,0.5); }
  50% { box-shadow: 0 4px 30px rgba(201,168,76,0.75); }
}

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

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
  .intro-grid { grid-template-columns: 1fr; gap: 3rem; }
  .intro-image-badge { bottom: -1rem; right: 1rem; }
  .dishes-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }

  .hero-content { padding: 0 2rem; }
  .display-title { font-size: 4.5rem; }
}

@media (max-width: 768px) {
  .nav-links li:not(:last-child) { display: none; }
  .nav-links { display: flex !important; gap: 0.75rem; }
  .nav-cta { padding: 0.5rem 0.8rem; font-size: 0.65rem; }
  .navbar-inner { padding: 0 1rem; }
  .hamburger { display: flex; width: 40px; height: 40px; }
  .mobile-menu { display: flex; }
  .container { padding: 0 1rem; }

  .dishes-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .footer-partners { justify-content: center; }

  .section { padding: 4rem 0; }
  .intro-features { grid-template-columns: 1fr; }
  .hero-actions { 
    flex-direction: column; align-items: center; 
    text-align: center; width: 100%; max-width: 400px; margin: 3rem auto 0;
  }
  .hero-btn-group { flex-direction: column; width: 100%; gap: 1rem; }
  .hero-btn-group .btn { width: 100%; justify-content: center; }
  .hero-icon-group { 
    display: flex; justify-content: center; gap: 1.25rem; 
    margin-top: 1.5rem; width: 100%;
  }
  .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .container { padding: 0 1.25rem; }
  .hero-content { padding: 0 1.25rem; }
}
