
/* ── LUCIDE SVG ICONS — Global ────────────────────────────────── */
svg { display: inline-block; vertical-align: middle; flex-shrink: 0; }
.nav-cart-btn svg { margin-right: 4px; }
.cp-close svg { pointer-events: none; }
.cp-empty-icon { text-align:center; padding: 40px 0 20px; }
.cp-empty-icon svg { opacity: .2; display: block; margin: 0 auto 16px; }
.toast-icon svg { color: #22c55e; }
.theme-toggle-btn svg { transition: transform .35s, opacity .25s; }
[data-theme="light"] .theme-icon-dark  { display: none !important; }
[data-theme="light"] .theme-icon-light { display: inline-flex !important; }
[data-theme="dark"]  .theme-icon-light { display: none !important; }
[data-theme="dark"]  .theme-icon-dark  { display: inline-flex !important; }
.sb-icon { display:inline-flex; align-items:center; }
/* ════════════════════════════════════════════════════════════
   MI GUSTO PIZZA — style.css
   Architecture : CSS Custom Properties → Dark/Light natif
   Performance  : Pas de JS pour les couleurs, transition douce
════════════════════════════════════════════════════════════ */

/* ── THÈME SOMBRE (défaut) ── */
:root,
[data-theme="dark"] {
  --bg:          #080808;
  --bg-alt:      #111111;
  --card:        #181818;
  --border:      #242424;
  --border-l:    #2e2e2e;
  --white:       #F4EFE8;
  --muted:       rgba(244,239,232,0.55);
  --gray:        #666;
  --gray-l:      #888;

  --red:         #D42B2B;
  --red-h:       #FF3535;
  --red-dim:     rgba(212,43,43,0.12);
  --red-glow:    rgba(212,43,43,0.30);

  --btn-ghost-border: rgba(244,239,232,0.22);
  --btn-ghost-hover:  rgba(244,239,232,0.06);
  --nav-bg-scroll:    rgba(8,8,8,0.92);
  --mobile-nav-bg:    rgba(8,8,8,0.97);
  --input-bg:    rgba(255,255,255,0.03);
  --input-focus: rgba(212,43,43,0.05);
  --overlay:     rgba(0,0,0,0.75);
  --slide-overlay: linear-gradient(105deg,rgba(8,8,8,0.92) 0%,rgba(8,8,8,0.60) 50%,rgba(8,8,8,0.12) 100%);

  --theme-transition: background-color .35s ease, color .35s ease, border-color .35s ease;
}

/* ── THÈME CLAIR ── */
[data-theme="light"] {
  --bg:          #FAFAF8;
  --bg-alt:      #F0EDE8;
  --card:        #FFFFFF;
  --border:      #E0DAD2;
  --border-l:    #C8C0B4;
  --white:       #1A1209;
  --muted:       rgba(26,18,9,0.58);
  --gray:        #8A8480;
  --gray-l:      #6B6560;

  --red:         #C42222;
  --red-h:       #E02828;
  --red-dim:     rgba(196,34,34,0.08);
  --red-glow:    rgba(196,34,34,0.22);

  --btn-ghost-border: rgba(26,18,9,0.22);
  --btn-ghost-hover:  rgba(26,18,9,0.06);
  --nav-bg-scroll:    rgba(250,250,248,0.94);
  --mobile-nav-bg:    rgba(250,250,248,0.98);
  --input-bg:    rgba(0,0,0,0.03);
  --input-focus: rgba(196,34,34,0.04);
  --overlay:     rgba(0,0,0,0.55);
  --slide-overlay: linear-gradient(105deg,rgba(250,250,248,0.88) 0%,rgba(250,250,248,0.52) 50%,rgba(250,250,248,0.08) 100%);
}

/* ── RESET & BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html  { scroll-behavior: smooth; font-size: 16px; }
body  {
  background: var(--bg);
  color: var(--white);
  font-family: 'DM Sans', sans-serif;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  transition: var(--theme-transition);
}
img   { display: block; max-width: 100%; }
a     { text-decoration: none; color: inherit; }
button{ cursor: pointer; border: none; background: none; font-family: inherit; }
ul    { list-style: none; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track  { background: var(--bg); }
::-webkit-scrollbar-thumb  { background: var(--red); border-radius: 4px; }

/* ── NAVBAR ── */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 110px; display: flex; align-items: center;
  justify-content: space-between;
  padding: 0 clamp(16px,4vw,60px);
  transition: background .4s, border-color .4s, box-shadow .4s;
  overflow: visible;
}
#navbar::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.55) 0%, transparent 100%);
  z-index: -1;
  pointer-events: none;
  transition: opacity .4s;
}
#navbar.scrolled::before { opacity: 0; }
#navbar.scrolled {
  background: var(--nav-bg-scroll);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 4px 24px rgba(0,0,0,0.08);
}
.nav-logo { display: flex; align-items: center; }
.nav-logo-img {
  height: 62px;
  width: auto;
  object-fit: contain;
  /* Logo blanc sur dark, inverser sur light */
  filter: brightness(0) invert(1);
  transition: opacity .25s, filter .35s, height .35s ease, margin-top .35s ease;
}
[data-theme="light"] .nav-logo-img {
  filter: brightness(0) invert(1); /* toujours blanc si pas de logo-light */
}
/* Logo dédié light mode: pas de filtre */
[data-theme="light"] .nav-logo-light {
  filter: none !important;
}
[data-theme="dark"] .nav-logo-dark {
  filter: brightness(0) invert(1);
}
.nav-logo:hover .nav-logo-img { opacity: .82; }
#navbar.scrolled .nav-logo-img {
  filter: brightness(0) invert(1);
  /* hauteur gérée par JS — main.js */
}
.nav-center { display: flex; gap: clamp(18px,2.5vw,38px); }
.nav-center a {
  font-size: 0.88rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,0.90);
  position: relative; padding-bottom: 3px;
  transition: color .25s;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
}
.nav-center a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 1px; background: var(--red);
  transition: width .3s ease;
}
.nav-center a:hover, .nav-center a.active { color: #fff; }
.nav-center a:hover::after, .nav-center a.active::after { width: 100%; }
.nav-center a.active { color: var(--red); }
#navbar.scrolled .nav-center a { color: var(--muted); text-shadow: none; }
#navbar.scrolled .nav-center a:hover { color: var(--white); }
.nav-right { display: flex; align-items: center; gap: 12px; }

/* Bouton thème */
.theme-toggle-btn {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid var(--border-l);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--white);
  transition: border-color .25s, background .25s, transform .3s;
  flex-shrink: 0;
}

