/* ==========================================================================
   Le Club 55 — feuille de style commune
   Plage de Pampelonne, Ramatuelle
   ========================================================================== */

/* ==========================================================================
   POLICE — Quicksand, hébergée sur le site
   Licence SIL Open Font License 1.1 — https://fonts.google.com/specimen/Quicksand
   Servie localement, et non depuis Google Fonts : aucune adresse IP de visiteur
   n'est transmise à un tiers. Police variable : un seul fichier couvre les
   graisses 300 à 700.
   ========================================================================== */

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/quicksand-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/quicksand-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  --prune:        #63375f;
  --prune-fonce:  #4a2847;
  --vert:         #22B55A;
  --texte:        #767676;   /* gris du site en ligne (#808080), remonté au
                                seuil de contraste AA */
  --texte-doux:   #767676;
  --gris:         #767676;
  --gris-clair:   #aaa;
  --filet:        #eee;
  --largeur:      980px;
  --colonne:      860px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Quicksand', 'Trebuchet MS', sans-serif;
  color: var(--texte);
  background: #fff;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { max-width: 100%; height: auto; }

/* Accessibilité : lien d'évitement + focus visible */
.skip-link {
  position: absolute; left: -9999px; top: 0;
  background: var(--prune); color: #fff;
  padding: 12px 20px; z-index: 10001; font-size: 14px;
}
.skip-link:focus { left: 0; }

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
.nav-burger:focus-visible {
  outline: 2px solid var(--prune);
  outline-offset: 2px;
}

/* ==========================================================================
   EN-TÊTE
   ========================================================================== */

.header {
  text-align: center; padding: 25px 0;
  position: relative; z-index: 1000; background: #fff;
}
.logo img { width: 200px; height: 100px; }

/* ==========================================================================
   NAVIGATION
   ========================================================================== */

/* La case à cocher pilote le menu mobile. Elle reste hors écran mais
   accessible au clavier (Tab puis Espace). */
.nav-toggle { position: absolute; left: -9999px; }
.nav-burger { display: none; }
.nav-toggle:focus-visible ~ .header .nav-burger {
  outline: 2px solid var(--prune); outline-offset: 2px;
}

.nav {
  display: flex; justify-content: center; align-items: center;
  padding: 8px 0; background: #fff;
  position: relative; z-index: 1000;
}
.nav-item { position: relative; }
.nav-item > a,
.nav-item > .nav-label {
  display: block; padding: 10px 30px; font-size: 14px;
  letter-spacing: 2px; cursor: pointer; text-transform: uppercase;
  transition: color .3s; background: none; border: none;
  font-family: inherit;
}
.nav-item > a { font-weight: 400; color: var(--texte); }
.nav-item > a:hover { color: var(--prune); }
.nav-item > .nav-label { color: var(--gris-clair); font-weight: 400; }
.nav-item > .nav-label:hover { color: var(--prune); }
.nav-item > a.selected,
.dropdown a.selected { color: var(--prune); font-weight: 700; }

.dropdown {
  display: none; position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%); background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,.1); padding: 8px 0;
  min-width: 180px; z-index: 10000; text-align: center;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { display: block; }
