/* ═══════════════════════════════════════════════════════
   Les Trésors de Najétoilé — style.css
   Conformité RGAA 4.1 / WCAG 2.1 niveau AA

   RATIOS DE CONTRASTE VÉRIFIÉS :
   ─────────────────────────────────────────────────────
   Texte normal (< 18pt ou < 14pt bold) → ≥ 4.5:1
   Grand texte  (≥ 18pt ou ≥ 14pt bold) → ≥ 3:1
   Composants UI (bordures informatives) → ≥ 3:1

   --text-primary  #1a2e3b / blanc    → 14.7:1 ✅
   --text-body     #2d4a5a / blanc    →  9.8:1 ✅
   --text-muted    #3d5a6a / blanc    →  7.1:1 ✅ (remplace #5a7a8a insuffisant)
   --text-on-dark  #ffffff / #1a2e3b  → 14.7:1 ✅
   --coral-text    #c0340f / blanc    →  5.6:1 ✅ (remplace #ff5e3a ~3:1)
   --blue-text     #0a5f8a / blanc    →  6.1:1 ✅ (remplace #1a9ed4 ~3.1:1)
   --green-text    #1d7a4f / blanc    →  5.8:1 ✅ (remplace #3dbb7c ~2.8:1)
   --purple-text   #5c2e9e / blanc    →  6.4:1 ✅ (remplace #9b5fe0 ~3.2:1)
   --yellow-text   #7a5a00 / blanc    →  6.7:1 ✅
   blanc / --cta-bg #bf3410           →  5.3:1 ✅
   blanc / --contact-bg #0d7ab0       →  4.6:1 ✅
   --text-primary / --yellow #ffd531  → 11.4:1 ✅
   ═══════════════════════════════════════════════════════ */

/* ─── VARIABLES ────────────────────────────────────── */
:root {
  /* Couleurs décoratives (fonds, bordures, illustrations) */
  --c-blue:     #1a9ed4;
  --c-blue2:    #0d7ab0;
  --c-sky:      #e0f4fd;
  --c-yellow:   #ffd531;
  --c-sun:      #ffb800;
  --c-coral:    #ff5e3a;
  --c-sand:     #ffeabf;
  --c-sand2:    #ffd993;
  --c-green:    #3dbb7c;
  --c-purple:   #9b5fe0;
  --c-white:    #ffffff;
  --c-dark:     #1a2e3b;

  /* Couleurs TEXTE accessibles (ratio ≥ 4.5:1 sur fond blanc) */
  --text-primary:  #1a2e3b;  /* 14.7:1 ✅ */
  --text-body:     #2d4a5a;  /*  9.8:1 ✅ */
  --text-muted:    #3d5a6a;  /*  7.1:1 ✅ */
  --text-on-dark:  #ffffff;  /* 14.7:1 sur --c-dark ✅ */
  --coral-text:    #c0340f;  /*  5.6:1 ✅ */
  --blue-text:     #0a5f8a;  /*  6.1:1 ✅ */
  --green-text:    #1d7a4f;  /*  5.8:1 ✅ */
  --purple-text:   #5c2e9e;  /*  6.4:1 ✅ */
  --yellow-text:   #7a5a00;  /*  6.7:1 ✅ */

  /* Fonds de badges clairs */
  --bg-badge-blue:   #daf0fb;
  --bg-badge-coral:  #fde8e3;
  --bg-badge-green:  #dcf4e9;
  --bg-badge-purple: #ede0ff;
  --bg-badge-yellow: #fff4c0;

  /* Fonds de sections spéciales */
  --cta-bg:      #bf3410;  /* blanc dessus → 5.3:1 ✅ */
  --contact-bg:  #0d7ab0;  /* blanc dessus → 4.6:1 ✅ */
  --atelier-bg:  #bf3410;  /* blanc dessus → 5.3:1 ✅ */
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--c-sky);
  color: var(--text-primary);
  font-family: 'Nunito', sans-serif;
  font-weight: 600;
  overflow-x: hidden;
}

/* Motif confetti purement décoratif (aria-hidden via pseudo-élément) */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle, rgba(255,213,49,.3)  2px, transparent 2px),
    radial-gradient(circle, rgba(255,94,58,.15)  1.5px, transparent 1.5px),
    radial-gradient(circle, rgba(26,158,212,.15) 1px, transparent 1px);
  background-size: 60px 60px, 90px 90px, 45px 45px;
  background-position: 0 0, 30px 30px, 15px 15px;
  pointer-events: none;
  z-index: 0;
}

