/* ========================================
   STAR PIZZA — STYLE.CSS
   Dark Forest · Gold · Street-Food Premium
   ======================================== */

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

:root {
  --bg:          #0a0e0b;
  --bg-alt:      #0f1410;
  --bg-card:     #141c15;
  --bg-card2:    #1a2318;
  --border:      rgba(212,160,23,0.18);
  --border-dim:  rgba(212,160,23,0.08);
  --gold:        #D4A017;
  --gold-light:  #e8b52a;
  --gold-dim:    rgba(212,160,23,0.12);
  --red:         #c8372d;
  --white:       #f5f1e8;
  --muted:       #7a8878;
  --text:        #cdc8bc;
  --radius:      14px;
  --radius-lg:   20px;
  --shadow:      0 8px 32px rgba(0,0,0,0.6);
  --shadow-card: 0 4px 20px rgba(0,0,0,0.5);
  --glow-gold:   0 0 40px rgba(212,160,23,0.15);
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --font-head:   'Playfair Display', Georgia, serif;
  --font-body:   'Inter', -apple-system, system-ui, sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

/* ── SCROLLBAR ── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ── CONTAINER ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background 0.2s;
}
.btn:hover::after { background: rgba(255,255,255,0.06); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #c49010 100%);
  color: #0a0e0b;
  box-shadow: 0 4px 20px rgba(212,160,23,0.3);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.45);
}
.btn-outline {
  background: rgba(255,255,255,0.05);
  color: var(--white);
  border: 1px solid rgba(244,240,232,0.25);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,160,23,0.08);
}
.btn-lg { padding: 16px 40px; font-size: 15px; }

/* ========================================
   LIGHTBOX / MODAL
   ======================================== */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.lightbox.is-open { opacity: 1; pointer-events: auto; }
.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8,11,8,0.94);
  backdrop-filter: blur(12px);
}
.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: 92vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  transform: scale(0.94);
  transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.lightbox.is-open .lightbox-content { transform: scale(1); }
.lightbox-content img {
  max-width: 90vw;
  max-height: 82vh;
  border-radius: var(--radius-lg);
  box-shadow: 0 24px 80px rgba(0,0,0,0.8), 0 0 0 1px rgba(212,160,23,0.15);
  object-fit: contain;
}
.lightbox-caption {
  color: var(--white);
  font-size: 14px;
  font-weight: 500;
  opacity: 0.7;
  letter-spacing: 0.04em;
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 24px;
  z-index: 2;
  background: rgba(20,28,21,0.8);
  border: 1px solid var(--border);
  color: var(--white);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.lightbox-close:hover { background: var(--gold); color: #0a0e0b; border-color: var(--gold); }

/* ========================================
   NAVBAR
   ======================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10,14,11,0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-dim);
  height: 66px;
  transition: background 0.3s, box-shadow 0.3s;
}
.navbar.scrolled {
  background: rgba(10,14,11,0.97);
  box-shadow: 0 2px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 28px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo { display: flex; align-items: center; }
.logo-img {
  height: 46px;
  width: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: 0 0 20px rgba(212,160,23,0.2);
}
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-link {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 500;
  color: var(--muted);
  transition: var(--transition);
  letter-spacing: 0.02em;
}
.nav-link:hover { color: var(--white); background: rgba(255,255,255,0.05); }
.nav-link.active { color: var(--gold); }
.nav-cta {
  background: linear-gradient(135deg, var(--gold), #c49010);
  color: #0a0e0b !important;
  font-weight: 700;
  padding: 9px 20px;
  margin-left: 10px;
  box-shadow: 0 2px 14px rgba(212,160,23,0.3);
}
.nav-cta:hover {
  box-shadow: 0 4px 22px rgba(212,160,23,0.5);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO — PLEIN ÉCRAN IMMERSIF
   ======================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  padding: 100px 28px 80px;
}

/* Image de fond en parallaxe */
.hero-bg-img {
  position: absolute;
  inset: -10%;
  background-image: url('assets/images/hero_bg.png');
  background-size: cover;
  background-position: center 40%;
  transform: translateZ(0);
  will-change: transform;
}
/* Overlay multi-couches pour lisibilité */
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom,
      rgba(10,14,11,0.55) 0%,
      rgba(10,14,11,0.3) 40%,
      rgba(10,14,11,0.7) 75%,
      rgba(10,14,11,1) 100%
    ),
    radial-gradient(ellipse 70% 50% at 50% 50%, rgba(212,160,23,0.04) 0%, transparent 70%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
  will-change: transform;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 18px;
  border-radius: 100px;
  border: 1px solid rgba(212,160,23,0.35);
  background: rgba(212,160,23,0.1);
  backdrop-filter: blur(8px);
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-bottom: 28px;
}
.hero-badge::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px var(--gold);
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(60px, 9vw, 110px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 16px;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}
/* Lettre initiale dorée */
.hero-title .gold { color: var(--gold); }

.hero-tagline {
  font-size: clamp(14px, 1.8vw, 18px);
  color: rgba(245,241,232,0.75);
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.hero-tagline span { color: var(--gold); margin: 0 6px; }

.hero-sub {
  color: rgba(205,200,188,0.65);
  font-size: 15px;
  margin-bottom: 44px;
  font-style: italic;
}
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* Scroll indicator */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.35);
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
  z-index: 2;
}
.hero-scroll svg { opacity: 0.5; }
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ========================================
   SECTION BASE
   ======================================== */
