/* ═══════════════════════════════════════════════════════
   MATHIEUX JOUBERT — DESIGN SYSTEM
   Coloré & Créatif — Magazine Littéraire
═══════════════════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=DM+Sans:wght@400;500;600&display=swap');

:root {
  /* Palette colorée & créative */
  --noir:        #0d0d0d;
  --encre:       #1c1c2e;
  --or:          #f0a500;
  --corail:      #ff6b6b;
  --menthe:      #4ecdc4;
  --violet:      #9b59b6;
  --creme:       #fdf8f0;
  --papier:      #fff9f0;
  --gris-doux:   #f2ede6;
  --texte:       #2a2a2a;
  --texte-light: #6b6b6b;

  /* Typographie */
  --font-titre:  'Fraunces', Georgia, serif;
  --font-corps:  'DM Sans', sans-serif;

  /* Espacements */
  --gap-xs:  8px;
  --gap-sm:  16px;
  --gap-md:  32px;
  --gap-lg:  64px;
  --gap-xl:  96px;

  /* Nav height */
  --nav-h: 72px;
}

/* ── Reset ── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 17px; }
body {
  font-family: var(--font-corps);
  color: var(--texte);
  background: var(--creme);
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }

/* ══════════════════════════════════════════════════════
   NAVIGATION — barre fixe PC + hamburger mobile
══════════════════════════════════════════════════════ */
.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: var(--nav-h);
  background: var(--noir);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.4);
}

.nav-logo {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
  white-space: nowrap;
}
.nav-logo span { color: var(--or); }

/* Liens PC */
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 8px 14px;
  border-radius: 6px;
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.1);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 14px; right: 14px;
  height: 2px;
  background: var(--or);
  border-radius: 2px;
}
.nav-links .btn-nav-cta {
  background: var(--or);
  color: var(--noir) !important;
  font-weight: 600;
  padding: 8px 18px;
  border-radius: 20px;
  margin-left: 8px;
}
.nav-links .btn-nav-cta:hover {
  background: #ffd93d;
  transform: translateY(-1px);
}

/* Hamburger */
.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: none;
  border-radius: 8px;
  cursor: pointer;
  padding: 8px;
}
.nav-burger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: all 0.3s;
}