.theme-toggle-btn:hover { border-color: var(--red); transform: rotate(20deg); }

/* Bouton panier */
.nav-cart-btn {
  display: flex; align-items: center; gap: 8px;
  background: var(--red); color: #fff;
  padding: 10px 20px; border-radius: 50px;
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.5px;
  transition: all .25s; position: relative;
}
.nav-cart-btn:hover {
  background: var(--red-h);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px var(--red-glow);
}
.cart-badge {
  position: absolute; top: -6px; right: -6px;
  width: 20px; height: 20px; border-radius: 50%;
  background: #fff; color: var(--red);
  font-size: 0.65rem; font-weight: 700;
  display: flex; align-items: center; justify-content: center;
  border: 2px solid var(--red);
  transform: scale(0); transition: transform .3s cubic-bezier(.34,1.56,.64,1);
}
.cart-badge.visible { transform: scale(1); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px; padding: 8px;
  border-radius: 8px; border: 1px solid var(--border); transition: border-color .25s;
}
.hamburger:hover { border-color: var(--red); }
.hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--white); border-radius: 2px; transition: all .35s ease;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg)  translate(4.5px,4.5px); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: translateX(-8px); }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(4.5px,-4.5px); }

/* Mobile nav */
.mobile-nav {
  position: fixed; top: 90px; left: 0; right: 0; bottom: 0;
  background: var(--mobile-nav-bg);
  backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px);
  z-index: 850;
  display: flex; flex-direction: column;
  padding: 40px clamp(16px,6vw,60px); gap: 4px;
  transform: translateX(100%); transition: transform .4s ease;
}
.mobile-nav.open { transform: translateX(0); }
.mobile-nav a {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.5rem,5vw,2.4rem);
  letter-spacing: 3px; color: var(--muted);
  border-bottom: 1px solid var(--border);
  padding: 16px 0; display: block;
  transition: color .25s, padding-left .25s;
}
.mobile-nav a:hover { color: var(--white); padding-left: 12px; }


/* ── ESPACEMENT GLOBAL SOUS LE HEADER FIXED ── */
/* Toutes les sections héros des pages principales */
.page-hero,
.contact-hero,
.hero-section {
  padding-top: 140px;
}
@media (max-width: 768px) {
  .page-hero,
  .contact-hero,
  .hero-section {
    padding-top: 120px;
  }
}

/* ── HERO ── */
.hero {
  position: relative; width: 100%;
  height: 100svh; min-height: 600px; overflow: hidden;
}
.slides-wrapper { position: absolute; inset: 0; }
.slide { position: absolute; inset: 0; opacity: 0; transition: opacity 1.2s ease; }
.slide.active { opacity: 1; }
.slide-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  transform: scale(1.06); transition: transform 7s ease;
}
.slide.active .slide-bg { transform: scale(1); }
.slide::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: var(--slide-overlay);
}
.slide::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 200px; z-index: 1;
  background: linear-gradient(to top, var(--bg), transparent);
}
.hero-content {
  position: relative; z-index: 10; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: 0 clamp(16px,6vw,80px);
  padding-top: 90px;
  padding-bottom: clamp(100px,14vw,140px); /* réserve pour hero-stats */
  max-height: 100svh;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  margin-bottom: 24px; opacity: 0;
  animation: slideInLeft .9s .3s ease forwards;
}
.hero-eyebrow-line  { width: 40px; height: 1px; background: var(--red); }
.hero-eyebrow-text  { font-size: 0.72rem; letter-spacing: 4px; text-transform: uppercase; color: var(--red); font-weight: 600; }
.hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(3.2rem,8vw,7.5rem); line-height: .9;
  letter-spacing: 2px; opacity: 0;
  animation: slideInLeft .9s .5s ease forwards; max-width: 800px;
}
.hero-subtitle {
  margin-top: 16px;
  font-size: clamp(0.82rem,1.3vw,0.98rem);
  color: var(--muted); line-height: 1.7;
  max-width: 480px; opacity: 0;
  animation: slideInLeft .9s .7s ease forwards;
}
.hero-actions {
  display: flex; gap: 12px; margin-top: 28px;
  flex-wrap: nowrap; opacity: 0;
  animation: slideInLeft .9s .9s ease forwards;
  /* Jamais en dessous — aligné au bas du contenu */
}
@media (max-width: 480px) {
  .hero-actions { flex-wrap: wrap; }
  .btn-red, .btn-ghost { font-size: 0.74rem; padding: 11px 18px; }
}

