/* ============================================
   HOME PAGE STYLES
   ============================================ */

/* ── HERO ── */
.hero-section {
  position: relative;
  height: 100vh;
  min-height: 640px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center;
  will-change: transform;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, rgba(30,10,0,0.82) 0%, rgba(59,32,5,0.65) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 0 24px;
  max-width: 780px;
}
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(44px, 7vw, 88px);
  font-weight: 600;
  color: #fff;
  line-height: 1.08;
  margin-bottom: 24px;
}
.hero-title em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  color: rgba(255,255,255,0.7);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.7;
  max-width: 520px;
  margin: 0 auto 36px;
}
.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.hero-badges {
  display: flex;
  gap: 24px;
  justify-content: center;
  flex-wrap: wrap;
}
.hero-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
}
.hero-badge span { font-size: 16px; }
.hero-scroll-hint {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: scrollBounce 2s infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ── FEATURE STRIP ── */
.feature-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--border);
}
.feature-item {
  padding: 40px 32px;
  border-right: 1px solid var(--border);
  text-align: center;
  transition: background 0.2s;
}
.feature-item:last-child { border-right: none; }
.feature-item:hover { background: var(--gold-pale); }
.feature-icon { font-size: 28px; margin-bottom: 12px; }
.feature-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 8px;
}
.feature-item p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  font-weight: 300;
}

/* ── SIGNATURE DISHES ── */
.signature-section {
  padding: 96px 48px;
  background: var(--cream);
}
.signature-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 64px;
  align-items: start;
}
.signature-intro { position: sticky; top: 100px; }
.signature-sub {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  font-weight: 300;
  margin-top: 16px;
}
.signature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.dish-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}
.dish-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(59,32,5,0.1);
}
.dish-img-wrap {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}
.dish-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.dish-card:hover .dish-img-wrap img { transform: scale(1.04); }
.dish-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--gold);
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 2px;
  font-weight: 500;
}
.dish-info { padding: 20px; }
.dish-info h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--brown-dark);
  margin-bottom: 6px;
}
.dish-info p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.65;
  font-weight: 300;
}
.dish-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 14px;
}
.dish-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--gold);
}
.dish-tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 2px;
  font-weight: 500;
}
.dish-tag.halal { background: #E6F2FF; color: #1D5FAF; }

/* ── ABOUT STRIP ── */
.about-strip {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  background: var(--cream-dark);
}
.about-strip-img {
  position: relative;
  overflow: hidden;
}
.about-strip-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.about-strip-badge {
  position: absolute;
  bottom: 32px;
  right: 32px;
  background: var(--brown-dark);
  color: #fff;
  padding: 20px 24px;
  text-align: center;
  border-radius: 3px;
}
.about-badge-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.about-badge-label {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.6);
  margin-top: 6px;
}
.about-strip-text {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-strip-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
}
.about-strip-stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--gold);
}
.stat-label {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 4px;
}

/* ── STARTERS FEATURE ── */
.starters-feature {
  padding: 96px 48px;
  background: var(--white);
}
.starters-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.starters-text p {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  font-weight: 300;
  margin-top: 16px;
}
.starters-list {
  list-style: none;
  margin-top: 24px;
}
.starters-list li {
  font-size: 14px;
  color: var(--text-mid);
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  padding-left: 20px;
  position: relative;
}
.starters-list li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--gold);
}
.starters-img {
  border-radius: 4px;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.starters-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── HOURS BANNER ── */
.hours-banner {
  background: linear-gradient(135deg, var(--brown-dark) 0%, #5A2E08 100%);
  padding: 72px 48px;
}
.hours-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 48px;
  align-items: center;
}
.hours-times {
  display: flex;
  align-items: center;
  gap: 32px;
}
.hours-divider {
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.2);
}
.hours-time-item { text-align: center; }
.hours-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.hours-value {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: #fff;
}
.hours-cta { text-align: right; }

/* ── MAP TEASER ── */
.map-teaser { padding: 96px 48px; }
.map-teaser-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.map-teaser-info .section-title { margin-bottom: 32px; }
.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 20px;
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}
.contact-detail span { font-size: 18px; margin-top: 2px; }
.contact-detail strong { display: block; font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 500; }
.contact-detail a { color: var(--text-muted); text-decoration: none; }
.contact-detail a:hover { color: var(--gold); }
.map-teaser-map {
  border-radius: 4px;
  overflow: hidden;
  height: 420px;
  border: 1px solid var(--border);
}

/* ── CTA SECTION ── */
.cta-section {
  background: linear-gradient(135deg, #2A1400 0%, var(--brown-dark) 100%);
  padding: 96px 48px;
  text-align: center;
}
.cta-inner { max-width: 640px; margin: 0 auto; }

/* ── FADE-IN ANIMATION ── */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 1024px) {
  .signature-inner { grid-template-columns: 1fr; gap: 40px; }
  .signature-intro { position: static; }
  .about-strip { grid-template-columns: 1fr; }
  .about-strip-img { height: 400px; }
  .about-strip-text { padding: 48px 36px; }
  .hours-inner { grid-template-columns: 1fr; text-align: center; gap: 32px; }
  .hours-cta { text-align: center; }
  .map-teaser-inner { grid-template-columns: 1fr; }
  .starters-inner { grid-template-columns: 1fr; gap: 40px; }
  .starters-img { aspect-ratio: 16/9; }
}

@media (max-width: 768px) {
  .feature-strip { grid-template-columns: 1fr 1fr; }
  .feature-item { border-right: none; border-bottom: 1px solid var(--border); }
  .feature-item:nth-child(odd) { border-right: 1px solid var(--border); }
  .feature-item:nth-last-child(-n+2) { border-bottom: none; }
  .signature-section { padding: 60px 20px; }
  .signature-grid { grid-template-columns: 1fr; }
  .about-strip-text { padding: 40px 20px; }
  .about-strip-stats { gap: 24px; }
  .starters-feature { padding: 60px 20px; }
  .hours-banner { padding: 48px 20px; }
  .hours-times { flex-direction: column; gap: 16px; }
  .hours-divider { display: none; }
  .map-teaser { padding: 60px 20px; }
  .map-teaser-map { height: 300px; }
  .cta-section { padding: 60px 20px; }
  .hero-actions { flex-direction: column; align-items: center; }
}