/* Menu mobile overlay */
.nav-mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--noir);
  z-index: 9999;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 12px;
  padding: 40px;
}
.nav-mobile-overlay.open { display: flex; }
.nav-mobile-overlay a {
  color: #fff;
  font-family: var(--font-titre);
  font-size: 2rem;
  font-weight: 700;
  padding: 12px 40px;
  border-radius: 12px;
  transition: all 0.2s;
  text-align: center;
  width: 100%;
  max-width: 300px;
}
.nav-mobile-overlay a:hover,
.nav-mobile-overlay a.active {
  background: var(--or);
  color: var(--noir);
}
.nav-mobile-overlay .nav-mobile-livres {
  background: var(--or);
  color: var(--noir) !important;
  font-size: 2.2rem;
  font-weight: 900;
  box-shadow: 0 4px 20px rgba(240,165,0,0.35);
  transform: scale(1.04);
}
.nav-mobile-overlay .nav-mobile-livres:hover {
  background: var(--or);
  color: var(--noir);
  box-shadow: 0 8px 28px rgba(240,165,0,0.5);
  transform: scale(1.07);
}
.nav-mobile-close {
  position: absolute;
  top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  color: #fff;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════════════════════
   PAGE WRAPPER
══════════════════════════════════════════════════════ */
.page-body {
  padding-top: var(--nav-h);
  min-height: 100vh;
}

/* ══════════════════════════════════════════════════════
   HERO GÉNÉRIQUE
══════════════════════════════════════════════════════ */
.page-hero {
  background: var(--encre);
  color: #fff;
  padding: 80px 40px 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(240,165,0,0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(78,205,196,0.12) 0%, transparent 50%),
    radial-gradient(ellipse at 60% 80%, rgba(155,89,182,0.1) 0%, transparent 50%);
  pointer-events: none;
}
.page-hero h1 {
  font-family: var(--font-titre);
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900;
  line-height: 1.05;
  position: relative;
}
.page-hero p {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  margin-top: 16px;
  position: relative;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(240,165,0,0.2);
  border: 1px solid rgba(240,165,0,0.4);
  color: var(--or);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 20px;
}

/* ══════════════════════════════════════════════════════
   SECTION CONTAINER
══════════════════════════════════════════════════════ */
.section {
  padding: var(--gap-xl) 40px;
  max-width: 1200px;
  margin: 0 auto;
}
.section-full {
  padding: var(--gap-xl) 40px;
}
.section-dark {
  background: var(--encre);
  color: #fff;
}
.section-accent {
  background: linear-gradient(135deg, var(--gris-doux) 0%, var(--papier) 100%);
}

/* Titres section */
.section-title {
  font-family: var(--font-titre);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  color: var(--noir);
  margin-bottom: var(--gap-md);
  line-height: 1.1;
}
.section-title em {
  font-style: italic;
  color: var(--or);
}
.section-dark .section-title { color: #fff; }

.section-subtitle {
  color: var(--texte-light);
  font-size: 1.05rem;
  max-width: 600px;
  margin-bottom: var(--gap-lg);
  line-height: 1.7;
}
.section-dark .section-subtitle { color: rgba(255,255,255,0.65); }

/* ══════════════════════════════════════════════════════
   BOUTONS
══════════════════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.25s;
  cursor: pointer;
  border: none;
}
.btn-or {
  background: var(--or);
  color: var(--noir);
}
.btn-or:hover { background: #ffd93d; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,0.35); }

.btn-outline {
  background: transparent;
  color: var(--noir);
  border: 2px solid var(--noir);
}
.btn-outline:hover { background: var(--noir); color: #fff; }

.btn-dark {
  background: var(--noir);
  color: #fff;
}
.btn-dark:hover { background: var(--encre); transform: translateY(-2px); }

.btn-corail {
  background: var(--corail);
  color: #fff;
}
.btn-corail:hover { background: #ff5252; transform: translateY(-2px); }

/* ══════════════════════════════════════════════════════
   CARTES LIVRES
══════════════════════════════════════════════════════ */
.livres-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 28px;
}
.livre-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.07);
  transition: transform 0.35s ease, box-shadow 0.35s ease;
  border: 1px solid rgba(0,0,0,0.06);
}
.livre-card:hover {
  transform: translateY(-10px) rotate(-0.5deg);
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}
.livre-cover {
  height: 340px;
  background: var(--gris-doux);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  position: relative;
  overflow: hidden;
}
.livre-cover::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 60%, rgba(240,165,0,0.12));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s;
}
.livre-card:hover .livre-cover::after { opacity: 1; }
.livre-cover img {
  max-height: 100%;
  max-width: 85%;
  object-fit: contain;
  filter: drop-shadow(4px 8px 16px rgba(0,0,0,0.25));
  transition: transform 0.35s;
}
.livre-card:hover .livre-cover img { transform: scale(1.06); }