/* ── BUTTONS ── */
.btn-red {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--red); color: #fff;
  padding: clamp(12px,1.5vw,16px) clamp(22px,2.5vw,32px);
  border-radius: 4px;
  font-size: clamp(0.78rem,1.2vw,0.9rem); font-weight: 600;
  letter-spacing: 1px; text-transform: uppercase;
  transition: all .3s ease;
}
.btn-red:hover {
  background: var(--red-h);
  transform: translateY(-2px);
  box-shadow: 0 16px 40px var(--red-glow);
}
.btn-red .arrow { transition: transform .3s; }
.btn-red:hover .arrow { transform: translateX(4px); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent; color: var(--white);
  padding: clamp(12px,1.5vw,16px) clamp(22px,2.5vw,32px);
  border-radius: 4px; border: 1px solid var(--btn-ghost-border);
  font-size: clamp(0.78rem,1.2vw,0.9rem); font-weight: 500;
  letter-spacing: 1px; text-transform: uppercase; transition: all .3s;
}
.btn-ghost:hover { border-color: var(--white); background: var(--btn-ghost-hover); }

/* ── HERO STATS ── */
.hero-stats {
  position: absolute; bottom: 0; left: 0; right: 0; z-index: 10;
  display: flex; align-items: stretch;
  border-top: 1px solid var(--border);
  background: rgba(8,8,8,0.65);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
}
[data-theme="light"] .hero-stats { background: rgba(250,250,248,0.75); }
.hero-stat {
  flex: 1; padding: clamp(16px,2vw,24px) clamp(16px,3vw,40px);
  border-right: 1px solid var(--border);
  display: flex; align-items: center; gap: 14px;
}
.hero-stat:last-child { border-right: none; }
.hs-icon  { font-size: 1.5rem; }
.hs-num   { font-family: 'Bebas Neue', sans-serif; font-size: clamp(1.4rem,2.5vw,1.9rem); color: var(--red); line-height: 1; }
.hs-label { font-size: clamp(0.65rem,1vw,0.75rem); color: var(--gray); letter-spacing: 1px; text-transform: uppercase; }

/* ── SLIDER CONTROLS ── */
/* ── SLIDER CONTROLS — tout sur la droite ── */
.slider-controls {
  position: absolute;
  right: clamp(20px,3vw,48px);
  top: 50%; transform: translateY(-50%);
  z-index: 10;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}

/* Dots */
.slider-dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: rgba(255,255,255,.28); cursor: pointer;
  transition: all .35s cubic-bezier(.22,.68,0,1.2);
}
.slider-dot.active {
  background: #fff; height: 24px; border-radius: 3px;
  box-shadow: 0 0 10px rgba(255,255,255,.35);
}

/* Séparateur */
.slider-sep {
  width: 1px; height: 20px;
  background: rgba(255,255,255,.15);
}

/* Flèches verticales */
.slider-arrows {
  display: flex; flex-direction: column; gap: 6px;
}
.s-arrow {
  width: 40px; height: 40px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  color: #fff; font-size: .9rem;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; transition: all .25s ease;
}
.s-arrow:hover {
  border-color: var(--red); background: var(--red);
  box-shadow: 0 4px 16px var(--red-glow);
  transform: scale(1.1);
}

/* Compteur */
.slide-counter {
  font-family: 'Bebas Neue', sans-serif;
  font-size: .75rem; letter-spacing: 2px;
  color: rgba(255,255,255,.4);
  text-align: center; line-height: 1.3;
  user-select: none;
}
.slide-counter #slideCurrentNum {
  display: block; color: #fff;
  font-size: 1.1rem; letter-spacing: 1px;
}

/* Barre de progression */
.slider-progress {
  position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: rgba(255,255,255,.08); z-index: 10;
}
.slider-progress-bar { height: 100%; background: var(--red); width: 0; transition: none; }
.slider-progress-bar.animating { transition: width 6s linear; width: 100%; }

/* Supprimer l'ancienne barre nav */
.slider-nav-bar { display: none; }

/* ── TICKER ── */
.ticker { background: var(--red); overflow: hidden; padding: 14px 0; position: relative; }
.ticker::before, .ticker::after {
  content: ''; position: absolute; top: 0; bottom: 0; width: 60px; z-index: 2;
}
.ticker::before { left:  0; background: linear-gradient(to right, var(--red), transparent); }
.ticker::after  { right: 0; background: linear-gradient(to left,  var(--red), transparent); }
.ticker-track {
  display: flex; animation: tickerScroll 28s linear infinite; width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 1.5px; text-transform: uppercase;
  white-space: nowrap; color: #fff;
}
.ticker-sep { opacity: 0.5; font-size: 0.6rem; }
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTIONS ── */
.section     { padding: clamp(60px,10vw,120px) clamp(16px,6vw,80px); }
.section-alt { background: var(--bg-alt); }
.s-label {
  display: inline-flex; align-items: center; gap: 12px;
  color: var(--red); font-size: 0.7rem; letter-spacing: 4px;
  text-transform: uppercase; font-weight: 600; margin-bottom: 16px;
}
.s-label::before { content: ''; width: 32px; height: 1px; background: var(--red); }
.s-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(2.8rem,6vw,5.5rem); letter-spacing: 1px; line-height: .95;
}
.s-title em { font-style: italic; color: var(--red); font-family: 'Cormorant Garamond', serif; font-weight: 300; }

