/* ════════════════════════════════════════
   style.css — Julie Mansuy · Global Styles
   ════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&display=swap');


@font-face {
  font-family: 'Nimbus';
  src: url('/fonts/TAN-NIMBUS.otf') format('opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Gestion du style des icônes Google Fonts dans la page */
.material-symbols-outlined, .material-icons-outlined {
    font-family: 'Material Symbols Outlined';
    color: #d67e7e;          /* Couleur rouge */
    font-size: 25px;         /* Taille plus petite (au lieu de 24px) */
    vertical-align: middle;  /* Aligne parfaitement l'icône si elle est à côté du texte */
    margin-bottom: 6px;}

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

:root {
  --bg:          #f5f5f3;
  --text:        #666666;
  --text-dark:   #2F2F2F;
  --text-mid:    #444444;    
  --text-light:  #888888;
  --card:        #ffffff;
  --border:      #e0e0e0;
  --shadow-hard: 0px 6px 0px rgb(205, 205, 203);
}

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  padding: 0 20px 60px;
  max-width: 600px;
  margin: 0 auto;
  cursor: default;
}

/* ════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 600px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  z-index: 100;
  background: var(--bg);
}

.topbar button,
.topbar a.topbar-back {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text);
  padding: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.topbar button:hover,
.topbar a.topbar-back:hover { transform: translateY(-2px); }

/* ════════════════════════════════════════
   MENU DRAWER (slide depuis la gauche)
   ════════════════════════════════════════ */
.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(3px);
  z-index: 200;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.menu-overlay.open { opacity: 1; pointer-events: all; }

.menu-drawer {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: min(320px, 85vw);
  background: var(--card);
  z-index: 201;
  padding: 28px 28px 44px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.32s cubic-bezier(0.34, 1.2, 0.64, 1);
}
.menu-overlay.open .menu-drawer { transform: translateX(0); }

.menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 36px;
}

.menu-close {
  background: #ebebeb;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.menu-close:hover { transform: rotate(90deg); }

.menu-nav {
  display: flex;
  flex-direction: column;
  gap: 3px;
  flex: 1;}

/* menu links */
.menu-yoga {
  display: block;
  margin-top: 3px;
  padding: 6px 9px;
  border-radius: 12px;
  text-decoration: none;
  color: var(--text-dark);
  font-size: 14px;
  font-weight: 400;
  transition: background 0.15s, transform 0.15s;
}

.menu-subnav {
  display: flex;
  flex-direction: column;
  border-left: 12px solid transparent;
  /* 2. On ajoute une bordure interne colorée de 1.5px */
  /* On utilise background-clip pour que le fond ne soit pas dans la bordure transparente */
  background-clip: padding-box;
  /* 3. On utilise une ombre interne pour "dessiner" la ligne là où on veut */
  box-shadow: inset 1.5px 0 0 0 var(--border);}

.menu-sublink {
  display: block;
  margin-top: 2px;
  margin-left: 4px;
  padding: 5px 9px;
  border-radius: 8px;
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.76rem;
  font-weight: 300;
  transition: background 0.15s, color 0.15s, transform 0.15s;}

.menu-sublink:hover {
  background: var(--bg);
  color: var(--text-dark);
  transform: translateX(3px);
}

.menu-yoga:hover {
  background: var(--bg);
  transform: translateX(4px);
}

.menu-yoga.active, .menu-sublink.active{
  color: var(--text-dark) !important; font-weight: 500 !important;
   background: var(--bg) !important;}


/* ════════════════════════════════════════
   SHARE MODAL (bottom sheet)
   ════════════════════════════════════════ */
.overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(3px);
  z-index: 200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
}
.overlay.open { opacity: 1; pointer-events: all; }

.share-sheet {
  background: var(--card);
  border-radius: 20px 20px 0 0;
  padding: 24px 24px 44px;
  width: 100%;
  max-width: 650px;
  transform: translateY(50px);
  transition: transform 0.32s cubic-bezier(0.34,1.4,0.64,1);
}
.overlay.open .share-sheet { transform: translateY(0); }

.share-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.share-header h2 {
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--text-light);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.close-btn {
  background: #ebebeb;
  border: none;
  cursor: pointer;
  color: var(--text-light);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s;
}
.close-btn:hover { transform: rotate(90deg); }

