/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-image: url('/assets/images/hero/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 8s ease;
}
.hero.loaded .hero-bg { transform: scale(1); }

/* ─── VIDEO HERO ─────────────────────────────────────────────────────────── */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(
    135deg,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.6) 50%,
    rgba(13,8,0,0.75) 100%
  );
}
.hero-content {
  position: relative;
  max-width: 720px;
  padding-block: var(--sp-32) var(--sp-20);
  animation: fadeUp 1s ease both;
}
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-3);
  color: var(--color-gold);
  font-size: var(--fs-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: var(--sp-5);
}
.hero-eyebrow::before,.hero-eyebrow::after {
  content: '';
  display: block;
  width: 30px;
  height: 1px;
  background: var(--color-gold);
}
.hero h1 {
  font-size: clamp(var(--fs-4xl), 6vw, var(--fs-6xl));
  font-weight: var(--fw-bold);
  line-height: 1.1;
  margin-bottom: var(--sp-6);
  color: var(--color-text);
}
.hero h1 em {
  font-style: normal;
  color: var(--color-gold);
}
.hero-sub {
  color: rgba(245,245,240,0.75);
  font-size: var(--fs-xl);
  line-height: var(--lh-loose);
  margin-bottom: var(--sp-10);
  max-width: 50ch;
}
.hero-actions { display: flex; gap: var(--sp-4); flex-wrap: wrap; }

/* scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: var(--sp-8);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-2);
  color: rgba(245,245,240,0.5);
  font-size: var(--fs-xs);
  animation: bounce 2s infinite;
}
.scroll-indicator svg { color: var(--color-gold); }

/* ─── ABOUT ──────────────────────────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-16);
  align-items: center;
}
.about-text .eyebrow {
  color: var(--color-gold);
  font-size: var(--fs-sm);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  display: block;
  margin-bottom: var(--sp-3);
}
.about-text h2 { font-size: var(--fs-4xl); margin-bottom: var(--sp-5); }
.about-text p  { color: var(--color-text-muted); line-height: var(--lh-loose); margin-bottom: var(--sp-6); }
.about-img-wrap { position: relative; }
.about-img-wrap img {
  width: 100%; border-radius: var(--radius-xl);
  box-shadow: var(--shadow-lg);
}
.about-img-badge {
  position: absolute;
  bottom: var(--sp-5);
  right: var(--sp-5);
  background: var(--color-gold);
  color: #000;
  padding: var(--sp-4) var(--sp-6);
  border-radius: var(--radius-lg);
  text-align: center;
  font-weight: var(--fw-bold);
  box-shadow: var(--shadow-md);
}
.about-img-badge .big { font-size: var(--fs-4xl); line-height: 1; }
.about-img-badge small { font-size: var(--fs-xs); display: block; }

/* ─── FEATURED MENU ──────────────────────────────────────────────────────── */
.featured-footer {
  text-align: center;
  margin-top: var(--sp-10);
}

/* ─── STATS ──────────────────────────────────────────────────────────────── */
.stats-section { background: var(--color-bg-section); }
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-6);
  max-width: 900px;
  margin-inline: auto;
}

/* ─── GALLERY STRIP ──────────────────────────────────────────────────────── */
.gallery-strip {
  display: flex;
  gap: 8px;
  height: 400px;
  direction: ltr;               /* always left→right regardless of page lang */
  border-radius: var(--radius-xl);
  overflow: hidden;
}

.gs-item {
  flex: 1;
  min-width: 0;
  position: relative;
  overflow: hidden;
  display: block;
  text-decoration: none;
  /* gold-tinted dark background — beautiful placeholder */
  background:
    radial-gradient(ellipse at 50% 70%, rgba(201,168,76,.10) 0%, transparent 65%),
    linear-gradient(160deg, #161108 0%, #0d0d0d 100%);
  transition: flex 0.55s cubic-bezier(0.25,0.46,0.45,0.94);
  cursor: pointer;
}

/* First item is a bit wider */
.gs-item:first-child { flex: 1.55; }

/* Gentle expand on hover */
.gs-item:hover { flex: 2; }

/* Image */
.gs-item img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease, opacity 0.4s;
  z-index: 1;
}
.gs-item:hover img { transform: scale(1.07); }