/* ── MENU ── */
.menu-top {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 24px; margin-bottom: clamp(32px,5vw,60px);
}
.menu-filters { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 20px; }
.filter-btn {
  padding: 9px 22px; border-radius: 2px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 1.5px; text-transform: uppercase;
  border: 1px solid var(--border-l); color: var(--gray);
  transition: all .25s; cursor: pointer; background: none;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--red); color: #fff; background: var(--red);
}
.pizza-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%,300px),1fr));
  gap: clamp(16px,2vw,24px);
}
.pizza-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 2px;
  overflow: hidden; cursor: pointer;
  transition: transform .4s ease, box-shadow .4s, border-color .3s;
}
.pizza-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 32px 64px rgba(0,0,0,0.2);
  border-color: var(--border-l);
}
.pizza-card:hover .pizza-card-img { transform: scale(1.08); }
.pc-img-wrap { overflow: hidden; position: relative; aspect-ratio: 4/3; }
.pizza-card-img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.pc-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--red); color: #fff;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; padding: 5px 12px; border-radius: 2px;
}
.pc-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.5), transparent 50%);
  opacity: 0; transition: opacity .3s;
}
.pizza-card:hover .pc-overlay { opacity: 1; }
.pc-body    { padding: 20px 22px 22px; }
.pc-name    { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; font-weight: 600; margin-bottom: 6px; }
.pc-ingredients { font-size: 0.78rem; color: var(--gray); line-height: 1.55; margin-bottom: 18px; }
.pc-footer  { display: flex; align-items: center; justify-content: space-between; }
.pc-price   { font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--red); line-height: 1; }
.pc-price sup { font-size: 0.9rem; vertical-align: super; }
.pc-add {
  width: 40px; height: 40px; border-radius: 2px; background: var(--red);
  color: #fff; font-size: 1.4rem;
  display: flex; align-items: center; justify-content: center;
  transition: all .3s cubic-bezier(.34,1.56,.64,1);
}
.pc-add:hover { background: var(--red-h); transform: rotate(90deg) scale(1.15); }

/* ── STEPS ── */
.steps-wrap {
  display: grid; grid-template-columns: repeat(auto-fit,minmax(min(100%,220px),1fr));
  margin-top: clamp(32px,5vw,60px);
  border: 1px solid var(--border); border-radius: 2px; overflow: hidden;
}
.step-item {
  padding: clamp(28px,4vw,48px) clamp(20px,3vw,36px);
  border-right: 1px solid var(--border);
  position: relative; overflow: hidden; transition: background .3s;
}
.step-item:last-child { border-right: none; }
.step-item::before {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0;
  height: 2px; background: var(--red); transform: scaleX(0); transition: transform .4s ease;
}
.step-item:hover { background: var(--red-dim); }
.step-item:hover::before { transform: scaleX(1); }
.step-num {
  font-family: 'Bebas Neue', sans-serif; font-size: 5rem;
  color: var(--border-l); line-height: .9; margin-bottom: 20px; transition: color .3s;
}
.step-item:hover .step-num { color: rgba(212,43,43,0.2); }
.step-emoji { font-size: 1.8rem; margin-bottom: 12px; }
.step-title { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; font-weight: 600; margin-bottom: 8px; }
.step-desc  { font-size: 0.8rem; color: var(--gray); line-height: 1.65; }

/* ── EVENTS ── */
.events-grid {
  display: grid; grid-template-columns: repeat(auto-fill,minmax(min(100%,340px),1fr));
  gap: clamp(16px,2vw,24px); margin-top: clamp(32px,5vw,60px);
}
.event-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 2px;
  overflow: hidden; transition: all .35s ease; cursor: pointer;
}
.event-card:hover { border-color: var(--red); transform: translateY(-6px); }
.ec-img { width: 100%; aspect-ratio: 16/9; object-fit: cover; transition: transform .5s ease; }
.event-card:hover .ec-img { transform: scale(1.05); }
.ec-body  { padding: 24px; }
.ec-tag   { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 10px; }
.ec-title { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; margin-bottom: 10px; }
.ec-desc  { font-size: 0.8rem; color: var(--gray); line-height: 1.65; }

/* ── ABOUT ── */
.about-layout {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(32px,8vw,100px); align-items: center;
}
.about-img-wrap { position: relative; }
.about-img { width: 100%; aspect-ratio: 3/4; object-fit: cover; border-radius: 2px; }
.about-float {
  position: absolute; bottom: -24px; right: -24px;
  background: var(--red); border-radius: 2px;
  padding: 24px 28px; text-align: center;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3); color: #fff;
}
.af-num { font-family: 'Bebas Neue', sans-serif; font-size: 2.8rem; line-height: 1; }
.af-txt { font-size: 0.65rem; letter-spacing: 2px; text-transform: uppercase; opacity: 0.85; }
.about-line { width: 40px; height: 1px; background: var(--border-l); margin: 24px 0; }
.about-p    { font-size: 0.9rem; color: var(--muted); line-height: 1.85; margin-bottom: 16px; }
.values     { display: flex; flex-direction: column; gap: 12px; margin-top: 28px; }
.value-row  {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.85rem; padding: 12px 16px;
  border: 1px solid var(--border); border-radius: 2px;
  transition: border-color .25s, background .25s;
}
.value-row:hover { border-color: var(--border-l); background: var(--red-dim); }
.vr-icon {
  width: 36px; height: 36px; border-radius: 2px;
  background: var(--red-dim);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}