.menu-section {
  padding: 90px 0;
  position: relative;
}
.menu-section.section-alt { background: var(--bg-alt); }

/* Séparateur doré */
.menu-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section-header { margin-bottom: 52px; }
.section-title {
  font-family: var(--font-head);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 10px;
}
.section-title-accent {
  display: inline-block;
  width: 48px;
  height: 3px;
  background: var(--gold);
  border-radius: 2px;
  margin-bottom: 12px;
}
.section-subtitle { font-size: 15px; color: var(--muted); }

/* ========================================
   PRODUCT GRID & CARDS
   ======================================== */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 22px;
}
.product-grid-wide {
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.product-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
  position: relative;
}
/* Lueur dorée au hover */
.product-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  box-shadow: inset 0 0 0 1px rgba(212,160,23,0);
  transition: box-shadow 0.3s;
  pointer-events: none;
}
.product-card:hover {
  transform: translateY(-5px);
  border-color: rgba(212,160,23,0.3);
  box-shadow: 0 12px 40px rgba(0,0,0,0.55), var(--glow-gold);
}
.product-card:hover::after {
  box-shadow: inset 0 0 0 1px rgba(212,160,23,0.25);
}

/* Image wrapper */
.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  cursor: zoom-in;
  flex-shrink: 0;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
.product-img-wrap:hover img { transform: scale(1.07); }

/* Gradient bas de l'image */
.product-img-wrap::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(20,28,21,0.7), transparent);
  pointer-events: none;
}

.zoom-icon {
  position: absolute;
  bottom: 12px;
  right: 12px;
  z-index: 1;
  background: rgba(10,14,11,0.75);
  border: 1px solid rgba(212,160,23,0.5);
  color: var(--gold);
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  opacity: 0;
  transform: scale(0.7);
  transition: opacity 0.25s, transform 0.25s;
  pointer-events: none;
  backdrop-filter: blur(6px);
}
.product-img-wrap:hover .zoom-icon {
  opacity: 1;
  transform: scale(1);
}

.product-info {
  padding: 18px 20px 22px;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.product-info h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  line-height: 1.3;
}
.product-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  flex: 1;
}
.product-price {
  display: inline-flex;
  align-items: center;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold);
  margin-top: 6px;
  text-shadow: 0 0 20px rgba(212,160,23,0.3);
}
.product-price-featured { font-size: 24px; }

/* Sans image */
.product-info-only {
  padding: 26px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
}
.product-info-only h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--white);
}
.product-info-only .product-desc { font-size: 13px; color: var(--muted); flex: 1; }

/* Prix multi-variantes */
.price-variants { display: flex; flex-direction: column; gap: 4px; margin-top: 10px; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 7px 0;
  border-bottom: 1px solid var(--border-dim);
}
.price-row:last-child { border-bottom: none; }
.price-row span { font-size: 13px; color: var(--muted); }
.price-row strong { font-size: 14px; font-weight: 700; color: var(--gold); }

/* ========================================
   SECTION PIZZAS — HERO BACKGROUND
   ======================================== */
#pizzas {
  background:
    linear-gradient(to bottom, var(--bg-alt) 0%, rgba(10,14,11,0.85) 30%, rgba(10,14,11,0.85) 70%, var(--bg-alt) 100%),
    url('assets/images/pizza_bg.png') center/cover fixed;
  background-attachment: fixed;
  background-blend-mode: normal;
}