.livre-body { padding: 22px; }
.livre-genre {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--or);
  margin-bottom: 8px;
}
.livre-title {
  font-family: var(--font-titre);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 8px;
  line-height: 1.25;
}
.livre-desc {
  font-size: 0.88rem;
  color: var(--texte-light);
  line-height: 1.6;
  margin-bottom: 14px;
}
.livre-meta {
  font-size: 0.78rem;
  color: var(--texte-light);
  background: var(--gris-doux);
  padding: 6px 10px;
  border-radius: 6px;
  margin-bottom: 16px;
  border-left: 3px solid var(--or);
}
.livre-prix {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 14px;
}
.livre-prix sup { font-size: 0.7em; vertical-align: super; }
.livre-actions { display: flex; flex-direction: column; gap: 10px; }
.btn-amazon {
  background: linear-gradient(135deg, var(--or), #ffd93d);
  color: var(--noir);
  font-weight: 700;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.95rem;
  transition: all 0.25s;
  box-shadow: 0 4px 16px rgba(240,165,0,0.3);
}
.btn-amazon:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(240,165,0,0.4); }
.btn-feuilleter {
  border: 2px solid #ddd;
  color: var(--texte);
  font-weight: 500;
  padding: 11px;
  border-radius: 12px;
  text-align: center;
  font-size: 0.88rem;
  transition: all 0.25s;
}
.btn-feuilleter:hover { border-color: var(--noir); background: var(--noir); color: #fff; }

/* ══════════════════════════════════════════════════════
   CATEGORIE HEADER
══════════════════════════════════════════════════════ */
.cat-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 60px 0 28px;
}
.cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}
.cat-sf     { background: rgba(78,205,196,0.15); color: #2d9e97; border: 2px solid rgba(78,205,196,0.3); }
.cat-thriller { background: rgba(255,107,107,0.15); color: #cc4444; border: 2px solid rgba(255,107,107,0.3); }
.cat-fantasy  { background: rgba(155,89,182,0.15); color: #8e44ad; border: 2px solid rgba(155,89,182,0.3); }
.cat-jeunesse { background: rgba(240,165,0,0.15); color: #d4890a; border: 2px solid rgba(240,165,0,0.3); }
.cat-line { flex: 1; height: 1px; background: #e0d9d0; }
.cat-count { font-size: 0.8rem; color: var(--texte-light); }

/* ══════════════════════════════════════════════════════
   CARDS BLOG & ACTUALITÉS
══════════════════════════════════════════════════════ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 28px;
}
.blog-card {
  background: #fff;
  border-radius: 16px;
  padding: 28px;
  border: 1px solid #e8e2d9;
  box-shadow: 0 3px 16px rgba(0,0,0,0.05);
  transition: transform 0.3s, box-shadow 0.3s;
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.1);
}
.blog-date {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--or);
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.blog-title {
  font-family: var(--font-titre);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--noir);
  margin-bottom: 12px;
  line-height: 1.3;
}
.blog-excerpt {
  color: var(--texte-light);
  font-size: 0.9rem;
  line-height: 1.65;
  margin-bottom: 20px;
}
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--or);
  transition: gap 0.2s;
}
.blog-read-more:hover { gap: 10px; }

/* Actu cards */
.actu-card {
  background: #fff;
  border-radius: 14px;
  padding: 24px 28px;
  border-left: 4px solid var(--or);
  box-shadow: 0 3px 16px rgba(0,0,0,0.05);
  margin-bottom: 20px;
  transition: transform 0.25s;
}
.actu-card:hover { transform: translateX(6px); }
.actu-date-tag {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--or);
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.actu-title {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  color: var(--noir);
  margin-bottom: 10px;
}
.actu-text { color: var(--texte-light); font-size: 0.93rem; }
.btn-yt-small {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 14px;
  background: #ff0000;
  color: #fff;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  transition: transform 0.2s;
}
.btn-yt-small:hover { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════
   NEWSLETTER SECTION
══════════════════════════════════════════════════════ */
.nl-item {
  background: rgba(255,255,255,0.08);
  border-radius: 12px;
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 12px;
  transition: background 0.2s;
  border: 1px solid rgba(255,255,255,0.1);
}
.nl-item:hover { background: rgba(255,255,255,0.13); }
.nl-num { font-size: 0.78rem; font-weight: 600; color: var(--or); margin-bottom: 4px; }
.nl-titre { color: #fff; font-size: 1rem; margin-bottom: 4px; }
.nl-date { color: rgba(255,255,255,0.5); font-size: 0.85rem; }
.nl-btn {
  background: var(--or);
  color: var(--noir);
  padding: 10px 22px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.85rem;
  transition: transform 0.2s;
  white-space: nowrap;
  margin-left: 20px;
}
.nl-btn:hover { transform: scale(1.05); }

/* ══════════════════════════════════════════════════════
   CONTACT BUTTONS
══════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 16px;
}
.contact-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 22px;
  border-radius: 14px;
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.contact-btn:hover { transform: translateY(-3px); box-shadow: 0 10px 28px rgba(0,0,0,0.2); color: #fff; }
.contact-btn svg { width: 24px; height: 24px; flex-shrink: 0; }
.cb-yt  { background: #ff0000; }
.cb-tw  { background: #000; }
.cb-ig  { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.cb-tk  { background: #000; }
.cb-amz { background: #ff9900; color: var(--noir) !important; }
.cb-mail { background: linear-gradient(135deg, #4361ee, #7209b7); flex-direction: column; align-items: flex-start; }
.cb-mail small { font-weight: 400; font-size: 0.78rem; opacity: 0.85; margin-top: 2px; }

/* ══════════════════════════════════════════════════════
   FAQ ACCORDION
══════════════════════════════════════════════════════ */
.faq-item {
  border: 1px solid #e4ddd4;
  border-radius: 12px;
  margin-bottom: 10px;
  overflow: hidden;
  background: #fff;
}
.faq-q {
  width: 100%;
  text-align: left;
  padding: 18px 48px 18px 22px;
  background: transparent;
  border: none;
  font-size: 1rem;
  font-weight: 600;
  color: var(--noir);
  cursor: pointer;
  position: relative;
  font-family: var(--font-corps);
  transition: background 0.2s;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 20px; top: 50%;
  transform: translateY(-50%);
  font-size: 1.4rem;
  color: var(--or);
  transition: transform 0.3s;
}
.faq-item.active .faq-q::after { content: '−'; }
.faq-q:hover { background: var(--gris-doux); }
.faq-a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
.faq-item.active .faq-a {
  grid-template-rows: 1fr;
}
.faq-a-inner {
  overflow: hidden;
  padding: 0 22px;
  transition: padding 0.35s ease;
}
.faq-item.active .faq-a-inner {
  padding: 0 22px 22px;
}
.faq-a p { color: var(--texte-light); line-height: 1.7; margin: 0; }

/* ══════════════════════════════════════════════════════
   À PROPOS
══════════════════════════════════════════════════════ */
.apropos-block {
  margin-bottom: 36px;
  padding-bottom: 36px;
  border-bottom: 1px solid #e4ddd4;
}
.apropos-block:last-child { border-bottom: none; }
.apropos-block h3 {
  font-family: var(--font-titre);
  font-size: 1.25rem;
  color: var(--or);
  margin-bottom: 12px;
}
.apropos-block p { color: var(--texte); line-height: 1.8; margin-bottom: 10px; }

/* ══════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════ */
.site-footer {
  background: var(--noir);
  color: rgba(255,255,255,0.7);
  padding: 48px 40px;
  text-align: center;
}
.footer-logo {
  font-family: var(--font-titre);
  font-size: 1.4rem;
  font-weight: 900;
  color: #fff;
  margin-bottom: 16px;
}
.footer-logo span { color: var(--or); }
.footer-nav {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 24px;
  list-style: none;
}
.footer-nav a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--or); }
.footer-copy { font-size: 0.82rem; }
.footer-copy a { color: var(--or); }

/* ══════════════════════════════════════════════════════
   BTN RETOUR EN HAUT
══════════════════════════════════════════════════════ */
#btn-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 48px; height: 48px;
  background: var(--or);
  color: var(--noir);
  border: none;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  z-index: 800;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700;
}
#btn-top.show { opacity: 1; pointer-events: auto; }
#btn-top:hover { transform: scale(1.1); }

/* ══════════════════════════════════════════════════════
   ÉTOILES DÉCORATIVES HEADER
══════════════════════════════════════════════════════ */
.stars-bg {
  position: absolute; inset: 0;
  pointer-events: none; overflow: hidden;
}
.star {
  position: absolute;
  width: 3px; height: 3px;
  background: var(--or);
  border-radius: 50%;
  animation: twinkle 3s ease-in-out infinite;
}
@keyframes twinkle {
  0%,100% { opacity: 0.15; transform: scale(1); }
  50% { opacity: 0.9; transform: scale(1.6); }
}

/* ══════════════════════════════════════════════════════
   RESPONSIVE MOBILE
══════════════════════════════════════════════════════ */
@media (max-width: 768px) {
  :root { --nav-h: 60px; }

  .site-nav { padding: 0 20px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }

  .section, .section-full { padding: var(--gap-lg) 20px; }
  .page-hero { padding: 56px 20px 44px; }

  .livres-grid { grid-template-columns: 1fr; }
  .blog-grid   { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }

  .nav-mobile-overlay a { font-size: 1.5rem; }
}

@media (min-width: 769px) and (max-width: 1024px) {
  .livres-grid { grid-template-columns: repeat(2, 1fr); }
}

/* Animations entrée */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
.fade-up {
  opacity: 0;
  animation: fadeUp 0.6s ease forwards;
}
.fade-up:nth-child(1) { animation-delay: 0.1s; }
.fade-up:nth-child(2) { animation-delay: 0.2s; }
.fade-up:nth-child(3) { animation-delay: 0.3s; }
.fade-up:nth-child(4) { animation-delay: 0.4s; }
.fade-up:nth-child(5) { animation-delay: 0.5s; }
.fade-up:nth-child(6) { animation-delay: 0.6s; }
.fade-up:nth-child(7) { animation-delay: 0.7s; }
.fade-up:nth-child(8) { animation-delay: 0.8s; }


/* ── BOUTON QCM NAV ── */
.btn-nav-qcm { background: linear-gradient(135deg,#4361ee,#7209b7)!important; color:#fff!important; padding:9px 18px!important; border-radius:25px!important; font-weight:700!important; animation:qcm-pulse 2.5s ease-in-out infinite!important; }
.btn-nav-qcm::after{display:none!important;}
.btn-nav-qcm:hover{transform:translateY(-2px)!important;box-shadow:0 6px 20px rgba(67,97,238,0.5)!important;color:#fff!important;}
@keyframes qcm-pulse{0%,100%{box-shadow:0 0 0 0 rgba(67,97,238,0.4)}50%{box-shadow:0 0 0 7px rgba(67,97,238,0)}}
/* ══════════════════════════════════════════════════════
   SECTION NEWSLETTER
══════════════════════════════════════════════════════ */
.newsletter-section {
  background: var(--encre);
  padding: clamp(50px,7vw,80px) 40px;
  text-align: center;
}
.newsletter-inner { max-width: 640px; margin: 0 auto; }
.newsletter-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: var(--or); background: rgba(240,165,0,0.12); border: 1px solid rgba(240,165,0,0.25);
  padding: 6px 16px; border-radius: 20px; margin-bottom: 18px;
}
.newsletter-titre {
  font-family: var(--font-titre); font-size: clamp(1.8rem,4vw,2.6rem);
  font-weight: 900; color: #fff; line-height: 1.1; margin-bottom: 12px;
}
.newsletter-titre em { font-style: italic; color: var(--or); }
.newsletter-sous {
  color: rgba(255,255,255,0.55); font-size: 1rem; line-height: 1.7;
  margin-bottom: 28px;
}
.newsletter-form {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
}
.newsletter-input {
  flex: 1; min-width: 220px; max-width: 340px;
  background: rgba(255,255,255,0.07); border: 1.5px solid rgba(255,255,255,0.18);
  color: #fff; font-size: 1rem; font-family: var(--font-corps);
  padding: 14px 20px; border-radius: 50px; outline: none;
  transition: border-color 0.2s;
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-input:focus { border-color: var(--or); }
.newsletter-btn {
  background: var(--or); color: var(--noir);
  font-weight: 800; font-size: 0.95rem; font-family: var(--font-corps);
  padding: 14px 28px; border-radius: 50px; border: none; cursor: pointer;
  transition: background 0.2s, transform 0.2s; white-space: nowrap;
}
.newsletter-btn:hover { background: #e09400; transform: translateY(-2px); }
.newsletter-note {
  margin-top: 14px; font-size: 0.75rem; color: rgba(255,255,255,0.28);
}
.newsletter-success {
  display: none; background: rgba(78,205,196,0.12);
  border: 1px solid rgba(78,205,196,0.3); border-radius: 14px;
  padding: 18px 24px; color: var(--menthe); font-size: 0.95rem; margin-top: 12px;
}
@media (max-width: 480px) {
  .newsletter-section { padding: 44px 20px; }
  .newsletter-input { min-width: 100%; }
  .newsletter-btn { width: 100%; }
}