/* ── CONTACT ── */
.contact-layout {
  display: grid; grid-template-columns: 1fr 1.5fr;
  gap: clamp(32px,6vw,80px); margin-top: clamp(32px,5vw,60px);
}
.contact-info { display: flex; flex-direction: column; gap: 24px; }
.ci {
  display: flex; gap: 16px; align-items: flex-start;
  padding: 20px; border: 1px solid var(--border); border-radius: 2px; transition: border-color .25s;
}
.ci:hover { border-color: var(--border-l); }
.ci-icon {
  width: 42px; height: 42px; border-radius: 2px; flex-shrink: 0;
  background: var(--red-dim); display: flex; align-items: center; justify-content: center; font-size: 1rem;
}
.ci-tag { font-size: 0.65rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); font-weight: 600; margin-bottom: 5px; }
.ci-val { font-size: 0.88rem; line-height: 1.6; color: var(--muted); }
.hours-table { display: flex; flex-direction: column; gap: 6px; margin-top: 4px; }
.ht-row  { display: flex; justify-content: space-between; font-size: 0.82rem; }
.ht-day  { color: var(--gray); }
.ht-time { color: #22c55e; font-weight: 500; }
.form-wrap {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 2px; padding: clamp(24px,4vw,44px);
}
.form-title { font-family: 'Cormorant Garamond', serif; font-size: 1.6rem; font-weight: 600; margin-bottom: 28px; }
.form-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.fg { display: flex; flex-direction: column; gap: 8px; margin-bottom: 14px; }
.fg label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--gray); }
.fg input, .fg textarea, .fg select {
  background: var(--input-bg); border: 1px solid var(--border-l); border-radius: 2px;
  color: var(--white); font-family: 'DM Sans', sans-serif; font-size: 0.88rem;
  padding: 12px 16px; outline: none; transition: border-color .25s, background .25s;
}
.fg input:focus, .fg textarea:focus, .fg select:focus {
  border-color: var(--red); background: var(--input-focus);
}
.fg textarea { resize: vertical; min-height: 110px; }
.fg select option { background: var(--bg-alt); }
.form-submit { width: 100%; margin-top: 4px; justify-content: center; border-radius: 2px; letter-spacing: 1.5px; }

/* ── FOOTER ── */
footer {
  background: var(--bg); border-top: 1px solid var(--border);
  padding: clamp(48px,8vw,80px) clamp(16px,6vw,80px) 0;
}
.footer-grid {
  display: grid; grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: clamp(24px,4vw,48px);
  padding-bottom: clamp(40px,5vw,64px); border-bottom: 1px solid var(--border);
}
.fb-brand { font-family: 'Bebas Neue', sans-serif; font-size: 2rem; letter-spacing: 3px; }
.fb-sub   { font-size: 0.65rem; letter-spacing: 4px; color: var(--red); text-transform: uppercase; font-weight: 600; }
.fb-desc  { margin-top: 18px; font-size: 0.82rem; color: var(--gray); line-height: 1.75; max-width: 240px; }
.fb-socials { display: flex; gap: 10px; margin-top: 20px; }
.fb-social {
  width: 38px; height: 38px; border-radius: 2px;
  border: 1px solid var(--border); display: flex; align-items: center;
  justify-content: center; font-size: 0.8rem; color: var(--gray);
  font-weight: 600; transition: all .25s;
}
.fb-social:hover { border-color: var(--red); color: var(--red); background: var(--red-dim); }
.fc h4 { font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 20px; font-weight: 600; }
.fc ul { display: flex; flex-direction: column; gap: 10px; }
.fc ul li a { font-size: 0.82rem; color: var(--gray); transition: color .25s, padding-left .25s; display: block; }
.fc ul li a:hover { color: var(--red); padding-left: 6px; }
.fh-row  { display: flex; justify-content: space-between; margin-bottom: 10px; font-size: 0.8rem; }
.fh-day  { color: var(--gray); }
.fh-time { color: #22c55e; font-weight: 500; }
.footer-bottom {
  padding: 24px 0; display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap;
  gap: 12px; font-size: 0.75rem; color: var(--gray);
}

/* ── CART DRAWER ── */
/* ═══════════════════════════════════════════
   CART DRAWER — Design Pro
   ═══════════════════════════════════════════ */
.cart-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 9990; opacity: 0; pointer-events: none;
  transition: opacity .35s;
}
.cart-overlay.open { opacity: 1; pointer-events: all; }

.cart-panel {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: min(420px, 100vw);
  background: var(--bg-alt);
  border-left: 1px solid var(--border);
  z-index: 9995; display: flex; flex-direction: column;
  transform: translateX(100%);
  transition: transform .42s cubic-bezier(.22,.68,0,1.05);
}
.cart-panel.open { transform: translateX(0); }