/* ─── LIEN D'ÉVITEMENT ──────────────────────────────
   Critère RGAA 12.7 — premier élément focusable
   ─────────────────────────────────────────────────── */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  background: var(--c-dark);
  color: var(--text-on-dark);
  font-family: 'Nunito', sans-serif;
  font-weight: 800;
  font-size: 1rem;
  padding: .8rem 1.6rem;
  border-radius: 0 0 8px 8px;
  text-decoration: none;
  border: 3px solid var(--c-yellow);
  transition: top .15s ease;
  white-space: nowrap;
}
.skip-link:focus {
  top: 0;
}

/* ─── FOCUS GLOBAL ──────────────────────────────────
   Critère RGAA 10.7 — focus visible, outline ≥ 2px
   ─────────────────────────────────────────────────── */
:focus-visible {
  outline: 3px solid var(--blue-text);
  outline-offset: 3px;
  border-radius: 3px;
}
*:focus:not(:focus-visible) {
  outline: none;
}

/* ─── HERO ──────────────────────────────────────────
   Landmark <header role="banner">
   ─────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem 8rem;
  text-align: center;
  overflow: hidden;
  background: linear-gradient(180deg, #b8e8f8 0%, #e0f4fd 45%, #ffeabf 100%);
  z-index: 1;
}

/* Soleil — purement décoratif (aria-hidden dans HTML) */
.sun-wrap {
  position: absolute;
  top: -60px;
  right: -60px;
  width: 280px;
  height: 280px;
  animation: spinSlow 30s linear infinite;
}
.sun-body {
  position: absolute;
  inset: 40px;
  border-radius: 50%;
  background: radial-gradient(circle at 40% 35%, #ffee6a, var(--c-sun));
  box-shadow: 0 0 60px rgba(255,184,0,.6), 0 0 120px rgba(255,213,49,.3);
}
.sun-ray {
  position: absolute;
  top: 50%; left: 50%;
  width: 140px; height: 14px;
  margin-top: -7px;
  transform-origin: 0 50%;
  border-radius: 7px;
  background: linear-gradient(to right, var(--c-yellow), transparent);
  opacity: .8;
}

/* Nuages & oiseaux — décoratifs (aria-hidden dans HTML) */
.bird {
  position: absolute;
  font-size: 1.3rem;
  animation: fly 12s ease-in-out infinite;
  opacity: .6;
}
.bird:nth-child(1) { top: 15%; left: 8%;   animation-delay: 0s; }
.bird:nth-child(2) { top: 22%; left: 20%;  animation-delay: 2s;  font-size: 1rem; }
.bird:nth-child(3) { top: 10%; right: 25%; animation-delay: 4s;  font-size: .9rem; }
.clouds  { position: absolute; top: 10%; left: 5%;   font-size: 3.5rem; opacity: .45; animation: drift 20s ease-in-out infinite; }
.clouds2 { position: absolute; top: 18%; right: 10%; font-size: 2.5rem; opacity: .35; animation: drift 25s ease-in-out infinite reverse; }

/* Badge "Boutique & Atelier" */
.hero-badge {
  display: inline-block;
  background: var(--c-dark);    /* blanc texte → 14.7:1 ✅ */
  color: var(--text-on-dark);
  font-family: 'Caveat', cursive;
  font-size: 1.2rem;
  font-weight: 700;
  padding: .4rem 1.6rem;
  border-radius: 2rem;
  margin-bottom: 1.5rem;
  transform: rotate(-2deg);
  box-shadow: 4px 4px 0 rgba(0,0,0,.15);
  animation: popIn .6s ease both;
}

/* H1 */
.hero h1 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2.6rem, 8vw, 6.5rem);
  line-height: 1.08;
  color: var(--text-primary);   /* 14.7:1 ✅ */
  text-shadow: 4px 4px 0 rgba(255,184,0,.35);
  animation: popIn .6s .1s ease both;
}
.hero h1 .accent {
  color: var(--coral-text);     /* #c0340f → 5.6:1 ✅ */
}

/* Tagline */
.hero-tagline {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--blue-text);      /* #0a5f8a → 6.1:1 ✅ */
  margin-top: 1rem;
  animation: popIn .6s .2s ease both;
}

