/* public/assets/css/style.css */

/* Reset très léger */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  /* Couleurs thème clair */
  --color-bg: #f9fafb;
  --color-surface: #ffffff;
  --color-border-soft: rgba(15, 23, 42, 0.08);
  --color-text-main: #0f172a;
  --color-text-muted: #6b7280;
  --color-accent: #f97316;
  --color-accent-soft: rgba(249, 115, 22, 0.08);
  --shadow-soft: 0 18px 45px rgba(15, 23, 42, 0.15);

  /* Typo */
  --font-family-base: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  --font-size-base: clamp(1rem, 1.05vw, 1.1rem);
  --radius-lg: 1.25rem;
  --radius-full: 999px;

  /* Layout */
  --layout-max-width: min(1100px, 96vw);
  --header-height: clamp(3.5rem, 8vh, 4.5rem);

  /* Header (variables pour garder clair/sombre propre) */
  --header-bg: rgba(249, 250, 251, 0.92);
  --header-border: rgba(209, 213, 219, 0.9);
  --header-shadow: 0 16px 40px rgba(15, 23, 42, 0.1);
  --header-panel-bg: rgba(249, 250, 251, 0.98);
}

html[data-theme="dark"] {
  --color-bg: #020617;
  --color-surface: #020817;
  --color-border-soft: rgba(148, 163, 184, 0.3);
  --color-text-main: #e5e7eb;
  --color-text-muted: #9ca3af;
  --color-accent: #fb923c;
  --color-accent-soft: rgba(251, 146, 60, 0.12);
  --shadow-soft: 0 22px 55px rgba(15, 23, 42, 0.75);

  --header-bg: rgba(2, 6, 23, 0.86);
  --header-border: rgba(148, 163, 184, 0.28);
  --header-shadow: 0 18px 50px rgba(15, 23, 42, 0.55);
  --header-panel-bg: rgba(2, 6, 23, 0.96);
}

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {

  margin: 0;
  min-height: 100vh;
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  line-height: 1.6;
  background: radial-gradient(
      circle at right,
      rgba(248, 250, 252, 0.6),
      transparent 50%
    ),
    var(--color-bg);
  color: var(--color-text-main);
}

/* Header / nav */

.site-header {
  position: sticky;
  top: 0;
  z-index: 600;
  backdrop-filter: blur(14px);
  background: var(--header-bg);
  border-bottom: 1px solid var(--header-border);
  box-shadow: var(--header-shadow);
}
.site-header__inner {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: clamp(0.6rem, 2vh, 0.9rem) min(1.4rem, 4vw);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(0.9rem, 2vw, 1.4rem);
}

/* Marque */

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
  text-decoration: none;
  color: inherit;
}

.brand__logo {
  width: clamp(2.5rem, 4vw, 3.2rem);
  height: clamp(2.5rem, 4vw, 3.2rem);
  /* Header plus "pro" : on retire les arrondis demandés */
  border-radius: 10px;
  overflow: hidden;
  background: radial-gradient(circle at 30% 20%, #f97316, #ec4899);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.4);
}

.brand__logo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand__text {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.brand__name {
  font-weight: 650;
  letter-spacing: 0.04em;
  font-size: clamp(1.05rem, 1.3vw, 1.25rem);
  text-transform: uppercase;
}

.brand__tagline {
  font-size: clamp(0.8rem, 1vw, 0.95rem);
  color: var(--color-text-muted);

  /* Plus "pro" : limite en caractères, pas en % (évite les retours moches) */
  max-width: clamp(14rem, 34vw, 28rem);
}

/* Navigation */

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2rem);
}