/* Header */
.cp-head {
  padding: 20px 22px;
  border-bottom: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
  flex-shrink: 0;
}
.cp-head-left { display: flex; align-items: center; gap: 12px; }
.cp-title { font-family: 'Bebas Neue', sans-serif; font-size: 1.5rem; letter-spacing: 1px; }
.cp-count-badge {
  background: var(--red); color: #fff;
  font-size: .7rem; font-weight: 700;
  padding: 2px 8px; border-radius: 20px; min-width: 22px; text-align: center;
}
.cp-close {
  width: 34px; height: 34px; border-radius: 8px;
  border: 1px solid var(--border); color: var(--gray);
  font-size: .85rem; display: flex; align-items: center; justify-content: center;
  transition: all .2s; cursor: pointer; background: transparent;
}
.cp-close:hover { border-color: var(--red); color: var(--red); background: var(--red-dim); }

/* Empty */
.cp-items { flex: 1; overflow-y: auto; padding: 16px 20px; display: flex; flex-direction: column; gap: 10px; scrollbar-width: thin; }
.cp-empty {
  flex: 1; display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 12px; color: var(--gray); padding: 60px 0; text-align: center;
}
.cp-empty-icon { font-size: 3.5rem; opacity: .15; }
.cp-empty p { font-size: .85rem; opacity: .6; }

/* Item card */
.cp-item {
  display: flex; align-items: center; gap: 12px;
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 12px; padding: 10px 12px;
  transition: border-color .2s, transform .2s;
  animation: slideInCart .25s ease;
}
.cp-item.removing {
  animation: slideOutCart .2s ease forwards;
}
@keyframes slideInCart {
  from { opacity: 0; transform: translateX(20px); }
  to   { opacity: 1; transform: translateX(0); }
}
@keyframes slideOutCart {
  to { opacity: 0; transform: translateX(30px); height: 0; padding: 0; margin: 0; overflow: hidden; }
}
.cp-item:hover { border-color: var(--border-l); }

/* Image */
.cp-item-img {
  width: 54px; height: 54px; border-radius: 8px; object-fit: cover;
  flex-shrink: 0; background: var(--bg-alt);
}
.cp-item-emoji {
  width: 54px; height: 54px; border-radius: 8px; flex-shrink: 0;
  background: var(--bg-alt); display: flex; align-items: center;
  justify-content: center; font-size: 1.6rem;
}