/* Bandeau "bientôt en ligne" */
.coming-tag {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  margin-top: 2rem;
  background: var(--c-white);
  border: 3px solid var(--c-dark);   /* bordure visible sans couleur seule */
  border-radius: 12px;
  padding: .9rem 2rem;
  font-size: 1rem;
  font-weight: 800;
  color: var(--text-primary);        /* 14.7:1 ✅ */
  box-shadow: 5px 5px 0 var(--c-yellow);
  animation: popIn .6s .35s ease both;
}
/* Le nom de domaine est en gras + couleur — double signal, pas couleur seule */
.coming-tag strong {
  color: var(--coral-text);          /* 5.6:1 ✅ */
  font-weight: 900;
}

/* Rangée d'emojis décoratifs (aria-hidden dans HTML) */
.hero-emoji-row {
  margin-top: 2rem;
  font-size: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  animation: popIn .6s .45s ease both;
}
.hero-emoji-row span               { display: inline-block; animation: wiggle 3s ease-in-out infinite; }
.hero-emoji-row span:nth-child(2)  { animation-delay: .4s; }
.hero-emoji-row span:nth-child(3)  { animation-delay: .8s; }
.hero-emoji-row span:nth-child(4)  { animation-delay: 1.2s; }
.hero-emoji-row span:nth-child(5)  { animation-delay: 1.6s; }

/* Bulle adresse */
.addr-bubble {
  position: absolute;
  bottom: 7rem; left: 50%;
  transform: translateX(-50%);
  background: var(--contact-bg);   /* blanc dessus → 4.6:1 ✅ */
  color: var(--text-on-dark);
  border-radius: 50px;
  padding: .65rem 1.8rem;
  font-size: .9rem;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 4px 4px 0 var(--c-blue2);
  animation: popIn .6s .6s ease both;
}

/* ─── VAGUES SVG — décoratives ─────────────────── */
.wave      { line-height: 0; }
.wave svg  { display: block; width: 100%; }
.wave--sand  { background: var(--c-sand2); }
.wave--coral { background: var(--atelier-bg); }
.wave--lemon { background: #fff9e0; }

/* ─── MARQUEE ───────────────────────────────────── */
.marquee-wrap {
  background: var(--c-yellow);
  overflow: hidden;
  padding: .6rem 0;
  border-top: 3px solid var(--c-dark);
  border-bottom: 3px solid var(--c-dark);
  position: relative;
}

/* Bouton pause du marquee — Critère RGAA 13.8 / WCAG 2.2.2 */
.marquee-pause {
  position: absolute;
  right: .8rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  background: var(--c-dark);
  color: var(--c-yellow);          /* jaune sur dark → 11.4:1 ✅ */
  border: 2px solid var(--c-yellow);
  border-radius: 50%;
  width: 2rem; height: 2rem;
  font-size: .75rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  transition: background .2s, color .2s;
  flex-shrink: 0;
}
.marquee-pause:hover {
  background: var(--c-yellow);
  color: var(--c-dark);
}
.marquee-pause:focus-visible {
  outline: 3px solid var(--c-dark);
  outline-offset: 3px;
}

.marquee-inner {
  display: flex;
  white-space: nowrap;
  animation: marquee 20s linear infinite;
  padding-right: 3rem; /* espace pour le bouton pause */
}
.marquee-inner.paused { animation-play-state: paused; }

.marquee-inner span {
  font-family: 'Caveat', cursive;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-primary);      /* #1a2e3b sur #ffd531 → 11.4:1 ✅ */
  padding: 0 1.5rem;
}

/* ─── SECTIONS GÉNÉRIQUES ─────────────────────── */
.section {
  position: relative;
  padding: 5rem 2rem 4rem;
  z-index: 1;
}
.section--white { background: var(--c-white); }

.section-header {
  text-align: center;
  margin-bottom: 3rem;
}

/* Emoji de section — décoratif (aria-hidden dans HTML) */
.section-emoji {
  font-size: 3rem;
  display: block;
  margin-bottom: .5rem;
  animation: wiggle 4s ease-in-out infinite;
}

.section-title {
  font-family: 'Pacifico', cursive;
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  color: var(--text-primary);
  line-height: 1.15;
}
/* Couleurs de titre accessibles */
.section-title .c1 { color: var(--coral-text);  } /* 5.6:1 ✅ */
.section-title .c2 { color: var(--blue-text);   } /* 6.1:1 ✅ */
.section-title .c3 { color: var(--green-text);  } /* 5.8:1 ✅ */