.site-nav__list {
  display: flex;
  align-items: center;
  gap: clamp(0.9rem, 1.8vw, 1.6rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-nav__item a {
  position: relative;
  text-decoration: none;
  color: var(--color-text-muted);
  font-size: clamp(0.9rem, 0.9vw, 1rem);
  padding-inline: 0.1rem;
  padding-block: 0.25rem;

  /* Empêche "À propos" (et autres) de passer sur 2 lignes */
  white-space: nowrap;
}

.site-nav__item a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0%;
  height: 2px;
  border-radius: 0;
  background: linear-gradient(90deg, #f97316, #ec4899);
  transition: width 0.22s ease-out;
}

.site-nav__item a:hover::after {
  width: 100%;
}

.site-nav__item--active a {
  color: var(--color-text-main);
  font-weight: 600;
}

.site-nav__item--active a::after {
  width: 100%;
}

/* Outils nav */

.site-nav__tools {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

/* Sélecteur de langue */

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
}

.lang-switcher label {
  color: var(--color-text-muted);
}

.lang-switcher select {
  border-radius: 0;
  border: 1px solid var(--color-border-soft);
  padding: 0.25rem 0.85rem;
  background: var(--color-surface);
  color: var(--color-text-main);
  font: inherit;
}

/* Bouton thème */

.theme-toggle {
  border-radius: 0;
  border: 1px solid var(--color-border-soft);
  padding: 0.3rem 0.85rem;
  background: linear-gradient(
    135deg,
    var(--color-surface),
    rgba(248, 250, 252, 0.7)
  );
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: clamp(0.8rem, 0.9vw, 0.95rem);
  cursor: pointer;
  box-shadow: 0 4px 18px rgba(15, 23, 42, 0.12);
}

.theme-toggle__icon {
  display: inline-flex;
}

.nav-toggle {
  display: none;
  border: none;
  background: transparent;
  flex-direction: column;
  gap: 0.22rem;
  padding: 0.4rem;
  border-radius: 0;
  cursor: pointer;
}

.nav-toggle__bar {
  width: 1.4rem;
  height: 2px;
  border-radius: 0;
  background: var(--color-text-main);
}

.nav-toggle__label {
  position: absolute;
  left: -9999px;
}

/* Fil d'Ariane */

.breadcrumb {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: clamp(0.35rem, 1vh, 0.5rem) min(1.4rem, 4vw);
  font-size: clamp(0.75rem, 0.85vw, 0.85rem);
  color: var(--color-text-muted);
  height: 1px;
}

.breadcrumb__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  align-items: baseline;
}

.breadcrumb__item--label span {
  font-weight: 500;
}

.breadcrumb__item a {
  color: var(--color-text-muted);
  text-decoration: none;
}

.breadcrumb__item a:hover {
  text-decoration: underline;
}

/* Main layout */

.site-main {
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: min(5em, 8%);
}

/* Sections */

.section {
  margin-block: clamp(2rem, 5vh, 3.5rem);
}

.section__inner {
  width: 100%;
}

.section__title {
  font-size: clamp(1.6rem, 2.4vw, 2.2rem);
  margin-bottom: clamp(1.1rem, 2vh, 1.6rem);
}

.section__subtitle {
  font-size: clamp(1.25rem, 1.9vw, 1.6rem);
  margin-bottom: clamp(0.9rem, 1.5vh, 1.2rem);
}

.section__text {
  max-width: 60ch;
  color: var(--color-text-muted);
}

.section__text--columns {
  margin-top: clamp(1.2rem, 2vh, 1.6rem);
  columns: 3 300px;
  column-gap: clamp(1.4rem, 2vw, 2rem);
}

/* Hero */

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1.1fr);
  grid-template-areas: "text image";
  gap: clamp(1.8rem, 4vw, 3rem);
  align-items: center;
  padding-block: clamp(1.8rem, 5vh, 3rem);
  
}

.hero__content {
  display: flex;
  flex-direction: column;
 
  grid-area: text;
  gap: clamp(1rem, 2vh, 1.5rem);
}

.hero__title {
  font-size: clamp(2rem, 3.1vw, 3rem);
  letter-spacing: -0.02em;
}

.hero__subtitle {
  max-width: 34rem;
  color: var(--color-text-muted);
}