.pizza-image-banner { margin-bottom: 36px; }
.pizza-banner-img {
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  aspect-ratio: auto;
  box-shadow: none;
  display: flex;
  justify-content: center;
}
.pizza-banner-img img {
  width: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.pizza-sizes-legend {
  display: flex;
  gap: 12px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.size-badge {
  display: inline-flex;
  align-items: center;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.size-junior    { background: rgba(80,180,100,0.12); color: #72c978; border: 1px solid rgba(80,180,100,0.25); }
.size-senior    { background: rgba(212,160,23,0.12); color: var(--gold); border: 1px solid rgba(212,160,23,0.28); }
.size-familiale { background: rgba(200,55,45,0.12);  color: #e06055; border: 1px solid rgba(200,55,45,0.28); }

.pizza-base-title {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 600;
  color: var(--gold);
  margin: 44px 0 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.pizza-base-title::before {
  content: '';
  display: block;
  width: 4px;
  height: 24px;
  background: var(--gold);
  border-radius: 2px;
}

.pizza-table-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid var(--border-dim);
  margin-bottom: 8px;
  box-shadow: var(--shadow-card);
}
.pizza-table {
  width: 100%;
  border-collapse: collapse;
  background: rgba(20,28,21,0.8);
  backdrop-filter: blur(10px);
  font-size: 14px;
}
.pizza-table thead tr {
  background: rgba(26,35,24,0.9);
  border-bottom: 1px solid var(--border);
}
.pizza-table th {
  padding: 14px 18px;
  text-align: left;
  font-size: 11px;
  font-weight: 700;
  color: var(--muted);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  white-space: nowrap;
}
.pizza-table th:not(:first-child) { text-align: center; }
.pizza-table td {
  padding: 12px 18px;
  border-bottom: 1px solid rgba(212,160,23,0.06);
  vertical-align: middle;
}
.pizza-table td:not(:first-child) {
  text-align: center;
  font-weight: 700;
  color: var(--gold);
  white-space: nowrap;
}
.pizza-table tbody tr:last-child td { border-bottom: none; }
.pizza-table tbody tr { transition: background 0.2s; }
.pizza-table tbody tr:hover { background: rgba(212,160,23,0.05); }
.pizza-table td strong { color: var(--white); font-weight: 600; }
.pizza-ingredients {
  display: block;
  font-size: 12px;
  color: var(--muted);
  font-weight: 400;
  margin-top: 3px;
  opacity: 0.8;
}

/* La Fatale */
.pizza-fatale-card {
  margin-top: 36px;
  background: linear-gradient(135deg, rgba(212,160,23,0.12) 0%, rgba(10,14,11,0.7) 60%);
  border: 1px solid rgba(212,160,23,0.35);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 24px;
  box-shadow: 0 8px 32px rgba(212,160,23,0.08);
  backdrop-filter: blur(8px);
}
.pizza-fatale-header h3 {
  font-family: var(--font-head);
  font-size: 26px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.fatale-badge {
  display: inline-block;
  font-size: 12px;
  color: var(--gold);
  opacity: 0.85;
}
.fatale-prices { display: flex; gap: 28px; flex-wrap: wrap; }
.fatale-price-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.fatale-price-item strong {
  font-size: 22px;
  font-weight: 700;
  color: var(--gold);
  text-shadow: 0 0 18px rgba(212,160,23,0.4);
}

/* Suppléments */
.supplements-section {
  margin-top: 44px;
  background: rgba(20,28,21,0.6);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  backdrop-filter: blur(12px);
}
.supplements-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 26px;
}
.supplements-header h3 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
}
.suppl-prices-legend {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.suppl-prices-legend span {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--muted);
}
.ingredients-grid { display: flex; flex-wrap: wrap; gap: 8px; }
.ingredient-tag {
  display: inline-flex;
  align-items: center;
  padding: 5px 13px;
  background: rgba(212,160,23,0.07);
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: 100px;
  font-size: 12px;
  color: var(--text);
  transition: var(--transition);
  cursor: default;
}
.ingredient-tag:hover {
  background: rgba(212,160,23,0.18);
  color: var(--gold);
  border-color: rgba(212,160,23,0.4);
  transform: translateY(-1px);
}

/* Formule Foot */
.formule-foot-card {
  margin-top: 30px;
  background: linear-gradient(135deg, rgba(200,55,45,0.12) 0%, rgba(10,14,11,0.6) 60%);
  border: 1px solid rgba(200,55,45,0.3);
  border-radius: var(--radius-lg);
  padding: 26px 32px;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  backdrop-filter: blur(8px);
}
.formule-foot-icon { flex-shrink: 0; }
.formule-foot-content { flex: 1; }
.formule-foot-content h3 {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 4px;
}
.formule-foot-content p { font-size: 13px; color: var(--muted); }
.formule-foot-price {
  font-size: 30px;
  font-weight: 800;
  color: var(--gold);
  white-space: nowrap;
  font-family: var(--font-head);
  text-shadow: 0 0 20px rgba(212,160,23,0.4);
}

/* ========================================
   SALADES
   ======================================== */
.salades-banner { margin-bottom: 44px; }
.salades-banner-img {
  border-radius: var(--radius-lg);
  cursor: zoom-in;
  aspect-ratio: auto;
  box-shadow: none;
  display: flex;
  justify-content: center;
}
.salades-banner-img img {
  width: auto;
  max-width: 100%;
  max-height: 400px;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

/* ========================================
   EXTRAS
   ======================================== */
.extras-block { margin-bottom: 58px; }
.extras-block:last-child { margin-bottom: 0; }
.extras-subtitle {
  font-family: var(--font-head);
  font-size: 21px;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 26px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border-dim);
  display: flex;
  align-items: center;
  gap: 14px;
}
.extras-subtitle::before {
  content: '';
  display: block;
  width: 28px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}
.sides-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
}
.side-card {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius);
  padding: 22px 24px;
  transition: var(--transition);
}
.side-card:hover {
  border-color: rgba(212,160,23,0.25);
  box-shadow: 0 4px 20px rgba(0,0,0,0.4);
}
.side-card h4 {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--white);
  margin-bottom: 14px;
}
.desserts-list, .drinks-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* ========================================
   CONTACT
   ======================================== */
.contact-section {
  padding: 90px 0;
  position: relative;
  background: var(--bg-alt);
  overflow: hidden;
}
.contact-section::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(212,160,23,0.04) 0%, transparent 70%);
  pointer-events: none;
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