/* Placeholder gold ornament (visible only when image is missing/hidden) */
.gs-bg-placeholder {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  color: rgba(201,168,76,.12);
  z-index: 0;
  user-select: none;
  pointer-events: none;
  transition: color 0.35s;
}
.gs-item:hover .gs-bg-placeholder { color: rgba(201,168,76,.18); }

/* Top-left corner bracket */
.gs-item::before {
  content: '';
  position: absolute;
  top: 13px; left: 13px;
  width: 20px; height: 20px;
  border-top: 1.5px solid rgba(201,168,76,.5);
  border-left: 1.5px solid rgba(201,168,76,.5);
  transition: all 0.35s ease;
  z-index: 4;
  pointer-events: none;
}
/* Bottom-right corner bracket */
.gs-item::after {
  content: '';
  position: absolute;
  bottom: 13px; right: 13px;
  width: 20px; height: 20px;
  border-bottom: 1.5px solid rgba(201,168,76,.5);
  border-right: 1.5px solid rgba(201,168,76,.5);
  transition: all 0.35s ease;
  z-index: 4;
  pointer-events: none;
}
.gs-item:hover::before {
  top: 9px; left: 9px;
  width: 28px; height: 28px;
  border-color: #C9A84C;
}
.gs-item:hover::after {
  bottom: 9px; right: 9px;
  width: 28px; height: 28px;
  border-color: #C9A84C;
}

/* Gradient overlay + text */
.gs-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.78) 0%, rgba(0,0,0,.1) 45%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 20px 16px 18px;
  opacity: 0;
  transition: opacity 0.35s ease;
  z-index: 3;
}
.gs-item:hover .gs-overlay { opacity: 1; }

.gs-title {
  color: #F5F5F0;
  font-size: var(--fs-sm);
  font-weight: 500;
  margin: 0 0 6px;
  text-shadow: 0 1px 6px rgba(0,0,0,.7);
  line-height: 1.4;
}
.gs-zoom {
  color: var(--color-gold-primary);
  line-height: 1;
  display: block;
}

/* Thin gold line at bottom of each item (always visible) */
.gs-item:not(:last-child) {
  border-right: 1px solid rgba(201,168,76,.08);
}

.gallery-preview-footer { text-align:center; margin-top:var(--sp-6); }

/* ─── ANIMATIONS ─────────────────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity:0; transform:translateY(30px); }
  to   { opacity:1; transform:translateY(0); }
}
@keyframes bounce {
  0%,100% { transform:translateX(-50%) translateY(0); }
  50%      { transform:translateX(-50%) translateY(8px); }
}

/* ─── SECTION BACKGROUNDS ───────────────────────────────────────────────── */
/* Cuisine section — dark food-photo background with overlay */
.section-cuisine-bg {
  position: relative;
  background:
    linear-gradient(rgba(0,0,0,0.78), rgba(0,0,0,0.78)),
    url('/assets/images/hero/hero-bg.jpg') center/cover fixed;
  background-color: var(--color-bg-section);
}
/* When no hero image available, show rich gradient texture */
.section-cuisine-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 10% 50%, rgba(201,168,76,.07) 0%, transparent 50%),
    radial-gradient(ellipse at 90% 50%, rgba(201,168,76,.05) 0%, transparent 45%),
    repeating-linear-gradient(
      135deg,
      transparent,
      transparent 30px,
      rgba(201,168,76,.018) 30px,
      rgba(201,168,76,.018) 31px
    );
  pointer-events: none;
  z-index: 0;
}
.section-cuisine-bg > * { position: relative; z-index: 1; }
.section-cuisine-bg .cuisine-card {
  background: rgba(20,14,0,0.7);
  border-color: rgba(201,168,76,0.25);
  backdrop-filter: blur(6px);
}
.section-cuisine-bg .cuisine-card:hover {
  background: rgba(26,18,0,0.85);
  border-color: rgba(201,168,76,0.6);
}

