:root {
  --bg: #0b0f0b;
  --bg-alt: #10140f;
  --surface: #161c15;
  --surface-hover: #212a1f;
  --border: #2b352a;
  --text: #eef3ec;
  --text-muted: #98a696;
  --accent: #2ecc71;
  --accent-hover: #48e08a;
  --accent-soft: rgba(46, 204, 113, 0.15);
  --gold: #ffce45;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.35);
  --header-h: 72px;
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Segoe UI", system-ui, -apple-system, Roboto, Helvetica, Arial, sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(11, 15, 11, 0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  height: 100%;
  padding: 0 20px;
  display: flex;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.brand-logo {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--accent);
}

.main-nav {
  display: flex;
  gap: 4px;
  flex: 1;
}

.main-nav a {
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text-muted);
  white-space: nowrap;
  transition: background 0.15s, color 0.15s;
}

.main-nav a:hover {
  background: var(--surface-hover);
  color: var(--text);
}

.main-nav a.active {
  background: var(--accent-soft);
  color: var(--accent);
}

.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 38px;
  height: 38px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.burger span {
  height: 2px;
  width: 18px;
  margin: 0 auto;
  background: var(--text);
  border-radius: 2px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: transform 0.12s, background 0.15s, box-shadow 0.15s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary {
  background: var(--accent);
  color: #1a0a10;
  box-shadow: 0 6px 20px var(--accent-soft);
}
.btn-primary:hover { background: var(--accent-hover); }

.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { background: var(--surface-hover); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 15, 11, 0.55) 0%, rgba(11, 15, 11, 0.85) 75%, var(--bg) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 0 20px;
  max-width: 720px;
}

.hero-logo {
  width: 96px;
  height: 96px;
  border-radius: 50%;
  object-fit: cover;
  margin: 0 auto 18px;
  border: 3px solid var(--accent);
  box-shadow: var(--shadow);
}

.hero-content h1 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  margin: 0 0 28px;
  font-weight: 800;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

/* ---------- Sections ---------- */
.section {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section.alt { background: var(--bg-alt); max-width: none; }
.section.alt > * { max-width: 1200px; margin-left: auto; margin-right: auto; }

.section-title {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin: 0 0 16px;
  text-align: center;
  padding-bottom: 16px;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 56px;
  height: 3px;
  border-radius: 999px;
  background: var(--accent);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 40px;
}

.empty-state {
  text-align: center;
  color: var(--text-muted);
  padding: 30px;
  width: 100%;
  grid-column: 1 / -1;
}

/* ---------- Intérieur ---------- */
.interior-showcase {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 21 / 9;
}

.interior-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.6s ease;
}

.interior-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(11, 15, 11, 0.8) 0%, rgba(11, 15, 11, 0.1) 55%);
}

.interior-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 28px 32px;
}

.interior-caption h2 {
  margin: 0;
  font-size: clamp(1.2rem, 3vw, 1.7rem);
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

/* ---------- Produits (galerie type masonry : chaque image garde ses proportions naturelles) ---------- */
.menu-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
}

.menu-item {
  width: 260px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: var(--surface);
  border: 1px solid var(--border);
  cursor: zoom-in;
  padding: 12px 12px 4px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.menu-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent);
  box-shadow: 0 18px 40px rgba(46, 204, 113, 0.16), 0 14px 30px rgba(0, 0, 0, 0.4);
}

.menu-item-frame {
  position: relative;
  border-radius: calc(var(--radius) - 6px);
  overflow: hidden;
}

.menu-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.4s ease;
}

.menu-item:hover img { transform: scale(1.035); }

.menu-item-frame::after {
  content: '🔍';
  position: absolute;
  top: 10px;
  right: 10px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
  background: rgba(11, 15, 11, 0.75);
  backdrop-filter: blur(3px);
  opacity: 0;
  transform: translateY(-6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.menu-item:hover .menu-item-frame::after {
  opacity: 1;
  transform: translateY(0);
}

.menu-item .caption {
  padding: 12px 6px 14px;
  text-align: center;
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* ---------- Lightbox (agrandissement d'une image, sans changer de page) ---------- */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: rgba(6, 8, 6, 0.92);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  cursor: zoom-out;
}

.lightbox[hidden] { display: none; }

.lightbox img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 10px;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
  cursor: default;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--surface);
  border: 1px solid var(--border);
  color: var(--text);
  font-size: 1.2rem;
  cursor: pointer;
}

/* ---------- Nous trouver ---------- */
.find-us {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 32px;
  align-items: center;
}

.find-us-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  width: 100%;
  cursor: zoom-in;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.find-us-photo:hover {
  transform: translateY(-4px);
  box-shadow: 0 18px 40px rgba(46, 204, 113, 0.16), 0 14px 30px rgba(0, 0, 0, 0.4);
}

.find-us-info p { margin: 0 0 20px; }
.find-us-info strong { color: var(--accent); }

/* ---------- Livraison ---------- */
.delivery-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  text-align: center;
}

.card-icon { font-size: 2.2rem; margin-bottom: 10px; }
.card h3 { margin: 0 0 8px; }
.card p { margin: 0; color: var(--text-muted); }

/* ---------- Avis ---------- */
.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.big-rating { font-size: 2.4rem; font-weight: 800; }
.stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 2px; }
.review-count { color: var(--text-muted); }

#openReviewForm { display: block; margin: 0 auto 30px; }

.review-form {
  max-width: 520px;
  margin: 0 auto 40px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.review-form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.review-form input[type="text"],
.review-form textarea {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  font: inherit;
  resize: vertical;
}

.star-picker { display: flex; gap: 4px; }

.star-picker button {
  background: none;
  border: none;
  font-size: 1.6rem;
  color: var(--border);
  cursor: pointer;
  padding: 0;
  line-height: 1;
}

.star-picker button.active { color: var(--gold); }

.form-error {
  color: var(--accent);
  font-size: 0.85rem;
  margin: 0;
}

.form-actions { display: flex; gap: 10px; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.review-card .stars { display: block; margin-bottom: 8px; font-size: 1rem; }
.review-card .review-name { font-weight: 700; }
.review-card .review-date { color: var(--text-muted); font-size: 0.8rem; margin-left: 8px; }
.review-card p { margin: 8px 0 0; color: var(--text-muted); }

/* ---------- Footer ---------- */
.site-footer {
  text-align: center;
  padding: 30px 20px;
  color: var(--text-muted);
  font-size: 0.85rem;
  border-top: 1px solid var(--border);
}

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .find-us { grid-template-columns: 1fr; }
  .interior-showcase { aspect-ratio: 4 / 3; }
}

@media (max-width: 720px) {
  .main-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    background: var(--bg-alt);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 10px;
    display: none;
  }
  .main-nav.open { display: flex; }
  .main-nav a { padding: 12px 16px; }

  .burger { display: flex; }

  .section { padding: 56px 20px; }
}

@media (max-width: 480px) {
  .header-inner { gap: 10px; }
  .brand-name { display: none; }
  .hero-buttons { flex-direction: column; align-items: stretch; }
}