/* Adresse card */
.contact-address-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(212,160,23,0.06);
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: var(--radius);
  padding: 20px 22px;
  margin-bottom: 28px;
}
.contact-address-icon {
  width: 52px;
  height: 52px;
  background: rgba(212,160,23,0.1);
  border: 1px solid rgba(212,160,23,0.25);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.contact-address {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
  margin: 6px 0 10px;
}
.contact-address strong { color: var(--white); font-size: 15px; }
.map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.04em;
  transition: var(--transition);
}
.map-link:hover { opacity: 0.75; text-decoration: underline; }

.contact-sub { color: var(--muted); margin-bottom: 38px; font-size: 15px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; align-items: flex-start; gap: 16px; }
.contact-icon {
  width: 46px;
  height: 46px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  box-shadow: 0 0 20px rgba(212,160,23,0.06);
}
.contact-label {
  font-size: 11px;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 3px;
}
.contact-value { font-size: 15px; font-weight: 500; color: var(--white); }
a.contact-value:hover { color: var(--gold); }

/* Col carte + CTA */
.contact-map-col { display: flex; flex-direction: column; gap: 0; }
.contact-cta-box {
  background: linear-gradient(135deg, var(--bg-card), var(--bg-card2));
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: stretch;
  box-shadow: var(--shadow-card), var(--glow-gold);
}
.cta-box-text { font-size: 15px; color: var(--text); line-height: 1.65; }

/* Google Maps embed */
.google-map-embed {
  margin-top: 20px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-dim);
  box-shadow: var(--shadow-card);
}

/* ========================================
   SECTION AGENCE WEB
   ======================================== */
.agency-section {
  padding: 64px 0;
  background: var(--bg);
  border-top: 1px solid var(--border-dim);
  position: relative;
  overflow: hidden;
}
.agency-section::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.agency-inner {
  text-align: center;
}
.agency-badge {
  display: inline-block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 28px;
}
.agency-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 40px;
  align-items: start;
  text-align: left;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px 44px;
  box-shadow: var(--shadow-card), var(--glow-gold);
}
.agency-logo-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 14px;
}
.agency-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  border-radius: 4px;
}
.agency-name {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.01em;
}
.agency-tagline {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.65;
}
.agency-contacts {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-left: 8px;
  border-left: 1px solid var(--border-dim);
}
.agency-contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
}
.agency-contact-icon {
  width: 30px;
  height: 30px;
  background: rgba(212,160,23,0.08);
  border: 1px solid rgba(212,160,23,0.18);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
}
.agency-contact-val {
  font-size: 13px;
  color: var(--text);
  transition: var(--transition);
}
a.agency-contact-val:hover { color: var(--gold); }
.agency-cta-wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 18px;
  padding-left: 8px;
  border-left: 1px solid var(--border-dim);
}
.agency-cta-text {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.6;
}
.btn-agency {
  background: transparent;
  border: 1.5px solid var(--gold);
  color: var(--gold);
  padding: 11px 24px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
}
.btn-agency:hover {
  background: var(--gold);
  color: #0a0e0b;
  box-shadow: 0 4px 20px rgba(212,160,23,0.35);
  transform: translateY(-2px);
}