.section-sub {
  font-family: 'Caveat', cursive;
  font-size: 1.3rem;
  color: var(--text-muted);        /* #3d5a6a → 7.1:1 ✅ (était #5a7a8a → 4.3:1 ✗) */
  margin-top: .5rem;
}

/* ─── GRILLE DE CARTES ──────────────────────────
   Les <article> remplacent les <div> — Critère RGAA 9.1
   ─────────────────────────────────────────────── */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
}

.card {
  background: var(--c-white);
  border-radius: 24px;
  padding: 2.2rem 2rem 2rem;
  border: 3px solid transparent;
  box-shadow: 6px 6px 0 rgba(0,0,0,.08);
  transition: transform .25s ease, box-shadow .25s ease;
  position: relative;
  overflow: hidden;
}
.card:hover {
  transform: translateY(-8px) rotate(.4deg);
  box-shadow: 10px 14px 0 rgba(0,0,0,.1);
}

/* Bordures décoratives (ne véhiculent pas d'info seule —
   le titre H3 de chaque carte identifie la section) */
.card.blue   { border-color: var(--c-blue);   }
.card.coral  { border-color: var(--c-coral);  }
.card.green  { border-color: var(--c-green);  }
.card.purple { border-color: var(--c-purple); }

/* Barre colorée en tête de carte — décorative */
.card-top-stripe {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 8px;
  border-radius: 24px 24px 0 0;
}
.blue   .card-top-stripe { background: var(--c-blue);   }
.coral  .card-top-stripe { background: var(--c-coral);  }
.green  .card-top-stripe { background: var(--c-green);  }
.purple .card-top-stripe { background: var(--c-purple); }

/* Emoji carte — décoratif (aria-hidden dans HTML) */
.card-emoji {
  font-size: 2.5rem;
  display: block;
  margin-bottom: .8rem;
}

/* H3 remplace les <div class="card-title"> — Critère RGAA 9.1 */
.card h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.3rem;
  margin-bottom: .8rem;
  line-height: 1.2;
}
/* Couleurs de titre H3 accessibles sur fond blanc */
.blue   h3 { color: var(--blue-text);   } /* 6.1:1 ✅ */
.coral  h3 { color: var(--coral-text);  } /* 5.6:1 ✅ */
.green  h3 { color: var(--green-text);  } /* 5.8:1 ✅ */
.purple h3 { color: var(--purple-text); } /* 6.4:1 ✅ */

.card-text {
  font-size: .92rem;
  line-height: 1.8;
  color: var(--text-body);             /* 9.8:1 ✅ */
  font-weight: 600;
}

/* Nuage de tags — liste (ul > li dans HTML) */
.tag-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1rem;
}
/* Tags : texte accessible sur fond clair */
.tag {
  border-radius: 30px;
  padding: .3rem .85rem;
  font-size: .78rem;
  font-weight: 800;
}
.blue   .tag { background: var(--bg-badge-blue);   color: var(--blue-text);   } /* 6.1:1 ✅ */
.coral  .tag { background: var(--bg-badge-coral);  color: var(--coral-text);  } /* 5.6:1 ✅ */
.green  .tag { background: var(--bg-badge-green);  color: var(--green-text);  } /* 5.8:1 ✅ */
.purple .tag { background: var(--bg-badge-purple); color: var(--purple-text); } /* 6.4:1 ✅ */

/* ─── SECTION ATELIER ───────────────────────────── */
.atelier {
  background: var(--atelier-bg);     /* #bf3410 — blanc dessus → 5.3:1 ✅ */
  padding: 4rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.atelier h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 5vw, 4rem);
  color: var(--text-on-dark);        /* blanc sur #bf3410 → 5.3:1 ✅ */
  text-shadow: 2px 2px 0 rgba(0,0,0,.15);
  margin-bottom: 1rem;
  line-height: 1.15;
}

.atelier-quote {
  font-family: 'Caveat', cursive;
  font-size: clamp(1.3rem, 3vw, 2rem);
  color: var(--text-on-dark);        /* blanc → 5.3:1 ✅ (était .9 opacity) */
  margin-bottom: 2rem;
  line-height: 1.5;
}

.atelier-items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  max-width: 800px;
  margin: 0 auto;
  list-style: none;    /* ul > li dans HTML */
}