/* Info */
.cp-item-body { flex: 1; min-width: 0; }
.cp-item-name {
  font-size: .83rem; font-weight: 600; color: var(--white);
  line-height: 1.3; margin-bottom: 3px;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.cp-item-unit { font-size: .72rem; color: var(--gray); }
.cp-item-subtotal {
  font-size: .88rem; font-weight: 700; color: var(--red);
  margin-top: 4px; transition: color .15s;
}
.cp-item-subtotal.bump { color: #f97316; }

/* Promo row */
.cp-item.is-promo { border-color: rgba(22,163,74,.35); background: rgba(22,163,74,.05); }
.cp-item.is-promo .cp-item-subtotal { color: #16a34a; }

/* Contrôles quantité */
.cp-item-ctrl {
  display: flex; flex-direction: column; align-items: center; gap: 6px; flex-shrink: 0;
}
.cp-qty-row {
  display: flex; align-items: center; gap: 0;
  border: 1px solid var(--border); border-radius: 8px; overflow: hidden;
}
.cp-qty-btn {
  width: 30px; height: 28px; border: none;
  background: transparent; color: var(--gray);
  font-size: 1.1rem; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.cp-qty-btn:hover { background: var(--red); color: #fff; }
.cp-qty-btn.minus:hover { background: #f97316; }
.cp-qty-num {
  width: 36px; text-align: center; font-size: .9rem; font-weight: 700;
  color: var(--white); border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  line-height: 28px;
}
/* Input qty éditable dans le cart drawer */
.cp-qty-input {
  width: 36px; height: 28px; text-align: center; font-size: .9rem;
  font-weight: 700; color: var(--white); background: var(--bg);
  border: none; border-left: 1px solid var(--border); border-right: 1px solid var(--border);
  outline: none; font-family: inherit;
}
.cp-qty-input:focus { background: var(--input-focus); color: var(--red); }
.cp-del-btn {
  width: 26px; height: 26px; border-radius: 6px; border: none;
  background: transparent; color: #fff; cursor: pointer;
  font-size: .8rem; display: flex; align-items: center; justify-content: center;
  transition: all .15s;
}
.cp-del-btn:hover { background: rgba(220,38,38,.15); color: #ef4444; }

/* Footer */
.cp-foot {
  padding: 16px 20px; border-top: 1px solid var(--border);
  flex-shrink: 0; display: flex; flex-direction: column; gap: 14px;
}
.cp-summary { display: flex; flex-direction: column; gap: 6px; }
.cp-summary-row {
  display: flex; justify-content: space-between; align-items: center;
  font-size: .8rem; color: var(--gray);
}
.cp-summary-row.total {
  font-size: 1rem; color: var(--white); font-weight: 700;
  padding-top: 10px; border-top: 1px solid var(--border); margin-top: 4px;
}
.cp-summary-row.total .cp-total-amount {
  font-family: 'Bebas Neue', sans-serif; font-size: 1.7rem; color: var(--red); line-height: 1;
}
.cp-actions { display: flex; flex-direction: column; gap: 8px; }
.cp-clear-btn {
  background: transparent; border: 1px solid var(--border);
  color: var(--gray); font-size: .78rem; padding: 8px;
  border-radius: 8px; cursor: pointer; transition: all .2s; text-align: center;
}
.cp-clear-btn:hover { border-color: #ef4444; color: #ef4444; }

/* ── TOAST ── */
.toast-wrap {
  position: fixed; bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 9999; transition: transform .4s ease;
}
.toast-wrap.show { transform: translateX(-50%) translateY(0); }
.toast-inner {
  display: flex; align-items: center; gap: 12px;
  background: var(--card); border: 1px solid var(--border-l);
  border-radius: 2px; padding: 13px 22px;
  white-space: nowrap; box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}
.toast-icon { color: var(--red); font-size: 1rem; }
.toast-msg  { font-size: 0.85rem; font-weight: 500; }

/* ── REVEAL ── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity .75s ease, transform .75s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ── ANIMATIONS ── */
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ── RESPONSIVE ── */

/* ── HOMEPAGE FEATURED GRID ─────────────────────────────────── */
.pizza-grid--featured {
  grid-template-columns: repeat(3, 1fr) !important;
}
@media (max-width: 900px) {
  .pizza-grid--featured { grid-template-columns: repeat(2, 1fr) !important; }
}
@media (max-width: 560px) {
  .pizza-grid--featured { grid-template-columns: 1fr !important; }
}

/* CTA Découvrir */
.featured-cta {
  margin-top: 48px;
  padding-top: 36px;
  border-top: 1px solid var(--border);
}
.featured-cta-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: clamp(20px,3vw,32px) clamp(24px,4vw,48px);
}
.featured-cta-text {
  display: flex; align-items: center; gap: 12px;
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(1.2rem,2.5vw,1.7rem);
  letter-spacing: 2px; color: var(--white);
}
.featured-cta-text svg { color: var(--red); }
@media (max-width: 640px) {
  .featured-cta-inner { justify-content: center; text-align: center; }
  .featured-cta-text  { justify-content: center; }
}

@media (max-width: 1024px) {
  .about-layout, .contact-layout { grid-template-columns: 1fr; }
  .about-img-wrap { max-width: 480px; }
  .about-float    { right: 0; bottom: -16px; }
  .footer-grid    { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-center { display: none; }
  .hamburger  { display: flex; }
  .hero-stats { flex-wrap: wrap; }
  .hero-stat  { min-width: 50%; border-bottom: 1px solid var(--border); }
  .hero-stat:nth-child(even) { border-right: none; }
  /* slider-controls géré par slider-nav-bar */
  .steps-wrap { grid-template-columns: 1fr 1fr; }
  .step-item  { border-bottom: 1px solid var(--border); }
  .step-item:nth-child(even) { border-right: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-grid-2 { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .hero-title { font-size: clamp(2.8rem,13vw,4.5rem); }
  .hero-actions { flex-direction: column; }
  .btn-red, .btn-ghost { justify-content: center; }
  .steps-wrap { grid-template-columns: 1fr; }
  .step-item  { border-right: none; }
  .slider-nav-bar, .slide-counter, .slider-controls { display: none; }
}


/* ══════════════════════════════════════════════════════════════
   UPSELL MODAL — Boissons & Desserts
   ══════════════════════════════════════════════════════════════ */

/* Fond overlay */
.upsell-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.55);
  backdrop-filter: blur(4px);
  z-index: 9999;
  display: flex;
  align-items: flex-end;        /* glisse depuis le bas */
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s;
}
@media (min-width: 640px) {
  .upsell-overlay { align-items: center; }
}
.upsell-overlay.active {
  opacity: 1;
  visibility: visible;
}

/* Modal box */
.upsell-modal {
  position: relative;
  background: var(--bg-card, #fff);
  border-radius: 20px 20px 0 0;
  width: 100%;
  max-width: 560px;
  max-height: 92vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateY(60px);
  transition: transform .35s cubic-bezier(.22,.68,0,1.2);
  box-shadow: 0 -6px 40px rgba(0,0,0,.2);
}
@media (min-width: 640px) {
  .upsell-modal {
    border-radius: 20px;
    transform: scale(.92);
  }
}
.upsell-overlay.active .upsell-modal {
  transform: translateY(0) scale(1);
}

/* Bouton fermer */
.upsell-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 34px; height: 34px;
  border-radius: 50%;
  border: none;
  background: var(--bg-hover, #f0f0f0);
  color: var(--text-secondary, #666);
  font-size: 16px;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  z-index: 2;
  transition: background .2s;
}
.upsell-close:hover { background: var(--color-red, #d42b2b); color: #fff; }

/* En-tête */
.upsell-header {
  text-align: center;
  padding: 28px 24px 16px;
  background: linear-gradient(135deg, var(--color-red, #d42b2b) 0%, #e85d04 100%);
  color: #fff;
  flex-shrink: 0;
}
.upsell-icon { font-size: 40px; margin-bottom: 6px; animation: upBounce .6s ease; }
.upsell-title { font-size: 22px; font-weight: 800; margin: 0 0 4px; }
.upsell-subtitle { font-size: 14px; opacity: .9; margin: 0; }

@keyframes upBounce {
  0%   { transform: scale(0); }
  60%  { transform: scale(1.2); }
  100% { transform: scale(1); }
}

/* Corps scrollable */
.upsell-body {
  overflow-y: auto;
  flex: 1;
  padding: 16px 16px 0;
  overscroll-behavior: contain;
}

/* Loading */
.upsell-loading {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  padding: 40px;
  color: var(--text-secondary, #888);
  font-size: 14px;
}
.upsell-spinner {
  width: 32px; height: 32px;
  border: 3px solid var(--border, #eee);
  border-top-color: var(--color-red, #d42b2b);
  border-radius: 50%;
  animation: spin .7s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* Section (Boissons / Desserts) */
.upsell-section { margin-bottom: 16px; }
.upsell-section-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  color: var(--text-secondary, #888);
  margin: 0 0 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.upsell-section-title::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border, #eee);
}

/* Grille de cartes */
.upsell-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media (min-width: 460px) {
  .upsell-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Carte produit */
.upsell-card {
  position: relative;
  background: var(--bg-card, #fff);
  border: 2px solid var(--border, #eee);
  border-radius: 14px;
  padding: 14px 10px 12px;
  text-align: center;
  transition: border-color .2s, transform .2s, box-shadow .2s;
  cursor: default;
}
.upsell-card:hover {
  border-color: var(--color-red, #d42b2b);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212,43,43,.12);
}
.upsell-card.in-cart {
  border-color: #16a34a;
  background: var(--bg-success-light, #f0fdf4);
}

.upsell-badge {
  position: absolute;
  top: -8px; left: 50%;
  transform: translateX(-50%);
  background: var(--color-red, #d42b2b);
  color: #fff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .5px;
  padding: 2px 8px;
  border-radius: 20px;
  white-space: nowrap;
}

.upsell-card-emoji { font-size: 30px; margin-bottom: 6px; }
.upsell-card-name  {
  font-size: 12px;
  font-weight: 700;
  color: var(--text-primary, #1a1a1a);
  margin-bottom: 3px;
  line-height: 1.3;
}
.upsell-card-desc  {
  font-size: 10px;
  color: var(--text-secondary, #888);
  margin-bottom: 6px;
  line-height: 1.3;
}
.upsell-card-price {
  font-size: 15px;
  font-weight: 800;
  color: var(--color-red, #d42b2b);
  margin-bottom: 10px;
}

.upsell-add-btn {
  width: 100%;
  padding: 7px 6px;
  background: var(--color-red, #d42b2b);
  color: #fff;
  border: none;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 700;
  cursor: pointer;
  transition: background .2s, transform .1s;
}
.upsell-add-btn:hover   { background: #b91c1c; transform: scale(1.03); }
.upsell-add-btn:active  { transform: scale(.97); }
.upsell-add-btn.added   {
  background: #16a34a;
  cursor: default;
}
.upsell-add-btn.added:hover { background: #16a34a; transform: none; }

/* Pied */
.upsell-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px 20px;
  gap: 10px;
  border-top: 1px solid var(--border, #eee);
  flex-shrink: 0;
  background: var(--bg-card, #fff);
}
.upsell-skip {
  color: var(--text-secondary, #888);
  background: none;
  border: none;
  font-size: 13px;
  cursor: pointer;
  padding: 8px 12px;
  border-radius: 8px;
  transition: color .2s, background .2s;
}
.upsell-skip:hover { background: var(--bg-hover, #f5f5f5); color: var(--text-primary, #333); }

.upsell-checkout-btn {
  background: var(--color-red, #d42b2b);
  color: #fff !important;
  padding: 10px 20px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s, transform .1s;
  white-space: nowrap;
}
.upsell-checkout-btn:hover { background: #b91c1c; transform: scale(1.02); }

/* Dark mode */
[data-theme="dark"] .upsell-modal { background: var(--bg-card); }
[data-theme="dark"] .upsell-card  { background: var(--bg-secondary); }
[data-theme="dark"] .upsell-card.in-cart { background: rgba(22,163,74,.1); }
[data-theme="dark"] .upsell-footer { background: var(--bg-card); }

/* ── LOGOS DARK / LIGHT ──────────────────────────────────── */
/* Par défaut (dark): logo dark visible, logo light caché */
.nav-logo-light { display: none; }
.nav-logo-dark  { display: block; }

/* Mode clair: inverser */
[data-theme="light"] .nav-logo-dark  { display: none; }
[data-theme="light"] .nav-logo-light { display: block; }

/* ═══════════════════════════════════════════
   FIX ESPACEMENT HEADER FIXED — TOUTES PAGES
═══════════════════════════════════════════ */
/* Toutes les sections héros doivent compenser le header de 110px */
.hero,
.ab-hero,
.ev-hero,
.contact-hero,
.legal-hero,
.page-top {
  scroll-margin-top: 110px;
}

/* Contact page */
.contact-hero {
  padding-top: 160px !important;
  padding-bottom: 80px;
}

/* Pages légales */
.legal-hero {
  padding-top: 150px !important;
}

/* Mobile: header plus petit */
@media (max-width: 768px) {
  .contact-hero  { padding-top: 130px !important; }
  .legal-hero    { padding-top: 120px !important; }
  .ab-hero       { padding-top: 120px !important; }
}

/* Icônes navbar toujours visibles */
#navbar svg { stroke: currentColor; }
[data-theme="dark"]  #navbar { color: #fff; }
[data-theme="light"] #navbar.scrolled { color: var(--white); }
/* Icône theme toggle — couleur selon thème */
.theme-toggle-btn { color: var(--white); }
[data-theme="dark"] .theme-toggle-btn { color: #ffffff; }
[data-theme="light"] .theme-toggle-btn { color: var(--white); }
/* Très petits écrans: logo plus petit */
@media (max-width: 390px) {
  .nav-logo-img { height: 45px !important; }
  #navbar { height: 80px; }
}
@media (max-width: 345px) {
  .nav-logo-img { height: 36px !important; }
  #navbar { height: 70px; }
}