.hero__cta {
  align-self: flex-start;
  margin-top: 0.4rem;
  padding: 0.7rem 1.6rem;
  border-radius: var(--radius-full);
  border: none;
  background: radial-gradient(circle at 0 0, #f97316, #ec4899);
  color: #f9fafb;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.55);
}

.hero__visual {
  position: relative;
  isolation: isolate;
  grid-area: image;
}

.hero__visual::before {
  content: "";
  position: absolute;
  inset: 8% 4%;
  border-radius: 1.8rem;
  /*background: radial-gradient(
      circle at 20% 0,
      rgba(248, 250, 252, 0.5),
      transparent 60%
    ),
    radial-gradient(circle at 80% 100%, rgba(15, 23, 42, 0.65), transparent 55%);*/
  z-index: -1;
}

.hero__visual img {
    box-shadow: var(--shadow-soft);
  width: clamp(9rem, 14vw, 15.625rem); /* max ≈ 250px */
  height: auto;
  border-radius: 1.8rem;
  display: none;
  
}

/* Cartes */

.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(230px, 100%), 1fr));
  gap: clamp(1rem, 2.1vw, 1.6rem);
  margin-top: clamp(1.5rem, 2vh, 2rem);
}

.card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: min(1.4rem, 6vw);
  border: 1px solid var(--color-border-soft);
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.08);
}

.card__title {
  font-size: clamp(1.1rem, 1.4vw, 1.3rem);
  margin-bottom: 0.4rem;
}

.card__text {
  color: var(--color-text-muted);
}

/* About */

.section--about .profile {
  margin: 0;
  text-align: center;
}

.profile__photo {
  width: clamp(220px, 27vw, 280px);
  aspect-ratio: 1 / 1;
  border-radius: 1.8rem;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

.profile__caption {
  margin-top: 0.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}

.profile__name {
  font-weight: 600;
}

.profile__role {
  color: var(--color-text-muted);
  font-size: 0.9em;
}

/* Two columns layout */

.section__inner--two-cols {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1.1fr);
  gap: clamp(1.8rem, 3vw, 2.4rem);
  align-items: start;
}

.section__image {
  width: 100%;
  border-radius: 1.5rem;
  object-fit: cover;
  box-shadow: var(--shadow-soft);
}

/* Contact */

.section--contact .section__text {
  max-width: 38ch;
}

.contact-infos {
  list-style: none;
  padding: 0;
  margin-top: 1.2rem;
  color: var(--color-text-muted);
}

.contact-infos li + li {
  margin-top: 0.3rem;
}

/* Formulaires */

.form {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
}

.form__row {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.form__row label {
  font-size: 0.9rem;
}

.form__row input,
.form__row textarea {
  border-radius: 0.8rem;
  border: 1px solid var(--color-border-soft);
  padding: 0.6rem 0.9rem;
  font: inherit;
  background: var(--color-surface);
  color: var(--color-text-main);
}

.form__actions {
  margin-top: 0.5rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  padding: 0.6rem 1.6rem;
  border-radius: var(--radius-full);
  border: none;
  background: linear-gradient(135deg, #f97316, #ec4899);
  color: #f9fafb;
  cursor: pointer;
  font-weight: 600;
}

.alert {
  border-radius: 0.9rem;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  margin-bottom: 0.8rem;
}

.alert--error {
  background: rgba(248, 113, 113, 0.1);
  border: 1px solid rgba(248, 113, 113, 0.35);
}

.alert--success {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid rgba(34, 197, 94, 0.35);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--color-border-soft);
  padding-block: clamp(0.7rem, 1.8vh, 1rem);
  background: rgba(15, 23, 42, 0.03);
  
}

html[data-theme="dark"] .site-footer {
  background: rgba(15, 23, 42, 0.7);
}

.site-footer__inner {
  max-width: 700px;
  
  margin: 0 auto;
  
  padding-inline: min(1.4rem, 4vw);
  display: flex;
  
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: clamp(0.8rem, 0.9vw, 0.9rem);
  color: var(--color-text-muted);
}

.site-footer__links {
  margin: 0;
}

.site-footer__links a {
  color: var(--color-text-muted);
  text-decoration: none;
  border-bottom: 1px dotted transparent;
}

.site-footer__links a:hover,
.site-footer__links a:focus-visible {
  color: var(--color-text-main);
  border-bottom-color: var(--color-text-muted);
}

.site-footer__admin {
  display: inline-block;
  position: fixed;
  left: 0.6rem;
  bottom: 0.6rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.55);
  color: var(--color-text-muted);
  font-size: clamp(0.7rem, 0.8vw, 0.8rem);
  text-decoration: none;
  border: 1px solid var(--color-border-soft);
  opacity: 0.35;
}