.dropdown a {
  display: block; padding: 7px 20px; font-size: 13px; color: #666;
  letter-spacing: 1.5px; transition: all .3s; white-space: nowrap;
}
.dropdown a:hover { background: #f8f8f8; color: var(--prune); }

/* ==========================================================================
   BANDEAU D'EN-TÊTE / DIAPORAMA
   ========================================================================== */

.hero-image {
  display: block; width: 100%; max-width: var(--largeur);
  height: 375px; margin: 46px auto 0; object-fit: cover;
}

.slideshow {
  position: relative; width: 100%; max-width: var(--largeur);
  height: 375px; margin: 46px auto 0; overflow: hidden;
}
.slideshow img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; animation: fade 12s infinite;
}
.slideshow img:nth-child(1) { animation-delay: -1s; }
.slideshow img:nth-child(2) { animation-delay: 3s; }
.slideshow img:nth-child(3) { animation-delay: 7s; }
@keyframes fade {
  0%   { opacity: 0; }
  8%   { opacity: 1; }
  41%  { opacity: 1; }
  49%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ==========================================================================
   CONTENU
   ========================================================================== */

.content {
  max-width: var(--colonne); margin: 0 auto;
  padding: 50px 20px; text-align: center;
  color: var(--texte-doux);
}
/* Titre de niveau 1 de l'accueil : le logo joue ce rôle visuellement,
   le titre reste lisible par les lecteurs d'écran et les moteurs. */
.titre-invisible {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

.content h1,
.content > h2 {
  font-size: 30px; font-weight: 400; line-height: 1.2;
  letter-spacing: normal; text-transform: none;
  margin-bottom: 26px; color: var(--texte);
}
.content h3 {
  font-size: 16px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 15px; color: var(--texte);
}
.content p {
  font-size: 14px; line-height: 1.8;
  margin-bottom: 18px;
}
.description { font-size: 14px; line-height: 1.8; margin-bottom: 26px; }
/* Le texte d'accueil est à 16px sur le site en ligne. */
.content .description-accueil { font-size: 16px; line-height: 1.6; }

/* Bandeau des dates d'ouverture (page d'accueil) */
.opening {
  color: var(--vert); font-weight: 700; font-size: 15px;
  line-height: 1.8; margin-bottom: 8px;
}
.opening-en {
  color: var(--vert); font-style: italic; font-weight: 400;
  font-size: 15px; line-height: 1.8; margin-bottom: 30px;
}

.highlight { color: var(--texte); font-weight: 700; font-size: 14px; line-height: 1.8; margin-bottom: 8px; }
.highlight-note { color: var(--texte); font-weight: 700; }
.highlight.souligne { text-decoration: underline; text-underline-offset: 3px; }
/* Vert du site en ligne pour « Nous avons hâte de vous entendre ! » */
.souhait { color: #008A00; }
.small-text { font-size: 13px; color: var(--texte); }

.content blockquote {
  font-style: italic; color: var(--texte); font-size: 15px;
  line-height: 1.8; margin: 0 0 26px; border: none;
}
.quote { font-style: italic; color: var(--texte); }

.content a.address-link,
.address-link { color: var(--prune); text-decoration: underline; }
.content a.address-link:hover,
.address-link:hover { color: var(--texte); }

.content-image {
  display: block; max-width: 600px; width: 100%;
  margin: 30px auto; border-radius: 4px;
}
.content-image.petite { max-width: 200px; }

.payment-logos {
  display: block; max-width: 460px; width: 100%;
  margin: 30px auto 0;
}

.section-separator {
  border: none; border-top: 1px solid var(--filet);
  margin: 40px auto; max-width: 500px;
}

/* -- Tarifs ---------------------------------------------------------------- */
.prices { margin: 0 auto 25px; border-collapse: collapse; }
.prices td { padding: 6px 14px; font-size: 14px; color: var(--texte-doux); }
.prices td:first-child { text-align: right; }
.prices td:last-child { text-align: left; font-weight: 700; }
.tarifs-titre { font-size: 16px; font-weight: 700; color: var(--texte); margin-bottom: 10px; }
.content .tarifs { font-size: 16px; line-height: 1.9; margin-bottom: 26px; }
.tarifs strong { font-weight: 700; }

/* -- Listes de conditions -------------------------------------------------- */
.notes { list-style: none; max-width: 520px; margin: 0 auto 20px; text-align: left; }
.notes li {
  position: relative; padding-left: 18px; margin-bottom: 8px;
  font-size: 14px; line-height: 1.6; color: var(--texte);
}
.notes li::before {
  content: "—"; position: absolute; left: 0; color: var(--gris-clair);
}

/* ==========================================================================
   DISPOSITIONS À DEUX COLONNES
   Reprises des coordonnées du site en ligne (canevas de 980 px).
   ========================================================================== */

.duo {
  display: grid; align-items: center; gap: 30px 40px;
  max-width: var(--largeur); margin: 0 auto 50px; padding: 0 20px;
}
/* Image à gauche, texte à droite — restaurant, 1er bloc */
.duo.image-gauche { grid-template-columns: 40fr 48fr; }
/* Texte à gauche, image à droite — restaurant, 2e bloc */
.duo.image-droite { grid-template-columns: 51fr 45fr; }
/* Deux images de largeur égale — bar, cabanons */
.duo.egal { grid-template-columns: 1fr 1fr; align-items: end; }
.duo.egal.haut { align-items: start; margin-top: 46px; }
/* Accès : vignette étroite à gauche, large à droite */
.duo.inegal { grid-template-columns: 24fr 58fr; align-items: end; }

.duo img { width: 100%; height: auto; display: block; border-radius: 3px; }
.duo > div { min-width: 0; }
.duo .colonne-texte { text-align: center; }
.duo .colonne-texte p { font-size: 14px; line-height: 1.8; margin-bottom: 16px; }
.duo .colonne-texte p:last-child { margin-bottom: 0; }

.duo-legende { text-align: center; margin-top: 12px; }
.duo-legende a {
  font-size: 14px; color: var(--prune); text-decoration: underline;
}
.duo-legende a:hover { color: var(--texte); }

/* Trois assiettes disposées en quinconce — page restaurant */
.trio {
  display: grid; grid-template-columns: repeat(2, 1fr);
  max-width: var(--largeur); margin: 0 auto 40px; padding: 0 20px;
  gap: 0 30px;
}
.trio img { width: 100%; height: auto; display: block; }
.trio .plat-1 { grid-column: 1; max-width: 360px; justify-self: center; }
.trio .plat-2 { grid-column: 2; max-width: 355px; justify-self: center; margin-top: 110px; }
.trio .plat-3 {
  grid-column: 1 / -1; max-width: 290px; justify-self: center;
  margin-top: -40px;
}

/* Image large seule, hors de la colonne de texte */
.image-large {
  display: block; width: 100%; max-width: 800px; height: auto;
  margin: 0 auto 50px; padding: 0 20px;
}

/* ==========================================================================
   DIAPORAMA DE LA BOUTIQUE — 7 vues
   ========================================================================== */

.diapo-boutique {
  position: relative; width: 100%; max-width: var(--largeur);
  height: 375px; margin: 46px auto 0; overflow: hidden;
}
.diapo-boutique img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0; animation: defile 35s infinite;
}
.diapo-boutique img:nth-child(1) { animation-delay: -0.8s; }
.diapo-boutique img:nth-child(2) { animation-delay:  4.2s; }
.diapo-boutique img:nth-child(3) { animation-delay:  9.2s; }
.diapo-boutique img:nth-child(4) { animation-delay: 14.2s; }
.diapo-boutique img:nth-child(5) { animation-delay: 19.2s; }
.diapo-boutique img:nth-child(6) { animation-delay: 24.2s; }
.diapo-boutique img:nth-child(7) { animation-delay: 29.2s; }
@keyframes defile {
  0%    { opacity: 0; }
  2%    { opacity: 1; }
  16.3% { opacity: 1; }
  18.3% { opacity: 0; }
  100%  { opacity: 0; }
}

/* ==========================================================================
   GALERIES
   ========================================================================== */

.gallery {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 15px; max-width: var(--largeur); margin: 0 auto 40px; padding: 0 20px;
}
.gallery.trois { grid-template-columns: repeat(3, 1fr); }
.gallery img {
  width: 100%; height: 280px; object-fit: cover; border-radius: 2px;
}
.gallery-full { max-width: var(--largeur); margin: 0 auto 40px; padding: 0 20px; }
.gallery-full img { width: 100%; border-radius: 2px; }

/* ==========================================================================
   PLAN (page Accès) — chargé seulement si le visiteur le demande
   ========================================================================== */

.carte {
  max-width: var(--largeur); margin: 0 auto 40px; padding: 0 20px;
}
.carte-cadre {
  position: relative; width: 100%; aspect-ratio: 16 / 7;
  min-height: 260px; background: #eef1f0;
  border: 1px solid var(--filet); border-radius: 3px;
  display: flex; flex-direction: column; align-items: center;
  justify-content: center; gap: 14px; text-align: center; padding: 24px 20px;
}
.carte-cadre iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.carte-adresse { font-size: 15px; font-weight: 700; color: var(--texte); }
.carte-bouton {
  padding: 11px 26px; font-family: inherit; font-size: 14px;
  letter-spacing: 1px; color: #fff; background: var(--prune);
  border: none; border-radius: 3px; cursor: pointer; transition: background .3s;
}
.carte-bouton:hover { background: var(--prune-fonce); }
.carte-note { font-size: 12px; color: var(--gris-clair); max-width: 420px; line-height: 1.5; }

/* ==========================================================================
   BORNES DE RECHARGE (page Accès)
   ========================================================================== */

.recharge {
  max-width: var(--colonne); margin: 0 auto 40px;
  padding: 30px 20px; text-align: center;
  border-top: 1px solid var(--filet);
  border-bottom: 1px solid var(--filet);
}
.recharge img {
  display: block; max-width: 260px; width: 100%;
  margin: 0 auto 22px;
}
.recharge p { font-size: 14px; line-height: 1.8; color: var(--texte-doux); margin-bottom: 14px; }
.recharge ul { list-style: none; margin-top: 18px; }
.recharge li { margin-bottom: 8px; }
.recharge a { color: var(--prune); text-decoration: underline; font-size: 14px; }
.recharge a:hover { color: var(--texte); }

/* ==========================================================================
   CARTES « DÉCOUVRIR »
   ========================================================================== */

.discover-cards {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 30px; max-width: var(--largeur); margin: 0 auto 40px; padding: 0 20px;
}
.discover-card { text-align: center; }
.discover-card img {
  width: 100%; height: 320px; object-fit: cover;
  border-radius: 4px; margin-bottom: 15px;
}
.discover-card a {
  font-size: 14px; letter-spacing: 2px; text-transform: uppercase;
  color: var(--prune); text-decoration: underline;
}
.discover-card a:hover { color: var(--texte); }

/* ==========================================================================
   FORMULAIRE DE CONTACT
   ========================================================================== */

.contact-form { max-width: 600px; margin: 0 auto 50px; text-align: left; }
.contact-form label {
  display: block; font-size: 13px; font-weight: 400; letter-spacing: 1px;
  color: #555; margin-bottom: 6px; text-transform: uppercase;
}
.contact-form input,
.contact-form textarea {
  width: 100%; padding: 12px 15px; font-size: 15px;
  font-family: inherit; color: var(--texte);
  border: 1px solid #ddd; border-radius: 3px;
  margin-bottom: 20px; background: #fff; transition: border-color .3s;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--prune); }
.contact-form textarea { height: 150px; resize: vertical; }
.contact-form button {
  display: inline-block; padding: 12px 40px; font-size: 14px;
  font-family: inherit; font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; color: #fff; background: var(--prune);
  border: none; border-radius: 3px; cursor: pointer; transition: background .3s;
}
.contact-form button:hover { background: var(--prune-fonce); }

/* Champ piège anti-robot : invisible pour les humains, rempli par les robots */
.hp-field {
  position: absolute; left: -9999px; width: 1px; height: 1px;
  overflow: hidden;
}

.form-message {
  max-width: 600px; margin: 0 auto 25px; padding: 14px 18px;
  border-radius: 3px; font-size: 15px; line-height: 1.5; text-align: left;
}
.form-message.ok    { background: #eaf7ef; border: 1px solid #b6e0c5; color: #1d7a42; }
.form-message.error { background: #fdecea; border: 1px solid #f5c2bd; color: #a02620; }

/* ==========================================================================
   QUALITÉ TOURISME / RECRUTEMENT
   ========================================================================== */

.qualite { margin-top: 40px; }
.qualite p { font-size: 14px; }
.qualite a { color: var(--prune); text-decoration: underline; }
.qualite a:hover { color: var(--texte); }
.qualite img { display: block; max-width: 200px; width: 100%; margin: 25px auto 0; }

.hiring { margin-top: 40px; padding-top: 30px; border-top: 1px solid var(--filet); }
.hiring h2 {
  font-size: 16px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 15px;
}
.hiring p { font-size: 14px; }

/* ==========================================================================
   TEXTES LÉGAUX
   ========================================================================== */

.legal-text { max-width: 720px; margin: 0 auto; text-align: left; }
.legal-text h2 {
  font-size: 15px; font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase; margin: 32px 0 12px; color: var(--texte);
}
.legal-text p { font-size: 14px; line-height: 1.8; color: var(--texte); margin-bottom: 14px; }
.legal-text strong { font-weight: 700; color: var(--texte); }
.legal-text a { color: var(--prune); text-decoration: underline; word-break: break-word; }
.legal-text a:hover { color: var(--texte); }
.legal-text h3 {
  font-size: 14px; font-weight: 700; margin: 22px 0 10px; color: var(--texte);
}
.legal-text ul { margin: 0 0 16px 20px; }
/* Date de derniere mise a jour des pages legales */
.legal-text .maj {
  margin-top: 34px; padding-top: 16px; border-top: 1px solid var(--filet);
  font-size: 13px; color: var(--gris-clair);
}
/* Bloc a completer avant mise en ligne : impossible a manquer */
.a-completer {
  background: #fff4e5; border: 2px dashed #d98b00; border-radius: 3px;
  padding: 14px 16px; font-weight: 700; color: #8a5a00;
}

/* Mention d'information sous le formulaire de contact (RGPD) */
.mention-rgpd {
  margin-top: 18px; font-size: 12px; line-height: 1.6;
  color: var(--gris-clair); text-align: left;
}
.mention-rgpd a { color: var(--prune); text-decoration: underline; }
.mention-rgpd a:hover { color: var(--texte); }
.legal-text ul li { font-size: 14px; line-height: 1.8; color: var(--texte); margin-bottom: 6px; }

.table-wrap { overflow-x: auto; margin-bottom: 20px; }
.cookie-table { width: 100%; border-collapse: collapse; font-size: 14px; min-width: 520px; }
.cookie-table th {
  text-align: left; padding: 10px 12px; background: #f7f7f7;
  font-weight: 700; border-bottom: 1px solid #e3e3e3;
}
.cookie-table td { padding: 10px 12px; border-bottom: 1px solid var(--filet); color: var(--texte); }
.cookie-table tr:hover td { background: #fafafa; }

/* ==========================================================================
   BARRE D'INFOS + PIED DE PAGE
   ========================================================================== */

.footer-info {
  display: flex; justify-content: center; align-items: center;
  flex-wrap: wrap; gap: 20px 50px;
  padding: 25px 20px; max-width: var(--largeur); margin: 0 auto;
  border-top: 1px solid var(--filet);
}
.footer-info a { font-size: 13px; color: var(--texte); text-decoration: underline; }
.footer-info span { font-size: 13px; color: var(--texte); }

.footer {
  text-align: center; padding: 25px 20px 30px;
  font-size: 12px; color: var(--gris-clair); background: #fff;
}
.footer a { color: var(--gris-clair); }
.footer a:hover { color: var(--prune); }
.social { display: flex; justify-content: center; gap: 12px; margin: 12px 0; }
.social a img { width: 19px; height: 19px; opacity: .5; transition: opacity .3s; }
.social a:hover img { opacity: 1; }
.legal { margin-bottom: 8px; }
.legal a { margin: 0 8px; font-size: 11px; text-decoration: underline; }
.copyright { margin: 8px 0; font-size: 12px; }
.copyright a { text-decoration: underline; }
.illustrations { font-style: italic; font-size: 11px; color: #ccc; margin-top: 8px; }

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */

@media (max-width: 1000px) {
  .hero-image, .slideshow { height: 320px; }
  .discover-card img { height: 260px; }
}

/* -- Tablette -------------------------------------------------------------- */
@media (max-width: 860px) {
  .hero-image, .slideshow { height: 260px; }
  .content { padding: 40px 20px; }
  .content h1, .content > h2 { font-size: 26px; }
  .gallery, .gallery.trois { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .duo.image-gauche, .duo.image-droite { grid-template-columns: 1fr; gap: 24px; }
  .duo.image-gauche img, .duo.image-droite img { max-width: 440px; margin: 0 auto; }
  .duo.inegal { grid-template-columns: 30fr 58fr; }
  .trio .plat-2 { margin-top: 60px; }
  .trio .plat-3 { margin-top: -20px; }
  .diapo-boutique { height: 260px; }
  .gallery img { height: 220px; }
  .discover-cards { gap: 20px; }
  .discover-card img { height: 220px; }

  /* Menu : passage en panneau déroulant commandé par une case à cocher */
  .nav-toggle { position: absolute; left: -9999px; }
  .nav-burger {
    display: block; position: absolute; top: 28px; right: 18px;
    width: 42px; height: 42px; cursor: pointer; z-index: 1100;
    border: 1px solid var(--filet); border-radius: 3px; background: #fff;
  }
  .nav-burger span,
  .nav-burger span::before,
  .nav-burger span::after {
    content: ""; position: absolute; left: 11px; width: 18px; height: 2px;
    background: var(--texte); transition: transform .25s, opacity .25s;
  }
  .nav-burger span { top: 20px; }
  .nav-burger span::before { top: -6px; left: 0; }
  .nav-burger span::after  { top: 6px;  left: 0; }
  .nav-toggle:checked ~ .header .nav-burger span { background: transparent; }
  .nav-toggle:checked ~ .header .nav-burger span::before { transform: translateY(6px) rotate(45deg); }
  .nav-toggle:checked ~ .header .nav-burger span::after  { transform: translateY(-6px) rotate(-45deg); }

  .nav {
    display: none; flex-direction: column; align-items: stretch;
    padding: 0 0 15px; border-bottom: 1px solid var(--filet);
  }
  .nav-toggle:checked ~ .nav { display: flex; }
  .nav-item { position: static; border-top: 1px solid var(--filet); }
  .nav-item > a,
  .nav-item > .nav-label {
    padding: 14px 20px; text-align: center; width: 100%;
  }
  .nav-item > .nav-label { font-size: 12px; letter-spacing: 3px; color: #bbb; }
  /* Sur mobile les sous-menus sont toujours dépliés : pas de survol au doigt */
  .dropdown {
    display: block; position: static; transform: none;
    box-shadow: none; padding: 0 0 10px; min-width: 0;
    background: #fbfbfb;
  }
  .dropdown a { padding: 11px 20px; font-size: 13px; }
}

/* -- Mobile ---------------------------------------------------------------- */
@media (max-width: 600px) {
  .header { padding: 20px 0; }
  .logo img { width: 160px; height: 80px; }
  .nav-burger { top: 22px; right: 14px; }
  .hero-image, .slideshow { height: 200px; }
  .content { padding: 32px 18px; }
  .content h1, .content > h2 { font-size: 23px; margin-bottom: 20px; }
  .content p, .description, .highlight { font-size: 14px; }
  .content .description-accueil { font-size: 15px; }
  .content blockquote { font-size: 14px; }
  .content-image { margin: 24px auto; }

  .gallery, .gallery.trois, .discover-cards { grid-template-columns: 1fr; }
  .duo, .duo.egal, .duo.inegal { grid-template-columns: 1fr; gap: 26px; }
  .duo img { max-width: 360px; margin: 0 auto; }
  .trio { grid-template-columns: 1fr; gap: 26px; }
  .trio .plat-1, .trio .plat-2, .trio .plat-3 {
    grid-column: 1; max-width: 300px; margin-top: 0;
  }
  .diapo-boutique { height: 200px; }
  .hero-image, .slideshow, .diapo-boutique { margin-top: 28px; }
  .gallery img { height: 200px; }
  .discover-card img { height: 200px; }

  .recharge { padding: 24px 18px; }
  .recharge img { max-width: 200px; }
  .footer-info { flex-direction: column; gap: 10px; text-align: center; }
  .legal a { display: inline-block; margin: 4px 8px; }
  .prices td { padding: 5px 8px; font-size: 15px; }
  .legal-text h2 { font-size: 14px; }
}

/* -- Préférence de mouvement réduit ---------------------------------------- */
@media (prefers-reduced-motion: reduce) {
  * { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .slideshow img { opacity: 1; }
  .slideshow img:not(:first-child) { display: none; }
}

/* ==========================================================================
   IMPRESSION
   ========================================================================== */

@media print {
  .nav, .nav-burger, .social, .slideshow, .contact-form { display: none !important; }
  body { color: #000; }
  .content { max-width: none; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 10px; }
}