.atelier-pill {
  background: rgba(255,255,255,.2);
  border: 2px solid rgba(255,255,255,.75);
  color: var(--text-on-dark);        /* blanc → 5.3:1 ✅ */
  border-radius: 50px;
  padding: .6rem 1.4rem;
  font-family: 'Nunito', sans-serif;
  font-size: .92rem;
  font-weight: 800;
  transition: background .2s, transform .2s;
}
.atelier-pill:hover {
  background: rgba(255,255,255,.32);
  transform: scale(1.06) rotate(-1deg);
}

/* ─── SECTION GOURMANDS ──────────────────────────── */
.gourmand-section {
  background: linear-gradient(135deg, #fff9e0 0%, #fff3c4 100%);
  padding: 5rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Citrons décoratifs (aria-hidden dans HTML) */
.lemon-deco { position: absolute; font-size: 5rem; opacity: .08; }
.lemon-deco.l1 { top: 10px;  left: -20px; transform: rotate(-20deg); }
.lemon-deco.l2 { bottom: 0;  right: 30px; transform: rotate(15deg);  font-size: 7rem; }

.food-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 1.2rem;
  max-width: 1000px;
  margin: 2.5rem auto 0;
}

.food-card {
  background: var(--c-white);
  border-radius: 18px;
  padding: 1.5rem 1.4rem;
  border: 3px solid var(--c-sand2);
  box-shadow: 4px 4px 0 var(--c-sand2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.food-card:hover {
  transform: translateY(-5px) rotate(-.4deg);
  box-shadow: 7px 9px 0 var(--c-sand2);
}

/* Emoji alimentaire — décoratif (aria-hidden dans HTML) */
.food-icon { font-size: 2rem; margin-bottom: .5rem; display: block; }

/* H3 remplace <div class="food-name"> */
.food-card h3 {
  font-family: 'Pacifico', cursive;
  font-size: 1.05rem;
  color: var(--text-primary);        /* 14.7:1 ✅ */
  margin-bottom: .3rem;
  line-height: 1.2;
}

.food-desc {
  font-size: .85rem;
  color: var(--text-body);           /* 9.8:1 ✅ (était #7a6040 → 5.5:1 ✅ aussi) */
  line-height: 1.65;
  font-weight: 600;
}

/* ─── SECTION CONTACT ────────────────────────────── */
.contact-section {
  background: var(--contact-bg);     /* #0d7ab0 — blanc dessus → 4.6:1 ✅ */
  padding: 5rem 2rem;
  text-align: center;
}

.contact-section h2 {
  font-family: 'Pacifico', cursive;
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text-on-dark);        /* blanc → 4.6:1 sur #0d7ab0 ✅ (grand texte) */
  margin-bottom: .8rem;
  line-height: 1.15;
}

.contact-section .sub {
  font-family: 'Caveat', cursive;
  font-size: 1.4rem;
  color: var(--text-on-dark);        /* blanc plein (était .85 opacity) → 4.6:1 ✅ */
  margin-bottom: 2.5rem;
  line-height: 1.5;
}

.contact-box {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1.2rem;
  justify-content: center;
}

/* Boutons CTA */
.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  background: var(--c-yellow);
  color: var(--text-primary);        /* #1a2e3b sur #ffd531 → 11.4:1 ✅ */
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  padding: 1rem 2.2rem;
  border-radius: 50px;
  text-decoration: none;
  border: 3px solid var(--text-primary);
  box-shadow: 5px 5px 0 rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.cta-btn:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 8px 9px 0 rgba(0,0,0,.18);
}
.cta-btn:focus-visible {
  outline: 3px solid var(--text-on-dark);
  outline-offset: 4px;
}
/* Bouton secondaire */
.cta-btn.ghost {
  background: rgba(255,255,255,.15);
  color: var(--text-on-dark);        /* blanc → 4.6:1 ✅ */
  border-color: rgba(255,255,255,.8);
  box-shadow: 5px 5px 0 rgba(0,0,0,.15);
}
.cta-btn.ghost:hover {
  background: rgba(255,255,255,.25);
}

/* Carte Google Maps */
.map-wrap {
  max-width: 720px;
  margin: 2.5rem auto 0;
  border-radius: 20px;
  overflow: hidden;
  border: 4px solid rgba(255,255,255,.4);
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
}
.map-wrap iframe {
  display: block;
  width: 100%;
  height: 300px;
  border: none;
}

/* ─── FOOTER ─────────────────────────────────────── */
footer {
  background: var(--c-dark);
  color: var(--text-on-dark);        /* blanc sur #1a2e3b → 14.7:1 ✅ */
  text-align: center;
  padding: 2.5rem 1.5rem;
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.8;
}
footer strong { color: var(--c-yellow); } /* jaune → 11.4:1 ✅ */
footer a {
  color: var(--c-yellow);
  text-decoration: underline;              /* visible sans couleur seule ✅ */
  text-underline-offset: 3px;
}
footer a:hover { text-decoration: none; }
footer a:focus-visible {
  outline: 3px solid var(--c-yellow);
  outline-offset: 3px;
  border-radius: 2px;
}

.footer-emojis {
  font-size: 1.4rem;
  margin-bottom: .7rem;
  letter-spacing: .5rem;
  line-height: 1;
}

/* ─── LIEN PAGE PERSONNALISATION ──────────────────── */
.perso-link-section {
  background: var(--c-white);
  padding: 3rem 2rem;
  text-align: center;
}

.perso-link-card {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--c-sky);
  border: 3px solid var(--c-dark);
  border-radius: 20px;
  padding: 1.5rem 2.5rem;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 800;
  font-size: 1.05rem;
  box-shadow: 6px 6px 0 var(--c-dark);
  transition: transform .2s ease, box-shadow .2s ease;
  max-width: 520px;
  width: 100%;
  justify-content: center;
}
.perso-link-card:hover {
  transform: translateY(-4px);
  box-shadow: 9px 10px 0 var(--c-dark);
}
.perso-link-card:focus-visible {
  outline: 3px solid var(--blue-text);
  outline-offset: 4px;
}
.perso-link-card .link-icon { font-size: 2.2rem; flex-shrink: 0; }
.perso-link-card .link-text { text-align: left; }
.perso-link-card .link-title {
  font-family: 'Pacifico', cursive;
  font-size: 1.2rem;
  color: var(--blue-text);
  display: block;
  margin-bottom: .2rem;
}
.perso-link-card .link-sub {
  font-size: .85rem;
  color: var(--text-muted);
  font-weight: 600;
}

