/* === VARIABLES === */
:root {
  --saffron: #e8720c;
  --saffron-light: #f59340;
  --cream: #fdf8f0;
  --dark: #1a1208;
  --warm-dark: #2e1f0a;
  --muted: #8a7560;
  --white: #ffffff;
  --card-bg: #fffcf7;
  --border: #f0e8d8;
}

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

html { scroll-behavior: smooth; }

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

em { font-family: 'Playfair Display', serif; font-style: italic; color: var(--saffron); }

/* === NAV === */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 48px;
  background: rgba(253, 248, 240, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.nav-links {
  display: flex;
  gap: 32px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}

.nav-links a:hover { color: var(--saffron); }

.nav-cta {
  background: var(--saffron) !important;
  color: var(--white) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 600 !important;
  transition: transform 0.2s, background 0.2s !important;
}

.nav-cta:hover {
  background: var(--saffron-light) !important;
  transform: translateY(-1px);
}

/* === HERO === */
.hero {
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 80px 24px 60px;
  position: relative;
  background:
    radial-gradient(ellipse 800px 600px at 50% 30%, rgba(232,114,12,0.10) 0%, transparent 70%),
    var(--cream);
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(232,114,12,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.hero-badge {
  display: inline-block;
  background: rgba(232,114,12,0.10);
  color: var(--saffron);
  border: 1px solid rgba(232,114,12,0.25);
  border-radius: 50px;
  padding: 8px 20px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 28px;
  animation: fadeUp 0.6s ease both;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
  animation: fadeUp 0.7s 0.1s ease both;
}

.hero-sub {
  font-size: 1rem;
  color: var(--muted);
  letter-spacing: 0.06em;
  font-weight: 400;
  margin-bottom: 40px;
  animation: fadeUp 0.7s 0.2s ease both;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 60px;
  animation: fadeUp 0.7s 0.3s ease both;
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--saffron);
  color: var(--white);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(232,114,12,0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(232,114,12,0.45);
}

.btn-primary.large {
  padding: 20px 44px;
  font-size: 1.05rem;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid var(--dark);
  color: var(--dark);
  text-decoration: none;
  padding: 16px 32px;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  transition: background 0.2s, color 0.2s, transform 0.2s;
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-2px);
}

.hero-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 400;
  animation: fadeUp 0.7s 0.4s ease both;
}

.hero-strip .dot { opacity: 0.4; }

/* === SECTION COMMON === */
.section-label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 12px;
}

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

/* === WHY US === */
.why {
  padding: 100px 48px;
  text-align: center;
  background: var(--white);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  max-width: 1000px;
  margin: 0 auto;
}

.why-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: left;
  transition: transform 0.25s, box-shadow 0.25s;
}

.why-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.07);
}

.why-icon {
  font-size: 2.2rem;
  margin-bottom: 16px;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 10px;
}

.why-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.7;
}

/* === GALLERY === */
.gallery-section {
  padding: 100px 48px;
  text-align: center;
  background: var(--cream);
}

/* === FOOD SLIDESHOW === */
.food-slideshow-wrapper {
  max-width: 760px;
  margin: 40px auto 0;
}

.food-slideshow {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 24px;
  overflow: hidden;
  background: var(--border);
  box-shadow: 0 8px 40px rgba(0,0,0,0.12);
}

.food-slide {
  position: absolute;
  inset: 0;
  display: none;
}

.food-slide.active {
  display: block;
}

.food-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.food-slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 28px 24px 20px;
  background: linear-gradient(transparent, rgba(26,18,8,0.72));
  color: white;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.food-slide-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 18px;
}

.food-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.3s, transform 0.3s;
  display: inline-block;
}

.food-dot.active {
  background: var(--orange);
  transform: scale(1.3);
}

/* === REVIEWS === */
.reviews-section {
  padding: 100px 48px;
  text-align: center;
  background: var(--white);
}

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
  max-width: 900px;
  margin: 0 auto;
}

.review-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
  max-width: 380px;
  transition: transform 0.25s, box-shadow 0.25s;
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0,0,0,0.08);
}

.review-card img {
  width: 100%;
  display: block;
}

/* === CTA BANNER === */
.cta-banner {
  padding: 100px 48px;
  background: var(--warm-dark);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 600px 400px at 50% 50%, rgba(232,114,12,0.20), transparent);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }

.cta-banner h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255,255,255,0.6);
  font-size: 1rem;
  margin-bottom: 40px;
}

/* === FOOTER === */
footer {
  background: var(--dark);
  padding: 60px 48px;
  text-align: center;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 12px;
}

.footer-tagline {
  color: rgba(255,255,255,0.45);
  font-size: 0.88rem;
  margin-bottom: 16px;
}

.footer-area {
  color: rgba(255,255,255,0.3);
  font-size: 0.82rem;
  margin-bottom: 32px;
}

.copy {
  color: rgba(255,255,255,0.2);
  font-size: 0.78rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
}

/* === ANIMATIONS === */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* === MOBILE === */
@media (max-width: 768px) {
  nav { padding: 16px 24px; }
  .nav-links { gap: 16px; }
  .nav-links a:not(.nav-cta) { display: none; }

  .hero { padding: 80px 20px 50px; }

  .why, .gallery-section, .reviews-section, .cta-banner { padding: 70px 24px; }

  footer { padding: 48px 24px; }

  .food-slideshow { height: 300px; }

  .why-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; justify-content: center; }
}

/* === REVIEW CAROUSEL === */
.carousel-wrapper {
  position: relative;
  max-width: 520px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 20px;
}

.carousel-track {
  position: relative;
  height: 420px;
}

.carousel-slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: transform 0.45s cubic-bezier(0.4,0,0.2,1), opacity 0.45s;
  transform: translateX(100%);
}

.carousel-slide.active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0);
}

.carousel-slide.exit-left  { transform: translateX(-100%); opacity: 0; }
.carousel-slide.exit-right { transform: translateX(100%);  opacity: 0; }
.carousel-slide.enter-right { transform: translateX(100%);  opacity: 0; }
.carousel-slide.enter-left  { transform: translateX(-100%); opacity: 0; }

.carousel-slide img {
  width: 100%;
  max-height: 420px;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.10);
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.9);
  border: 1px solid var(--border);
  color: var(--dark);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  transition: background 0.2s, transform 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.10);
}

.carousel-btn:hover {
  background: var(--saffron);
  color: white;
  transform: translateY(-50%) scale(1.08);
}

.carousel-btn.prev { left: 10px; }
.carousel-btn.next { right: 10px; }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border);
  cursor: pointer;
  transition: background 0.2s, transform 0.2s;
}

.carousel-dots .dot.active {
  background: var(--saffron);
  transform: scale(1.3);
}

@media (max-width: 600px) {
  .carousel-track { height: 280px; }
  .carousel-slide img { max-height: 280px; }
}

/* === LIGHTBOX === */
#lb-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  align-items: center;
  justify-content: center;
}
#lb-overlay.active { display: flex; }

#lb-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(10, 6, 2, 0.88);
  backdrop-filter: blur(6px);
  animation: lbFadeIn 0.25s ease;
}

#lb-box {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 16px;
  max-width: 95vw;
  max-height: 95vh;
  animation: lbZoomIn 0.28s cubic-bezier(0.34,1.56,0.64,1);
}

#lb-img {
  max-width: min(820px, 85vw);
  max-height: 85vh;
  border-radius: 16px;
  object-fit: contain;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  transition: opacity 0.15s ease;
  cursor: default !important;
  display: block;
}

#lb-close {
  position: fixed;
  top: 18px;
  right: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 2;
}
#lb-close:hover { background: rgba(255,255,255,0.25); }

#lb-prev, #lb-next {
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, transform 0.2s;
}
#lb-prev:hover, #lb-next:hover {
  background: var(--saffron);
  transform: scale(1.1);
}

@keyframes lbFadeIn  { from { opacity: 0; } to { opacity: 1; } }
@keyframes lbZoomIn  { from { transform: scale(0.85); opacity: 0; } to { transform: scale(1); opacity: 1; } }

/* touch hint on images */
[data-lightbox]:hover { cursor: zoom-in !important; }

/* Food Slideshow Arrows */
.food-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255,255,255,0.88);
  border: none;
  border-radius: 50%;
  width: 42px;
  height: 42px;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 12px rgba(0,0,0,0.18);
  transition: background 0.2s, transform 0.2s;
  color: #1a1208;
}
.food-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
}
.food-arrow-prev { left: 14px; }
.food-arrow-next { right: 14px; }
