/* Pizzou — feuille de style unique, mobile-first.
   DA reprise du site d'origine (thème Lenit.net) :
   fond blanc, texte vert sapin #014341 en graisse légère,
   titres bleu #64b4ff semi-gras italique, accents corail #FF5959,
   boutons bleus carrés, cartes établissement sur fond vert sapin,
   bandeau d'en-tête vert sapin, footer en bande bleue majuscules. */

@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2026, U+20AC;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: normal;
  font-weight: 100 700;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+2C60-2C7F, U+A720-A7FF;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-italic-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+2013-2014, U+2018-201A, U+201C-201E, U+2026, U+20AC;
}
@font-face {
  font-family: 'IBM Plex Sans';
  font-style: italic;
  font-weight: 100 700;
  font-display: swap;
  src: url('/assets/fonts/ibm-plex-sans-italic-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+1E00-1EFF, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --vert: #014341;
  --vert-fonce: #012f2e;
  --corail: #FF5959;
  --bleu: #64b4ff;
  --bleu-fonce: #3f9bf0;
  --blanc: #ffffff;
  --gris: #EDEDED;
  --maxw: 1120px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'IBM Plex Sans', system-ui, -apple-system, 'Segoe UI', sans-serif;
  background: var(--blanc);
  color: var(--vert);
  line-height: 1.65;
  font-size: 1.0625rem;
  font-weight: 300;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
strong { font-weight: 600; }

.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 1.25rem; }

/* ---------- Header : bandeau vert sapin, liens blancs légers ---------- */
.skip {
  position: absolute; left: -999px; top: 0; background: var(--vert); color: #fff;
  padding: .5rem 1rem; z-index: 100;
}
.skip:focus { left: 0; }
header.site {
  position: sticky; top: 0; z-index: 50;
  background: var(--vert);
}
header.site .bar {
  display: flex; align-items: center; justify-content: space-between;
  gap: 1rem; padding: .8rem 1.25rem; max-width: var(--maxw); margin: 0 auto;
}
.logo { flex-shrink: 0; }
.logo img { height: 36px; width: auto; max-width: none; }
nav.main { display: flex; align-items: center; gap: 1.4rem; flex-wrap: wrap; }
nav.main a {
  padding: .7rem .1rem;
  text-decoration: none; color: #fff; font-weight: 300;
  font-size: .85rem; letter-spacing: .09em; text-transform: uppercase;
}
nav.main a:hover { color: var(--bleu); }
nav.main a.btn { font-weight: 600; }
@media (max-width: 720px) {
  nav.main { gap: .9rem; }
  nav.main a { font-size: .78rem; letter-spacing: .06em; }
  nav.main a.hide-m { display: none; }
  .logo img { height: 26px; }
}

/* ---------- Boutons : bleus, carrés, gras (cf. #boutons du thème) ---------- */
.btn {
  display: inline-block; background: var(--bleu); color: var(--vert);
  padding: .55rem 1.3rem; border-radius: 3px; text-decoration: none;
  font-weight: 600; font-size: 1rem; letter-spacing: .02em;
  border: 1px solid var(--bleu);
  transition: background .15s ease, border-color .15s ease;
}
.btn:hover { background: var(--bleu-fonce); border-color: var(--bleu-fonce); color: var(--vert); }
.btn.ghost {
  background: transparent; color: var(--vert); border-color: var(--vert);
  text-transform: uppercase; font-size: .85rem; font-weight: 400; letter-spacing: .05em;
  padding: .6rem 1.3rem;
}
.btn.ghost:hover { background: var(--vert); color: #fff; }
.btn.ghost.sur-fonce { color: #fff; border-color: #fff; background: transparent; }
.btn.ghost.sur-fonce:hover { background: #fff; color: var(--vert); }
.btn.sur-fonce { border-color: var(--bleu); }

/* ---------- Hero : bloc vert sapin, titre blanc + italique bleu ---------- */
.hero { background: var(--vert); color: #fff; }
.hero .grid { display: grid; gap: 0; align-items: stretch; grid-template-columns: 1fr; }
.hero .texte { padding: 2.5rem 1.25rem; max-width: 40rem; margin: 0 auto; }
.hero h1 {
  font-size: clamp(1.7rem, 4.2vw, 2.7rem); line-height: 1.2;
  font-weight: 600; font-style: italic; letter-spacing: -.01em;
}
.hero h1 .accent { color: var(--bleu); }
.hero p.sous { margin: 1rem 0 1.5rem; font-size: 1.1rem; font-weight: 300; color: #d8e8e2; }
.hero .ctas { display: flex; gap: .75rem; flex-wrap: wrap; }
.hero img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }
@media (min-width: 860px) {
  .hero .grid { grid-template-columns: 1.05fr 1fr; }
  .hero .texte { padding: 4.5rem 3rem; margin: 0; }
}

/* ---------- Sections & titres : h2 bleu semi-gras italique, centré ---------- */
section { padding: 3rem 0; }
h2 {
  font-size: clamp(1.5rem, 3vw, 2rem); line-height: 1.25; margin-bottom: 1.5rem;
  color: var(--bleu); font-weight: 600; font-style: italic; text-align: center;
}
h3 { font-size: 1.15rem; margin-bottom: .5rem; font-weight: 600; }
.lead { font-size: 1.1rem; max-width: 46rem; margin-inline: auto; text-align: center; }
.centre { text-align: center; }
.mt { margin-top: 1.5rem; }

/* Titre de page (h1 sur fond blanc) : même signature que les h2 du thème */
.titre-page {
  font-size: clamp(1.7rem, 4vw, 2.5rem); line-height: 1.25;
  color: var(--bleu); font-weight: 600; font-style: italic; text-align: center;
}

/* ---------- Cartes pizzerias : fond vert sapin, cf. .booking-single ---------- */
.cards {
  display: grid; gap: 1.25rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}
.card {
  background: var(--vert); color: #fff; overflow: hidden;
  display: flex; flex-direction: column; text-align: center;
  transition: transform .15s ease;
}
.card:hover { transform: scale(1.02); }
.card img { aspect-ratio: 3 / 2; object-fit: cover; width: 100%; }
.card .corps { padding: 1rem 1.15rem 1.35rem; flex: 1; display: flex; flex-direction: column; gap: .4rem; align-items: center; }
.card h3 { color: #fff; margin: 0; }
.card h3 a { text-decoration: none; }
.card h3 a:hover { color: var(--bleu); }
.card address { font-style: normal; font-size: .92rem; font-weight: 300; color: #d8e8e2; }
.card .quartier {
  font-size: .78rem; font-weight: 400; text-transform: uppercase;
  letter-spacing: .12em; color: var(--bleu);
}
.card .btn { margin-top: auto; }

/* ---------- Menu / carte ---------- */
.menu-section { margin-bottom: 2.5rem; }
.menu-section h2 { margin-top: 2rem; }
.menu-item {
  display: grid; grid-template-columns: 1fr auto; gap: .25rem 1rem;
  padding: .8rem 0; border-bottom: 1px dashed var(--gris);
  max-width: 46rem; margin-inline: auto; text-align: left;
}
.menu-item .nom { font-weight: 600; }
.menu-item .nom .tag {
  font-size: .7rem; font-weight: 400; text-transform: uppercase; letter-spacing: .08em;
  color: var(--bleu); border: 1px solid var(--bleu); border-radius: 3px;
  padding: .08rem .4rem; margin-left: .5rem; vertical-align: middle; white-space: nowrap;
}
.menu-item .prix { font-weight: 600; color: #d32d2d; white-space: nowrap; }
.menu-item .desc { grid-column: 1 / -1; font-size: .95rem; font-weight: 300; }
.note-carte { font-size: .9rem; font-weight: 300; margin-top: 1.5rem; text-align: center; }

/* Encadré « recettes du quartier » */
.encart {
  background: var(--vert); color: #fff; padding: 1.75rem 1.5rem;
  max-width: 46rem; margin: 2rem auto; text-align: center;
}
.encart p { font-weight: 300; color: #d8e8e2; }
.encart .titre { color: var(--bleu); font-weight: 600; font-style: italic; font-size: 1.25rem; display: block; margin-bottom: .5rem; }
.encart strong { color: #fff; }

/* ---------- Infos pratiques (pages pizzeria) ---------- */
.infos {
  display: grid; gap: 1.5rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  border: 1px solid var(--gris); padding: 1.75rem;
}
.infos h3 {
  font-size: .8rem; text-transform: uppercase; letter-spacing: .12em;
  color: #d32d2d; font-weight: 600;
}
.infos address { font-style: normal; }
.infos a { color: var(--vert); }
table.horaires { border-collapse: collapse; width: 100%; font-size: .95rem; }
table.horaires td { padding: .2rem 0; vertical-align: top; font-weight: 300; }
table.horaires td:first-child { font-weight: 600; padding-right: .9rem; white-space: nowrap; }

/* ---------- FAQ : questions corail (cf. .questions h3 du thème) ---------- */
.faq { max-width: 46rem; margin-inline: auto; }
.faq details { border-bottom: 1px solid var(--gris); }
.faq summary {
  cursor: pointer; font-weight: 600; color: #d32d2d;
  padding: 1rem .25rem; list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 1rem;
  text-align: left;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: '+'; color: var(--vert); font-size: 1.3rem; font-weight: 300; flex-shrink: 0; }
.faq details[open] summary::after { content: '–'; }
.faq .rep { padding: 0 .25rem 1.15rem; font-weight: 300; text-align: left; }

/* ---------- Bandeau CTA : vert sapin ---------- */
.bandeau {
  background: var(--vert); color: #fff;
  padding: 2.5rem 1.5rem; text-align: center;
}
.bandeau h2 { color: var(--bleu); margin-bottom: .5rem; }
.bandeau p { margin-bottom: 1.25rem; font-weight: 300; color: #d8e8e2; }
.bandeau .ctas { display: flex; gap: .75rem; flex-wrap: wrap; justify-content: center; }

/* ---------- Galerie duo ---------- */
.duo { display: grid; gap: 1.5rem; align-items: center; grid-template-columns: 1fr; }
.duo img { aspect-ratio: 4 / 3; object-fit: cover; width: 100%; }
.duo h2 { text-align: left; }
@media (min-width: 780px) { .duo { grid-template-columns: 1fr 1fr; gap: 2.5rem; } .duo.inverse > :first-child { order: 2; } }

/* ---------- Fournisseurs ---------- */
.fournisseurs { display: grid; gap: 1rem; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); }
.fournisseurs li {
  list-style: none; border: 1px solid var(--gris); padding: .9rem 1rem;
  font-size: .95rem; font-weight: 300;
}
.fournisseurs li strong { display: block; color: #d32d2d; font-weight: 600; }

/* ---------- Fil d'Ariane ---------- */
.ariane { font-size: .82rem; padding: 1rem 0 0; font-weight: 300; }
.ariane ol { list-style: none; display: flex; flex-wrap: wrap; gap: .35rem; }
.ariane li + li::before { content: '›'; margin-right: .35rem; }
.ariane a { color: var(--vert); }

/* ---------- Footer : bande bleue majuscules (cf. #footer) + signature corail ---------- */
footer.site { margin-top: 3rem; }
footer.site .bande {
  background: var(--bleu); color: #fff; border-radius: 3px;
  max-width: var(--maxw); margin: 0 auto; padding: 1.5rem 1.25rem;
  text-transform: uppercase; font-size: .8rem; letter-spacing: .04em;
}
footer.site .colonnes { display: grid; gap: 1.25rem; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); text-align: center; }
footer.site h3 { color: #fff; font-size: .85rem; margin-bottom: .3rem; font-weight: 600; }
footer.site h3 a { text-decoration: none; }
footer.site .bande a { color: #fff; }
footer.site address { font-style: normal; font-weight: 300; line-height: 1.5; }
footer.site .signature {
  text-align: center; color: var(--corail); font-size: .85rem;
  padding: 1rem 1.25rem 1.5rem; font-weight: 300;
}
footer.site .signature a { color: var(--corail); font-weight: 600; }

/* Accessibilité : focus clavier visible */
:focus-visible { outline: 3px solid var(--corail); outline-offset: 2px; }
.famille { text-align: center; font-size: .8rem; padding: 0 1rem 1.25rem; opacity: .9; }
footer.site .famille a, .famille a { color: inherit; }

/* Accessibilité : respecter la préférence de mouvement réduit */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; animation: none !important; }
  .card:hover { transform: none; }
}

/* Sommaire d'ancres des pages carte (cibles tactiles >= 44px) */
.sommaire-carte { display: flex; flex-wrap: wrap; gap: .5rem; justify-content: center; margin-top: 1.5rem; }
.sommaire-carte a {
  display: inline-block; padding: .55rem .9rem; border-radius: 999px;
  text-decoration: none; font-size: .85rem; font-weight: 600;
  border: 1px solid currentColor;
}
.menu-section { scroll-margin-top: 95px; }
.sommaire-carte a { color: var(--vert); background: #fff; }
.sommaire-carte a:hover { background: var(--bleu); border-color: var(--bleu); }

/* le bouton Réserver de l'en-tête garde sa couleur de bouton */
nav.main a.btn { color: var(--vert); }