.site-footer__admin:hover,
.site-footer__admin:focus-visible {
  opacity: 0.85;
  color: var(--color-text-main);
}
.site-footer__credit a {
  color: var(--color-text-main);
  text-decoration: none;
}
.back-to-top {
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-soft);
  padding: 0.25rem 0.7rem;
  background: var(--color-surface);
  cursor: pointer;
  color: var(--color-text-main);
}

/* Responsive */

@media (max-width: 900px) {
  .hero {
    grid-template-columns: minmax(0, 1fr);
    grid-template-areas:
      "image"
      "text";
  }

  .section__inner--two-cols {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 780px) {
  .site-main {
    padding: min(4.2em, 7%);
  }

  .site-header__inner {
    padding-inline: min(1rem, 4vw);
  }

  .site-nav {
    position: fixed;
    inset: var(--header-height) 0 auto 0;
    padding: 1rem min(1.4rem, 4vw) 1.2rem;
    background: rgba(15, 23, 42, 0.97);
    backdrop-filter: blur(18px);
    flex-direction: column;
    align-items: flex-start;
    gap: 0.9rem;
    transform: translateY(-130%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.2s ease-out, opacity 0.2s ease-out;
  }

  html[data-theme="light"] .site-nav {
    background: rgba(249, 250, 251, 0.98);
  }

  .site-nav--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .section__text--columns {
    columns: 2 240px;
  }
  .site-footer__inner {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    position: relative;
  }
  /* .back-to-top {
    position: absolute;
    right: 20px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border-soft);
    padding: 0.25rem 0.7rem;
    background: var(--color-surface);
    cursor: pointer;
    color: var(--color-text-main);
  } */
}
/* =====================================================
   Burger → Croix (mobile) basé sur aria-expanded
   ===================================================== */
@media (max-width: 780px) {

  /* Le bouton devient une "zone" fixe pour placer les 3 barres */
  .nav-toggle {
    position: relative;
    width: 2rem;
    height: 1.4rem;
    padding: 0.4rem;
  }

  /* On place les barres en absolu pour pouvoir les croiser */
  .nav-toggle__bar {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-text-main);
    transition:
      transform 0.22s ease,
      opacity 0.18s ease,
      top 0.22s ease;
  }

  /* Positions de base */
  .nav-toggle__bar:nth-child(1) { top: 0; }
  .nav-toggle__bar:nth-child(2) { top: 50%; transform: translateY(-50%); }
  .nav-toggle__bar:nth-child(3) { top: 100%; transform: translateY(-100%); }

  /* =========================
     OUVERT → CROIX
     ========================= */
  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(1) {
    top: 50%;
    transform: rotate(135deg);
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(2) {
    transform: translate(-50%);
    opacity: 0;
  }

  .nav-toggle[aria-expanded="true"] .nav-toggle__bar:nth-child(3) {
    top: 50%;
    transform: rotate(-135deg);
  }
}

/* ============================
   Bouton "Retour en haut"
   ============================ */

.back-to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(5rem, 3vh, 6rem);
  z-index: 999;

  width: clamp(2.8rem, 6vw, 3.2rem);
  height: clamp(2.8rem, 6vw, 3.2rem);

  border-radius: 50%;
  border: none;

  background: var(--accent, #111);
  color: #fff;

  font-size: clamp(1.2rem, 2.5vw, 1.4rem);
  font-weight: 700;

  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow: 0 .6rem 1.4rem rgba(0,0,0,.25);

  opacity: 0;
  pointer-events: none;
  transform: translateY(10px);
  transition: opacity .25s ease, transform .25s ease;
}

/* Visible */
.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

/* Hover / focus */
.back-to-top:hover,
.back-to-top:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 .8rem 1.8rem rgba(0,0,0,.35);
  outline: none;
}

/* Dark mode auto (si tu utilises un thème) */
[data-theme="dark"] .back-to-top {
  background: #fff;
  color: #000;
}

@media (max-width: 520px) {
  .section__text--columns {
    columns: 1 100%;
  }
}

/* Tagline responsive : on libère de la place sur mobile */
@media (max-width: 780px) {
  .brand__tagline {
    display: none;
  }
}

/* ============================================================
   Pizzeria : Promo + bouton téléphone
   ============================================================ */

.promo-banner {
  margin: 0 0 min(1.2rem, 3vh) 0;
  padding: min(1rem, 3vw) min(1.1rem, 4vw);
  border: 1px solid var(--color-border-soft);
  background: rgba(251, 191, 36, 0.12);
  color: var(--color-text-main);
  font-size: clamp(0.95rem, 1.1vw, 1.05rem);
  border-left: clamp(0.35rem, 0.7vw, 0.5rem) solid var(--color-accent);
}

.call-fab {
  position: fixed;
  right: min(1.2rem, 4vw);
  bottom: min(1.2rem, 4vw);
  z-index: 40;
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  padding: min(0.95rem, 3.2vw) min(1.05rem, 3.6vw);
  border-radius: 999px;
  background: var(--color-accent);
  color: #0b1220;
  text-decoration: none;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
  transition: transform 0.12s ease, opacity 0.12s ease;
}

.call-fab:active {
  transform: translateY(1px) scale(0.99);
  
}

@media (min-width: 980px) {
  .call-fab {
    opacity: 0.85;
  }
  .call-fab:hover {
    opacity: 1;
    transform: translateY(-1px);
  }
  
}

@media (max-width: 520px) {
  .call-fab__text {
    display: none;
  }
  .call-fab__label{
      display: none;
  }
}

/* ============================================================
   Carte (menu) — haut de page + navigation + cartes
   ============================================================ */

/* --- Bloc "Suppléments" / "Bord cheesy" (en haut) --- */
.menu-top {
  margin-top: clamp(1rem, 2vw, 1.6rem);
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(1rem, 2vw, 1.6rem);
  align-items: start;
}

.menu-top {
  grid-template-columns: 1fr;
}
.menu-top__note,
.menu-options__card {
  background: var(--color-surface);
  border: 1px solid var(--color-border-soft);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
  padding: min(1.35rem, 5vw);
}

.menu-top__note h2,
.menu-options__card h2 {
  margin: 0 0 0.75rem 0;
  font-size: clamp(1.15rem, 1.8vw, 1.35rem);
}

.menu-options {
  /* display: grid;*/
  gap: clamp(0.8rem, 1.6vw, 1rem);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}

.menu-options__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.menu-options__list li {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--color-border-soft);
  font-size: clamp(0.98rem, 1.2vw, 1.05rem);
}