/* ─── SCROLL REVEAL ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px) scale(.97);
  transition: opacity .65s ease, transform .65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* ─── ANIMATIONS ─────────────────────────────────── */
@keyframes popIn {
  from { opacity: 0; transform: scale(.7) translateY(10px); }
  to   { opacity: 1; transform: scale(1)  translateY(0); }
}
@keyframes wiggle {
  0%, 100% { transform: rotate(0deg);   }
  25%       { transform: rotate(-8deg); }
  75%       { transform: rotate(8deg);  }
}
@keyframes fly {
  0%, 100% { transform: translateX(0)    translateY(0); }
  50%       { transform: translateX(18px) translateY(-10px); }
}
@keyframes drift {
  0%, 100% { transform: translateX(0); }
  50%       { transform: translateX(15px); }
}
@keyframes spinSlow {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── PRÉFÉRENCE MOUVEMENTS RÉDUITS ─────────────────
   Critère RGAA 13.8 / WCAG 2.1 §2.3.3
   ─────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration:        0.001ms !important;
    animation-iteration-count: 1       !important;
    transition-duration:       0.001ms !important;
    scroll-behavior:           auto    !important;
  }
  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee-inner {
    animation-play-state: paused;
  }
}

/* ─── RESPONSIVE ─────────────────────────────────── */
@media (max-width: 600px) {
  .cards,
  .food-grid { grid-template-columns: 1fr; }

  .addr-bubble {
    font-size: .78rem;
    white-space: normal;
    text-align: center;
    bottom: 4rem;
    width: 90%;
  }

  .contact-box {
    flex-direction: column;
    align-items: center;
  }
  .cta-btn { width: 100%; max-width: 320px; justify-content: center; }
}

/* ─── IMPRESSION ─────────────────────────────────── */
@media print {
  body::before,
  .sun-wrap, .bird, .clouds, .clouds2,
  .wave, .hero-emoji-row, .marquee-wrap,
  .lemon-deco, .footer-emojis { display: none; }

  body { background: white; color: black; font-size: 12pt; }
  .hero { min-height: auto; padding: 2rem; background: white; }
  .card, .food-card { break-inside: avoid; box-shadow: none; border: 1px solid #ccc; }
}