/* Stats section — gold shimmer band */
.stats-section {
  background:
    linear-gradient(rgba(13,13,13,0.92), rgba(13,13,13,0.92)),
    url('/assets/images/hero/hero-bg.jpg') center 60%/cover fixed;
  background-color: var(--color-bg-section);
  position: relative;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 60px,
      rgba(201,168,76,.025) 60px,
      rgba(201,168,76,.025) 61px
    );
  pointer-events: none;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width:768px) {
  .about-grid { grid-template-columns:1fr; gap:var(--sp-8); }
  .about-img-wrap { order:-1; overflow: visible; }
  .about-img-badge {
    bottom: var(--sp-4);
    right: var(--sp-4);
    padding: var(--sp-3) var(--sp-4);
  }
  .about-img-badge .big { font-size: var(--fs-2xl); }
  .about-text h2 { font-size:var(--fs-3xl); }
  .stats-grid { grid-template-columns:repeat(3,1fr); gap:var(--sp-3); }
  .stat-card { padding: var(--sp-5) var(--sp-3); }
  .stat-number { font-size: var(--fs-4xl); }
  .gallery-strip { height:auto; flex-wrap:wrap; border-radius:var(--radius-lg); }
  .gs-item { flex:1 1 calc(50% - 4px); height:195px; min-width:calc(50% - 4px); }
  .gs-item:first-child { flex:1 1 calc(50% - 4px); }
  .gs-item:hover { flex:1 1 calc(50% - 4px); } /* no expand on touch */
  .gs-item:not(:last-child) { border-right:none; border-bottom:1px solid rgba(201,168,76,.08); }
  .hero-content { padding-block:var(--sp-20) var(--sp-16); }
  .hero h1 { font-size:clamp(var(--fs-3xl),8vw,var(--fs-5xl)); }
  .hero-sub { font-size:var(--fs-lg); }
  .hero-actions { gap:var(--sp-3); }
  .hero-actions .btn { width:100%; justify-content:center; }
}
@media (max-width:480px) {
  .stats-grid { grid-template-columns:repeat(3,1fr); gap:var(--sp-2); }
  .stat-card { padding: var(--sp-4) var(--sp-2); }
  .stat-number { font-size: var(--fs-3xl); }
  .stat-label { font-size: var(--fs-xs); margin-top: var(--sp-1); }
  .hero-eyebrow { font-size:var(--fs-xs); }
  .scroll-indicator { display:none; }
  .gs-item { flex:1 1 100%; height:210px; min-width:100%; }
  .gs-item:not(:last-child) { border-bottom:1px solid rgba(201,168,76,.08); }
}

/* ─── REVIEWS SECTION ────────────────────────────────────────────────────── */
.reviews-section { background: var(--color-bg); }

/* Outer wrap */
.reviews-carousel-wrap { margin-bottom: var(--sp-12); }

/* Flex row: [prev] [clip] [next] */
.reviews-carousel-row {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  margin-bottom: var(--sp-5);
}

/* ★ THE CLIP — overflow:hidden goes HERE, not on the sliding track */
.reviews-carousel-clip {
  flex: 1;
  overflow: hidden;
  min-width: 0;
}

/* The sliding track — NO overflow:hidden here */
.reviews-carousel {
  display: flex;
  gap: 24px;
  transition: transform 0.48s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Review card — width set by JS */
.review-card {
  flex-shrink: 0;
  background: linear-gradient(145deg, rgba(22,17,5,0.85), rgba(20,20,20,0.9));
  border: 1px solid rgba(201,168,76,0.18);
  border-radius: var(--radius-xl);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: var(--sp-4);
  transition: border-color 0.3s, box-shadow 0.3s;
}
.review-card:hover {
  border-color: rgba(201,168,76,0.45);
  box-shadow: 0 14px 36px rgba(0,0,0,0.35);
}

/* Stars */
.review-stars { display: flex; gap: 4px; margin-bottom: var(--sp-1); }

/* Comment text — clamp to 5 lines */
.review-comment {
  color: rgba(220,220,215,0.82);
  font-size: var(--fs-sm);
  line-height: 1.75;
  flex: 1;
  font-style: italic;
  margin: 0;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Author row */
.review-author {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding-top: var(--sp-3);
  border-top: 1px solid rgba(201,168,76,0.12);
}
.review-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-gold) 0%, #7a5418 100%);
  color: #000;
  font-weight: var(--fw-bold);
  font-size: var(--fs-base);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.review-name  { font-weight: var(--fw-semibold); color: var(--color-text); font-size: var(--fs-sm); }
.review-event { font-size: var(--fs-xs); color: var(--color-gold); margin-top: 2px; text-transform: capitalize; }

/* Navigation buttons — in flexbox flow, not absolute */
.carousel-btn {
  flex-shrink: 0;
  width: 46px; height: 46px;
  background: rgba(201,168,76,0.1);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--color-gold);
  border-radius: 50%;
  font-size: 1.5rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}