.menu-options__list li:last-child {
  border-bottom: none;
}

.menu-options__list strong {
  font-weight: 800;
}

.menu-top__hint {
  margin: 0.9rem 0 0;
  color: var(--color-text-muted);
  font-size: clamp(0.95rem, 1.15vw, 1rem);
}

/* --- Navigation des sections (Base tomate / crème / etc.) --- */
.menu-nav {
  margin: clamp(1rem, 2.2vw, 1.6rem) 0 0;
}

.menu-nav__list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

@media (max-width: 700px) {
  .menu-nav__list {
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
  }
  .menu-nav__list li {
    scroll-snap-align: start;
  }
}

.menu-nav__list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 0.9rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  color: var(--color-text-main);
  text-decoration: none;
  font-weight: 800;
  font-size: clamp(0.95rem, 1.1vw, 1.02rem);
  transition: transform 0.12s ease, background 0.12s ease,
    border-color 0.12s ease;
}

.menu-nav__list a:hover {
  background: var(--color-accent-soft);
  border-color: rgba(251, 191, 36, 0.45);
  transform: translateY(-1px);
}

.menu-nav__list a:focus-visible {
  outline: 2px solid rgba(251, 191, 36, 0.7);
  outline-offset: 3px;
}

/* --- Sections + grille --- */
.menu-section {
  margin-top: clamp(1.2rem, 4vw, 2.2rem);
}

.menu-section__title {
  margin: 0 0 0.8rem 0;
  font-size: clamp(1.35rem, 2.6vw, 2rem);
}

.menu-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(22rem, 100%), 1fr));
  gap: min(1.2rem, 3.2vw);
}

/* --- Carte produit --- */
.menu-card {
  border: 1px solid var(--color-border-soft);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}