.qr-wrap { display: flex; justify-content: center; margin-bottom: 20px; }
.qr-img { width: 140px; height: 140px; border-radius: 10px; object-fit: contain; display: block; }

.share-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 16px;
}
.share-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  background: none;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}
.share-item:hover { transform: translateY(-2px); }
.share-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.share-item span {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 300;
  font-family: 'Poppins', sans-serif;
}

.copy-bar {
  display: flex;
  align-items: center;
  background: #f0f0f0;
  border-radius: 10px;
  padding: 11px 14px;
  gap: 10px;
}
.copy-bar span {
  flex: 1;
  font-size: 0.76rem;
  color: var(--text-light);
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.copy-bar button {
  background: var(--text);
  color: white;
  border: none;
  border-radius: 7px;
  padding: 6px 14px;
  font-size: 0.76rem;
  font-family: 'Poppins', sans-serif;
  cursor: pointer;
  white-space: nowrap;
  transition: transform 0.15s;
}
.copy-bar button:hover { transform: translateY(-1px); }
.copy-bar button.copied { background: #7abf8e; }


/* ════════════════════════════════════════
REVPAR   
════════════════════════════════════════ */
 
.row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.row label { font-size: 13px; color: #555; width: 190px; flex-shrink: 0; }
.row input[type=range] { flex: 1; accent-color: #444; }
.row .val { font-size: 13px; color: #444; font-weight: 500; min-width: 64px; text-align: right; }
.card { background: #fff; border-radius: 10px; padding: 12px; border: 0.5px solid #e0e0e0; }
.card .clabel { font-size: 11px; color: #888; margin-bottom: 4px; }
.card .cval { font-size: 20px; color: #444; font-weight: 500; }
.card .csub { font-size: 10px; color: #aaa; margin-top: 2px; }

.quote-block { border-radius: 10px; padding: 1rem 1rem; margin: 0 0; }
.quote-block p { font-size: 11px; color: #666; font-style: italic; line-height: 1.7; }
.impact-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 0.5px solid #f0f0f0; font-size: 13px; }
.impact-row:last-child { border-bottom: none; font-weight: 500; }
.impact-row .ilabel { color: #444; }
.highlight { color: #1a7a4a; font-weight: 500; }


/* ════════════════════════════════════════
   MAIN PAGE header
   ════════════════════════════════════════ */

 .container {display: flex;flex-direction: column;align-items: center; padding-top: 88px;}
 .avatar-wrap { margin-bottom: 10px;animation: fadeUp 0.5s ease both;}
 .avatar-wrap img { width: 200px;height: 200px;  border-radius: 50%;  object-fit: cover;  object-position: center top;  display: block;}
   
 /* Boutons avec ombre */
  .links {width: 100%;display: flex;flex-direction: column;gap: 16px;list-style: none;}
  ul {list-style: none;}

    .link-btn {
      display: flex;
      flex-direction: column;
      width: 100%;
     min-height: 70px;
      align-items: center;
      justify-content: center;
      background: var(--card);
      border: none;
      border-radius: 30px;
      padding: 10px 30px;
      text-decoration: none;
      cursor: pointer;
      box-shadow: var(--shadow-hard);
      transition: box-shadow 0.18s ease, transform 0.18s ease;
      animation: fadeUp 0.5s ease both;
      color: inherit;}

    .link-btn:nth-child(1) { animation-delay: 0.20s; }
    .link-btn:nth-child(2) { animation-delay: 0.27s; }
    .link-btn:nth-child(3) { animation-delay: 0.34s; }
    .link-btn:hover {
      box-shadow: 0px 9px 0px rgb(205, 205, 203);
      transform: scale(1.02);}
    .link-btn:active {
      transform: scale(0.99);
      box-shadow: var(--shadow-hard);}

    .links li {margin: 0; padding: 0;}

 /* ══════════════════ FRISE CHRONOLOGIQUE, QUI JE SUIS ══════════════════ */
 .zigzag { display: flex; flex-direction: column; gap: 8px; margin-bottom: 10px; }

 .zz-row {
   display: grid;
   align-items: center;
   gap: 10px;
 }
 .zz-row--left  { grid-template-columns: 56px 1fr; }
 .zz-row--right { grid-template-columns: 1fr 56px; }

 .zz-year {
   font-size: 26px;
   font-weight: 500;
   color: #ccc; /* Remplacement temporaire de var(--border) pour le test */
   line-height: 1;
   flex-shrink: 0;
 }
 .zz-row--right .zz-year { text-align: right; }
 .zz-row--right .zz-card { order: -1; }

 .zz-card--now { border-color: #333; }
 .zz-card--now .bloc-label { color: #666; }

/* ════════════════════════════════════════
   TYPOGRAPHY — Titres & Hero
   ════════════════════════════════════════ */

/* H1 Gros titres */
section.hero { margin-bottom: 1.5rem; }
section.hero h1 { font-size: 22px; font-weight: 500; margin-bottom: 1px; color: var(--text-dark); line-height: 1.1;}
.hero h1, h1, h2.sub { font-size: 22px; font-weight: 500; margin-bottom: 4px; color: var(--text-dark); line-height: 1.1;}
h1.name {font-family: 'Nimbus', sans-serif;font-size: 1.7rem; font-weight: 500;  color: var(--text-mid);  letter-spacing: 0.03em; margin-top: 14px; margin-bottom: 6px; animation: fadeUp 0.5s 0.07s ease both;}

/* page offset pour la topbar fixe */
.page-content { padding-top: 72px;}

/*  */
p, .bloc-text{ flex-wrap: wrap; gap: 5px; font-size: 12px; color: var(--text-mid); align-items: flex-start; line-height: 1.6;  text-align: left; hyphens: auto;}
p.with-margins {margin-top: 5px; padding-top: 5px;display: block; margin-bottom: 4px;}
p.avec-badge, .bloc-text-avec-badge { display: flex; gap: 5px; font-size: 12px; color: var(--text-mid); align-items: flex-start; line-height: 1.6;  justify-content: space-between; hyphens: auto;}
p.light, .bloc-text-light { display: flex; flex-wrap: wrap; gap: 5px; font-size: 12px; color: var(--text-light); align-items: flex-start; line-height: 1.6;  text-align: left; hyphens: auto;}
.bloc-text-strong { font-weight:500   ;flex-wrap: wrap; gap: 5px; font-size: 12px; color: var(--text-mid); align-items: flex-start; line-height: 1.6;  text-align: left; hyphens: auto; margin-bottom:2px}
.bloc-text:last-child { border-bottom: none; }

.sub-title strong {color: #1a1a1a;margin-bottom: 4px;}

/* main page texte des boutons */
h2.btn-title { font-size: 0.95rem; font-weight: 400; color: var(--text); letter-spacing: 0.01em;  text-align: center; }
h2.btn-left-title { font-size: 0.95rem; font-weight: 400; color: var(--text); letter-spacing: 0.01em; text-align: left; }
h3.btn-sub { font-size: 0.74rem; color: var(--text-light); font-weight: 300; margin-top: 3px;  text-align: center; }

/* h2, gras dans les blocs */
h2, h3.title ,.section-title, .bloc-title,
.cas-title { font-size: 14px; font-weight: 500; color: var(--text-dark); margin-bottom: 4px; }

/* sous-titre italique*/
.section-subtitle,
.cas-context { font-size: 11px; font-weight: 350; color: var(--text-light); font-style: italic; line-height: 1.2; margin-bottom: 1.25rem; }

/* majuscule, ne garder que maju */
.maju, .section-number, .bloc-label,
.cas-number { font-size: 11px; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }
.cta-questions {font-size: 11px; font-weight: 500;  color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; line-height: 1.6; flex-shrink: 0; padding-right: 6px;}
/* majuscule sans margin bottom */
.majusm { font-size: 11px; font-weight: 500; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 0px; }

.price-main { font-size: 26px; font-weight: 600; color: var(--text-mid); margin-bottom: 0px; }
.price-old { font-size: 12px; color: #bbb; text-decoration: line-through; margin-bottom: 8px; }

.divider { border: none; border-top: 1px solid var(--border); margin: 2rem 0; }
.sep { border-top: 0.5px solid #f0f0f0; margin: 8px 0; }


/* ════════════════════════════════════════
   BLOCS & CARTES
   ════════════════════════════════════════ */
section.bloc, .bloc , .service-card{background: var(--card);border: 0.5px solid var(--border); border-radius: 12px;padding: 1rem;margin-bottom: 10px;}

.service-text { font-size: 12px; color: var(--text-light); line-height: 1.6; }

/* PILIERS */
.piliers-grid { display: flex; gap: 10px; margin-bottom: 10px; }
.pilier-card {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  padding: 1rem;
  flex: 1;}


/* COLONNES */
.three-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 10px; }
@media (max-width: 560px) { .three-cols { grid-template-columns: 1fr; } }
/* grid à enlever */
.two-cols,
.grid { display: grid; grid-template-columns: 1fr 1fr; column-gap: 10px; margin-bottom: 0px; }
@media (max-width: 560px) { .two-cols { grid-template-columns: 1fr; } }

/* ════════════════════════════════════════
    DOTS
   ════════════════════════════════════════ */

.dot-r { color:#e24b4a; flex-shrink: 0; margin-top: 1px; margin-right: 5px;}
.dot-b { color:#185fa5; flex-shrink: 0; margin-top: 1px; margin-right: 5px;}
.dot-g { color:#1a7a4a; font-weight: 500; flex-shrink: 0; margin-top: 1px;  margin-right: 5px;}
.dot-grey { color: var(--text-mid); flex-shrink: 0; margin-top: 1px; margin-right: 5px; }


    /* ════════════════════════════════════════
      LIGHTBOX (POP-UP POUR DIPLOME)
    ════════════════════════════════════════ */
    .lightbox {
      position: fixed;
      inset: 0;
      background: rgba(0,0,0,0.85);
      backdrop-filter: blur(8px);
      z-index: 1000;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 20px;
      opacity: 0;
      pointer-events: none;
      transition: opacity 0.3s ease;
    }
    .lightbox.open { opacity: 1; pointer-events: all; }

    .lightbox-inner {
      position: relative;
      max-width: 700px;
      width: 100%;
      transform: scale(0.9);
      transition: transform 0.3s cubic-bezier(0.34, 1.3, 0.64, 1);
    }
    .lightbox.open .lightbox-inner { transform: scale(1); }

    .lightbox-img {
      width: 100%;
      align-items: center;
      justify-content: center;
      height: auto;
      border-radius: 15px;
      display: block;
      box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    }

     .lightbox-close {
      position: absolute;
      top: -70px;
      right: 70px;
      background: #fff;
      border: none;
      cursor: pointer;
      width: 34px;
      height: 34px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--text-light);
      transition: transform 0.2s;
      box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    }
    .lightbox-close:hover { transform: rotate(90deg); }

    .lightbox-caption {
      margin-top: 15px;
      text-align: center;
      color: white;
    }
    .lightbox-caption-title { font-weight: 300; font-size: 0.8rem; }
    .lightbox-caption-date { font-size: 0.6rem; opacity: 0.7; margin-top: 4px; }


/* ════════════════════════════════════════
   BADGES & TAGS
   ════════════════════════════════════════ */
.badge { display: inline-block; font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 20px; ; white-space: nowrap; color: #185fa5; background: #e8f0fb; height: 20px;}
.badge-blue   { color: #185fa5; background: #e8f0fb; }
.badge-green  { color: #1a7a4a; background: #e8f5ee; }
.badge-amber  { color: #854f0b; background: #faeeda; }
.badge-purple { color: #534ab7; background: #eeedfe; }

.badge-rouge { font-size: 11px; font-weight: 500; color: #e24b4a; background: #fce8e8; padding: 2px 8px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; height: 20px;}

.etape-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 6px; }

.tags-row { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag { display: inline-block; font-size: 11px; padding: 3px 10px; border-radius: 20px; background: #f0ede8; color: #666; border: 0.5px solid #e0ddd8; }

 .print-btn { 
    font-size: 12px; 
    color: #185fa5; 
    background: #e8f0fb; 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-weight: 500; 
    cursor: pointer; 
    border: none; 
  }

  .print-btn:hover { opacity: 0.8; }


/* ════════════════════════════════════════
   ÉTAPES & PROPOSITIONS
   ════════════════════════════════════════ */




.prop-title { font-size: 13px; font-weight: 500; color: var(--text-dark); }

.roi-tag { font-size: 11px; color: #1a7a4a; background: #e8f5ee; padding: 1px 7px; border-radius: 10px; margin-left: 4px; white-space: nowrap; }

/* FRICTIONS */
.friction-row { display: flex; justify-content: space-between; align-items: center; padding: 7px 0; border-bottom: 0.5px solid #f0f0f0; font-size: 13px; }

.friction-label { color: var(--text-mid); padding-right: 8px; line-height: 1.5; }

/* ════════════════════════════════════════
   PHOTOS
   ════════════════════════════════════════ */
.photos { display: grid; gap: 8px; margin-bottom: 10px; }
.photos.two { grid-template-columns: 1fr 1fr; } /* mon parcours */
.photos.one { grid-template-columns: 1fr; } /* mon parcours */
/* photo yoga */
.photo-wrap { position: relative; border-radius: 12px; overflow: hidden; background: #e8e6e1; aspect-ratio: 4/3; margin-bottom: 10px; }
.photo-wrap.tall { aspect-ratio: 10/5; }
.photo-wrap.avis { aspect-ratio: 10/3; margin-bottom: 20px; }
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-label { position: absolute; bottom: 8px; left: 10px; font-size: 11px; font-weight: 400; color: #fff; background: rgba(0,0,0,0.45); padding: 3px 8px; border-radius: 20px; }

.photo-bloc {
  background: var(--card);
  border: 0.5px solid var(--border);
  border-radius: 12px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  overflow: hidden;}

.photo-bloc img {  width: 100%; height: 100%; object-fit: cover; object-position: center; display: block;
}

/* ════════════════════════════════════════
   CTA CONTACTS
   ════════════════════════════════════════ */


/* Wrapper flex : texte à gauche, icônes à droite */
.cta-contact-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-bottom: 34px;
}



.socials-cta {
  display: flex;
  gap: 8px;
  align-items: center;
  animation: fadeUp 0.5s 0.14s ease both;
  color: var(--text-light);
  flex: 1;               
  justify-content: space-around;
  max-width: 50%;
}

.socials-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  text-decoration: none;
  transition: transform 0.2s ease;
  /* hauteur = les 2 lignes de texte (11px × 1.6 × 2 lignes) */
  height: calc(11px * 1.6 * 2);
}

.socials-cta a:hover { transform: translateY(-3px); }

/* icônes : hauteur = celle du lien, largeur automatique */
.socials-cta svg {
  height: 100%;
  width: auto;
}

/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.source { font-size: 11px; color: #bbb; text-align: center; padding-bottom: 0.2rem; line-height: 1.6; }
.source a  { font-size: 11px; color: #bbb; text-decoration: none; text-align: center; transition: transform 0.2s ease; border-bottom: 1px solid transparent; padding-bottom: 2px; display: inline-block; }
.source a:hover { transform: translateY(-3px); }

.sourcecornell { font-size: 11px; color: #bbb; text-align: left; margin-top: 0.45rem; padding-bottom: 0.5rem; line-height: 1}
.sourcecornell a { font-size: 11px; color: #bbb; text-decoration: none; transition: transform 0.2s ease; border-bottom: 1px solid transparent; padding-bottom: 2px; display: inline-block;}
.sourcecornell a:hover { transform: translateY(-3px); }

.socials-footer {
      display: flex;
      justify-content: center;
      align-items: center;
      gap: 0px;
      margin-bottom: 34px;
      animation: fadeUp 0.5s 0.14s ease both; }

.socials-footer a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 30px;
      height: 20px;
      color: #bbb;
      text-decoration: none;
      transition: transform 0.2s ease;
    }

.socials-footer a:hover { transform: translateY(-3px); }
.socials-footer svg { width: 17px; height: 17px; }

/* ════════════════════════════════════════
   ANIMATION
   ════════════════════════════════════════ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ════════════════════════════════════════
  ICONES PAGE PRINCIPALE
   ════════════════════════════════════════ */

.socials {
      display: flex;
      gap: 0px;
      margin-bottom: 34px;
      animation: fadeUp 0.5s 0.14s ease both;
    }

.socials a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 36px;
      height: 36px;
      color:var(--text);
      text-decoration: none;
      transition: transform 0.2s ease;
    }

.socials a:hover { transform: translateY(-3px); }
.socials svg { width: 20px; height: 20px; }

/* ════════════════════════════════════════
CGV
remplace sub-title par p
   ════════════════════════════════════════ */

@media print {
  body { background: white; padding: 0; }
  .print-btn { display: none; }
  .bloc { border: none; padding: 0; margin-bottom: 2rem; }
  .divider { margin: 1rem 0; }
}