/* ========================================
   FOOTER
   ======================================== */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--border-dim);
  padding: 40px 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 26px;
}
.footer-brand { display: flex; flex-direction: column; gap: 4px; }
.footer-brand-row { display: flex; align-items: center; gap: 12px; }
.footer-logo {
  height: 38px;
  width: auto;
  border-radius: 8px;
  object-fit: cover;
}
.footer-brand p { font-size: 13px; color: var(--muted); }
.footer-address { font-size: 12px; color: var(--muted); opacity: 0.7; }
.footer-nav { display: flex; gap: 4px; flex-wrap: wrap; }
.footer-nav a {
  padding: 6px 13px;
  font-size: 13px;
  color: var(--muted);
  border-radius: 6px;
  transition: var(--transition);
}
.footer-nav a:hover { color: var(--gold); background: var(--gold-dim); }
.footer-copy { font-size: 12px; color: var(--muted); opacity: 0.6; line-height: 1.7; }

/* ========================================
   ANIMATIONS
   ======================================== */

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(0.4,0,0.2,1), transform 0.65s cubic-bezier(0.4,0,0.2,1);
}
.reveal.in-view { 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; }

/* Floating particles (pure CSS) */
@keyframes floatUp {
  0%   { opacity: 0; transform: translateY(0) scale(0.8); }
  20%  { opacity: 0.6; }
  100% { opacity: 0; transform: translateY(-120px) scale(1.2); }
}
.particle {
  position: absolute;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  animation: floatUp 4s infinite ease-in-out;
  pointer-events: none;
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 960px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .pizza-fatale-card { flex-direction: column; gap: 18px; }
  .supplements-header { flex-direction: column; }
  .agency-grid { grid-template-columns: 1fr; gap: 28px; }
  .agency-contacts { border-left: none; padding-left: 0; border-top: 1px solid var(--border-dim); padding-top: 20px; }
  .agency-cta-wrap { border-left: none; padding-left: 0; border-top: 1px solid var(--border-dim); padding-top: 20px; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 66px;
    left: 0;
    right: 0;
    background: rgba(10,14,11,0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px;
    gap: 4px;
    display: none;
    max-height: calc(100vh - 66px);
    overflow-y: auto;
  }
  .nav-links.is-open { display: flex; }
  .nav-link { padding: 13px 16px; width: 100%; font-size: 15px; }
  .nav-cta { margin-left: 0; text-align: center; }

  .menu-section { padding: 64px 0; }
  .section-header { margin-bottom: 36px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .product-grid-wide { grid-template-columns: 1fr; }

  #pizzas { background-attachment: scroll; }
  .hero { min-height: 92vh; }
  .hero-actions { flex-direction: column; align-items: center; }

  .pizza-table th, .pizza-table td { padding: 10px 12px; font-size: 13px; }
  .fatale-prices { justify-content: center; }
  .formule-foot-card { flex-wrap: wrap; }
  .supplements-section { padding: 22px; }
  .sides-grid { grid-template-columns: 1fr 1fr; }
  .agency-grid { padding: 28px 24px; }
  .contact-cta-box { padding: 24px; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr 1fr; gap: 11px; }
  .product-info { padding: 13px 14px 16px; gap: 5px; }
  .product-info h3 { font-size: 14px; }
  .product-price { font-size: 15px; }
  .product-desc { font-size: 12px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .pizza-table { font-size: 12px; }
  .pizza-table th, .pizza-table td { padding: 8px 10px; }
  .sides-grid { grid-template-columns: 1fr; }
  .ingredients-grid .ingredient-tag { font-size: 11px; padding: 4px 10px; }
  .supplements-section { padding: 18px; }
  .agency-grid { padding: 22px 18px; }
  .contact-address-card { flex-direction: column; gap: 12px; }
}