.menu-card__img {
  background: rgba(251, 191, 36, 0.08);
  border-bottom: 1px solid var(--color-border-soft);
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

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

.menu-card__body {
  padding: min(1.25rem, 4vw);
}

.menu-card__title {
  margin: 0;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
}

.menu-card__desc {
  margin: 0.55rem 0 0;
  color: var(--color-text-muted);
  line-height: 1.55;
  white-space: pre-line;
}

/* Prix unique (snacks / boissons avec prix simple) */
.menu-card__price {
  margin: 0.9rem 0 0;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 0.85rem;
  border-top: 1px dashed var(--color-border-soft);
}

.menu-card__price span {
  color: var(--color-text-muted);
}

.menu-card__price strong {
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  font-weight: 900;
}

/* Grille des 4 tailles (pizzas) */
.price-grid {
  margin-top: 0.9rem;
  padding: min(0.95rem, 3vw);
  border: 1px solid var(--color-border-soft);
  background: var(--color-accent-soft);
   background: var(--color-bg);
  border-radius: 1rem;
  display: grid;
  gap: 0.45rem;
}

.price-grid__row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 1rem;
}

.price-grid__row span {
  color: var(--color-text-muted);
  font-size: 0.98em;
}

.price-grid__row strong {
  font-weight: 900;
}

/* =====================================================
   FAQ
   ===================================================== */

.faq {
  margin-top: 1.2rem;
  display: grid;
  gap: 0.8rem;
}

.faq__item {
  border: 1px solid var(--color-border-soft);
  border-radius: 1.2rem;
  background: rgba(2, 8, 23, 0.25);
  overflow: hidden;
}

.faq__q {
  cursor: pointer;
  padding: min(1rem, 4vw) min(1.1rem, 4.5vw);
  font-weight: 900;
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  list-style: none;
  color: var(--color-text-main);
}

/* Cache le marqueur par défaut (Chrome/Edge) */
.faq__item summary::-webkit-details-marker { display: none; }

.faq__item summary::after {
  content: "＋";
  float: right;
  font-weight: 900;
  color: var(--color-text-muted);
}

.faq__item[open] summary::after {
  content: "−";
}

.faq__a {
  padding: 0 min(1.1rem, 4.5vw) min(1rem, 4vw);
  color: var(--color-text-muted);
}

.faq__a p { margin: 0.2rem 0 0; }

.faq__empty {
  border: 1px dashed var(--color-border-soft);
  border-radius: 1.2rem;
  padding: min(1rem, 4vw);
  color: var(--color-text-muted);
}



/* ============================================================
   HERO PARALLAX – PIZZERIA
   Image : /public/assets/img/hero_img.png
   ============================================================ */

.hero--parallax {
  position: relative;
  min-height: clamp(70vh, 85vh, 95vh);
  display: flex;
  align-items: center;
justify-content: center;
  background-image: url("/public/assets/img/hero_img.webp");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed; /* PARALLAX */
z-index: 100;
  overflow: hidden;
}
/* ============================================================
   HERO FULL WIDTH (hors container main)
   ============================================================ */

.hero--parallax {
  position: relative;

  /* sort du container centré */
  width: 100vw;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  margin-top: -3vw;
}

/* Assombrit légèrement pour lisibilité du texte */
.hero--parallax .hero__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0,0,0,0.55) 0%,
      rgba(0,0,0,0.35) 45%,
      rgba(0,0,0,0.15) 65%,
      rgba(0,0,0,0) 100%
      
    );
  z-index: 0;
}

/* Contenu */
.hero--parallax .hero__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: var(--layout-max-width);
  margin: 0 auto;
  padding: min(5em, 8%);
 
}

/* Texte du hero */
.hero--parallax .hero__content {
  max-width: clamp(22rem, 45vw, 34rem);
  color: #fff;
}

.hero--parallax .hero__title {
  color: #fff;
  text-shadow: 0 6px 25px rgba(0,0,0,.45);
}

.hero--parallax .hero__subtitle {
  color: rgba(255,255,255,.85);
}

/* Mobile : on désactive le parallax (perf + iOS) */
@media (max-width: 900px) {
  .hero--parallax {
    background-attachment: scroll;
    min-height: clamp(65vh, 75vh, 85vh);
  }

  .hero--parallax .hero__overlay {
    background: rgba(0,0,0,.45);
  }
}