.carousel-btn:hover  { background: rgba(201,168,76,0.22); border-color: var(--color-gold); transform: scale(1.08); }
.carousel-btn:disabled { opacity: 0.25; cursor: not-allowed; transform: none !important; }

/* Dots */
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: var(--sp-2);
}
.carousel-dot {
  width: 8px; height: 8px;
  border-radius: 4px;
  background: rgba(201,168,76,0.25);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: background 0.25s, width 0.25s, transform 0.25s;
}
.carousel-dot.active {
  background: var(--color-gold);
  width: 24px;
  transform: none;
}

/* Review form */
.review-form-wrap {
  background: var(--color-bg-card);
  border: 1px solid rgba(201,168,76,0.15);
  border-radius: var(--radius-xl);
  padding: var(--sp-8);
  max-width: 700px;
  margin-inline: auto;
  margin-top: var(--sp-6);
}
.review-form-wrap h3 {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-6);
  color: var(--color-text);
}
.review-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
  margin-bottom: var(--sp-4);
}
.review-form .form-group { display: flex; flex-direction: column; gap: var(--sp-2); }
.review-form label {
  font-size: var(--fs-sm);
  color: var(--color-text-muted);
  font-weight: var(--fw-medium);
}
.review-form input,
.review-form textarea {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: var(--radius-md);
  color: var(--color-text);
  padding: var(--sp-3) var(--sp-4);
  font-size: var(--fs-base);
  transition: border-color 0.25s;
  width: 100%;
}
.review-form input:focus,
.review-form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
}
.review-form .form-group { margin-bottom: var(--sp-4); }

/* Star picker */
.star-picker { display: flex; gap: var(--sp-1); }
.star-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: var(--sp-1);
  transition: transform 0.15s;
}
.star-btn:hover { transform: scale(1.15); }
.star-btn svg { display: block; }
.star-btn.selected svg { fill: #C9A84C; }

/* Alerts */
.alert {
  padding: var(--sp-4) var(--sp-5);
  border-radius: var(--radius-md);
  margin-bottom: var(--sp-5);
  font-size: var(--fs-sm);
}
.alert-success { background: rgba(76,175,80,0.12); border: 1px solid rgba(76,175,80,0.3); color: #81c784; }
.alert-error   { background: rgba(244,67,54,0.12);  border: 1px solid rgba(244,67,54,0.3);  color: #e57373; }

/* ─── CAROUSEL RESPONSIVE ────────────────────────────────────────────────── */
@media (max-width: 640px) {
  .carousel-btn { width: 38px; height: 38px; font-size: 1.3rem; }
  .reviews-carousel-row { gap: var(--sp-2); }
  .review-card { padding: 20px 16px; }
}

/* ─── BUTTON FIXES ────────────────────────────────────────────────────────── */
/* CTA banner buttons: full-width stacked on mobile */
@media (max-width:640px) {
  .btn-row { flex-direction:column; gap:var(--sp-3); }
  .btn-row .btn { width:100%; justify-content:center; }
  .btn-lg { padding:14px 24px; font-size:var(--fs-base); }
  /* Hero actions already full-width — make them properly stacked */
  .hero-actions { flex-direction:column; gap:var(--sp-3); }
  .hero-actions .btn { width:100%; justify-content:center; padding:14px 20px; }
}
