/* ════════════════════════════════════════
   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;
}

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

:root {
  /* Largeur de référence unique pour tout le contenu du site
     (body, container, boutons, topbar, panneaux de partage...) */
  --content-width: 750px;

  --bg:          #E4E0DB;
  --shadow:      #AFA495;
  --shadow-hover:#AFA495;
  --shadow-mid:  #CAC2B8;
  --text:        #666666;
  --text-dark:   #2F2F2F;
  --text-mid:    #444444;    
  --text-light:  #7C756A;
  --text-bg:     #655F56;
  --card:        #ffffff;
  --card-hover:  #ffffff;
  --border:      #eeeedd;
  --cat:         #AFA495;
  --red-dark:    #7B2525;
  --red-light:   #CF776C;
  --green-dark:  #607456  ;
  --green-light: #A1B779  ;
  --blue-dark:   #65647C  ;
  --blue-light:  #ADB2D4  ;
  --orange-dark: #D0872D  ;
  --orange-light:#F3C791  ;

  --shadow-hard: 0px 6px 0px var(--shadow);}

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

/* Gestion du style des icônes Google Fonts dans la page */
.material-symbols-outlined, .material-icons-outlined {
  font-family: 'Material Symbols Outlined';
  color: car(--orange-dark);          /* Couleur rouge */
  font-size: 30px;         /* 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;}

/* ════════════════════════════════════════
   TOPBAR
   ════════════════════════════════════════ */

  .topbar {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: var(--content-width);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1em;
    z-index: 100;
    background: var(--bg);
    color: var(--card);}

.topbar button,
.topbar a.topbar-back {
  background: var(--bg);
  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); }

.brand-title {
  font-family: 'Poppins', sans-serif;
  color: var(--text);
  font-weight: 500;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}


/* ════════════════════════════════════════
   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: var(--bg);
  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: 20px;
  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: 20px;
  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: var(--content-width);
  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: var(--bg);
  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: 30px; 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: 30px;
  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: var(--bg);
  border-radius: 30px;
  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: var(--bg);
  border: none;
  border-radius: 30px;
  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: var(--green-light); }


/* ── Bouton langue dans la topbar ── */
.lang-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 400;
  color: var(--text);
  text-decoration: none;
  background: transparent;
  padding: 3px 9px;
  line-height: 1.4;
  cursor: pointer;
  transition: transform 0.15s;
}
.lang-btn:hover { transform: translateY(-2px); }


 /* ════════════════════════════════════════
REVPAR   
════════════════════════════════════════ */
.row { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; }
.row p { font-size: 12px; color:var(--text); flex-shrink: 0; text-transform: none; }
.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: 30px; padding: 12px; border: 0px 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: 70px;}
 [id] {scroll-margin-top: 70px;}
 .avatar-wrap { margin-bottom: 10px;animation: fadeUp 0.5s ease both;align-items: center; align-content: center; object-position:center}
 .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; }
  .links-main {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: 0px;
      justify-content: center;
      background: var(--card);
      border: 0px solid var(--border);
      border-radius: 30px;
      padding: 10px 30px;
      text-decoration: none;
      cursor: pointer;
      overflow:hidden;
      box-shadow: var(--shadow-hard);
      transition: box-shadow 0.18s ease, transform 0.18s ease;
      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 var(--shadow);
      transform: translateY(-1px)}

      @media (max-width: 768px) {
        .link-btn:hover {
          box-shadow: var(--shadow-hard); /* identique au repos */
          transform: none;
        }
      }
      
    .link-btn:active {
      box-shadow: var(--shadow-hard);}

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

    .link-btn-cas {
      display: flex;
      flex-direction: row; /* Aligne le texte et les images côte à côte */
      gap: 20px; /* Espace entre le texte et les images */
      width: 100%;
      border: 0px solid var(--border);
      align-items: stretch;
      justify-content: left;
      background: var(--card);
      border-radius: 30px;
      text-decoration: none;
      cursor: pointer;
      overflow:hidden;
      box-shadow: var(--shadow-hard);
      transition: box-shadow 0.18s ease, transform 0.18s ease;
      color: inherit;}

    .link-btn-cas:hover {
      box-shadow: 0px 9px 0px var(--shadow);
      transform: translateY(-1px)}

    .link-btn-cas:active {
      box-shadow: var(--shadow-hard);}
      
      .text-content-right {
        padding: 10px 30px 10px 0; /* Exemple : 10px en haut, 0 à droite, 10px en bas, 30px à gauche */
        height: 150px;
      }

      .text-content-left {
      padding: 10px 0 10px 30px; /* Exemple : 10px en haut, 0 à droite, 10px en bas, 30px à gauche */
       
       height: 150px;
      }
      
      .image-wrapper-cas {
        flex: 0 0 50%;
        height: 150px;
        position: relative}

      .image-wrapper-cas img {
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover; /* Coupe l'image pour remplir sans déformer */
        display: block;
      }

      .image-wrapper {width: 340px; /* Largeur de la zone image à droite */ height: 180px; position: relative;}
      .image-wrapper img { top: 0;left: 0; width: 100%;  height: 100%; object-fit: cover; /* Coupe l'image pour remplir sans déformer */ display: block;}
      .image-wrapper-yogastyle {width:100% ; height: 180px; position: relative;}
      .image-wrapper-yogastyle img { top: 0;left: 0; width: 100%;  height: 100%; object-fit: cover; /* Coupe l'image pour remplir sans déformer */ display: block;}


      @media (max-width: 500px) { .image-wrapper-cas {height: 240px; }
        .text-content-right {height: 240px;}
        .text-content-left {height: 240px;}
        .image-wrapper-yogastyle {height: 150px;}
      } 

      

      .link-btn-opti {
        display: flex;
        flex-direction: column; /* Aligne le texte et les images côte à côte */
        gap: 0px; /* Espace entre le texte et les images */
        width: 100%;
        border: 0px solid var(--border);
        justify-content: left;
        background: var(--card);
        border-radius: 30px;
        text-decoration: none;
        cursor: pointer;
        overflow:hidden;
        box-shadow: 0px 6px 0px var(--shadow);
        transition: box-shadow 0.18s ease, transform 0.18s ease;
        color: inherit;}
  
      .link-btn-opti:hover {
        box-shadow: 0px 9px 0px var(--shadow-hover);
        transform: translateY(-1px);
        background: var(--card-hover);}

      .link-btn-opti:active {
        box-shadow: var(--shadow-hard);}
        
        .text-content-bas {padding: 0px 20px 10px 20px;/* Exemple : 10px en haut, 0 à droite, 10px en bas, 30px à gauche */        }
        
        .image-wrapper-opti,  .image-wrapper-opti-daniel{
          height: 200px; }
  
        .image-wrapper-opti img {
          height: 100%;
          width: 100%;
          object-fit: cover
        }

        .image-wrapper-opti-daniel img {
          height: 100%;
          width: 100%;
          object-fit: cover;
          object-position: 60% 63%;        }


        @media (max-width: 500px) { .image-wrapper-opti , .image-wrapper-opti-daniel{
          height: 150px;
          width: 100%;       /* Force le wrapper à prendre toute la largeur */
          flex-shrink: 0;    /* Empêche le wrapper de se compresser */
        }
    
        .image-wrapper-opti img {
          display: block;    /* Supprime les espaces blancs sous l'image */
          width: 100%;       /* Force l'image à prendre 100% de la largeur du parent */
          height: 100%;      /* Force l'image à prendre 100% de la hauteur du parent */
          object-fit: cover; /* Maintient le ratio tout en remplissant sans déformer */
        }

        .image-wrapper-opti-daniel img {
          display: block;    /* Supprime les espaces blancs sous l'image */
          width: 100%;       /* Force l'image à prendre 100% de la largeur du parent */
          height: 100%;      /* Force l'image à prendre 100% de la hauteur du parent */
          object-fit: cover; /* Maintient le ratio tout en remplissant sans déformer */
          object-position: 20% 20%;
        }
      } 
       

        .link-btn-cta {
          display: flex;
          flex-direction: column;
          width: 100%;
          justify-content: center;
          background: var(--card);
          border: 0px solid var(--border);
          border-radius: 30px;
          padding: 10px 10px;
          text-decoration: none;
          cursor: pointer;
          overflow:hidden;
          box-shadow: var(--shadow-hard);
          transition: box-shadow 0.18s ease, transform 0.18s ease;
          color: inherit;}

            .text-content-right {
              padding: 5px 5px 5px 0; /* Exemple : 10px en haut, 0 à droite, 10px en bas, 30px à gauche */
              flex: 260px; /* Le texte prend l'espace disponible à gauche */
            }

            .link-btn-yogastyle {
              display: flex;
              flex-direction: column; /* Aligne le texte et les images côte à côte */
              align-items: center; /* Centre verticalement */
              gap: 0px; /* Espace entre le texte et les images */
              width: 100%;
              border: 0px solid var(--border);
              align-items: center;
              justify-content: left;
              background: var(--card);
              border-radius: 30px;
              text-decoration: none;
              cursor: pointer;
              overflow:hidden;
              box-shadow: 0px 6px 0px var(--shadow);
              transition: box-shadow 0.18s ease, transform 0.18s ease;
              color: inherit;}

      
 /* ══════════════════ 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: 30px;
   font-weight: 500;
   color: var(--cat);
   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: var(--border); }

/* ════════════════════════════════════════
   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; text-align: center; 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;}

/* paragraphe */
p, .bloc-text { flex-wrap: wrap; gap: 5px; font-size: 12px; color: var(--text-mid); font-weight: 400; align-items: flex-start; line-height: 1.6;  text-align: left;}
.with-margins {margin-top: 5px; padding-top: 5px;display: block; margin-bottom: 4px;}
.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;}
.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; }
.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;  margin-bottom:2px}
.bloc-text:last-child { border-bottom: none; }
/* paragraphe - centré */
.btn-sub { font-size: 12px; color: var(--text-light); font-weight: 400; align-items: flex-start; line-height: 1.4;  text-align: center;}

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

/* h2, gras dans les blocs */
h2, .title ,.section-title, .bloc-title,
.cas-title { font-size: 14px; font-weight: 400; color: var(--text-mid); }
/* h2, gras dans les blocs - centré */
.btn-title { font-size: 16px; font-weight: 500; color: var(--text-dark);text-align: center;  }
.titledixhuit, .btn-left-title { font-size: 18px; font-weight: 500; color: var(--text-dark);text-align: left; margin-top: 6px;}


/* 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: 0.5rem; }
.section-subtitle-sm{ font-size: 11px; font-weight: 350; color: var(--text-light); font-style: italic; line-height: 1.2; }

/* 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; margin-left: 10px; margin-right: 16px; }
/* 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; }
.maju-extralight { font-size: 11px; font-weight: 500; color: var(--cat); text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 8px; }

.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(--cat); margin: 2rem 0; }
.sep { border-top: 0.5px solid #f0f0f0; margin: 8px 0; }

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


.bloc-partenaires {background: var(--card);border: 0px solid var(--border); border-radius: 30px;padding: 1rem;margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 25px;
  flex-wrap: wrap;
}

.bloc-partenaires img {filter: grayscale(100%);
transition: filter 0.3s ease;}

.bloc-partenaires img:hover {
  /* Enlève le filtre au survol */
  filter: grayscale(50%);}

.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: 0px solid var(--border);
  border-radius: 30px;
  padding: 1rem;
  flex: 1;}


/* COLONNES */
.three-cols { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 10px; margin-bottom: 10px; }
@media (max-width: 500px) { .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: 500px) { .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.28);
      backdrop-filter: blur(3px);
      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: 30px;
      display: block;
      box-shadow: 0 25px 50px -12px var(--shadow);
    }

     .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 var(--shadow);
    }
    .lightbox-close:hover { transform: rotate(90deg); }

    .lightbox-caption {
      margin-top: 5px;
      text-align: center;
      color: var(--text);
      background: var(--bg);
      border-radius: 30px;    }


/* ════════════════════════════════════════
   BADGES & TAGS
   ════════════════════════════════════════ */
.badge { display: inline-block; font-size: 11px; font-weight: 500; padding: 2px 8px; border-radius: 20px; ; white-space: nowrap; color: var(--cat); background: var(--bg); height: 20px;}
.badge-blue   { color: var(--blue-dark); background: var(--blue-light); }
.badge-green  { color: var(--green-dark); background: var(--green-light); }
.badge-amber  { color: var(--orange-dark); background: var(--orange-light); }
.badge-purple { color: var(--blue-dark); background: var(--blue-light); }
.badge-rouge {  color: var(--red-dark); background: var(--red-light);  padding: 2px 8px; border-radius: 20px; white-space: nowrap; flex-shrink: 0; font-size: 11px; font-weight: 500;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: 0px solid #e0ddd8; }

 .print-btn { 
    font-size: 12px; 
    color: var(--blue-dark); 
    background: var(--blue-light); 
    padding: 6px 12px; 
    border-radius: 20px; 
    font-weight: 500; 
    cursor: pointer; 
    border: none; }

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

  .link-in-text {font-size:inherit;color:inherit;text-decoration:none;padding:2px 8px;border-radius:20px;white-space:nowrap;transition:background 0.15s; background:var(--bg);}

  .link-in-text:hover {
    background: transparent;
  }

  .link-in-text-shadow-mid {font-size:inherit;color:var(--text-light);text-decoration:none;padding:2px 8px;border-radius:20px;white-space:nowrap;transition:background 0.15s; background:var(--shadow-mid);}

  .link-in-text-shadow-mid:hover {
    background: transparent;
  }

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


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

.roi-tag { font-size: 11px; color: var(--green-dark); background: var(--green-light); padding: 1px 7px; border-radius: 20px; margin-left: 4px; white-space: nowrap; }

/* ════════════════════════════════════════
   PHOTOS
   ════════════════════════════════════════ */
.photos { display: grid; gap: 8px; }
.photos.two { grid-template-columns: 1fr 1fr; } /* mon parcours */
.photos.one { grid-template-columns: 1fr; } /* mon parcours */
/* photo yoga */
.photo-wrap , .photo-wrap-portrait, .photo-wrap-ceramique, .photo-wrap-coco{ position: relative; border-radius: 30px; overflow: hidden; background: #e8e6e1; aspect-ratio: 4/3; margin-bottom: 10px; }
.photo-wrap.tall { aspect-ratio: 10/5; }
.photo-wrap-avis { position: relative; border-radius: 30px; overflow: hidden; background: #e8e6e1; aspect-ratio: 10/3; margin-bottom: 20px; width:100%}
.photo-wrap-coco{ position: relative; border-radius: 30px; overflow: hidden; background: #e8e6e1; margin-bottom: 10px; height:100%; width:100%}
.photo-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-wrap-avis img { width: 100%; height: 100%; object-fit: cover; display: block; }
.photo-wrap-portrait img { width: 100%; height: 100%; object-fit: cover; display: block;object-position: 50% 50% }
.photo-wrap-ceramique img { width: 100%; height: 100%; object-fit: cover; display: block;object-position: 50% 50% }
.photo-wrap-coco img { width: 100%; height: 100%; object-fit: cover; display: block; object-position: 50% 78% }

.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-in-width { position: relative; border-radius: 30px; overflow: hidden; background: #e8e6e1; width:100%;  ; margin-bottom: 10px; }
.photo-in-width img {display: block; width: 100%; height:220px; object-fit: cover;}

.photo-bloc {background: var(--card); border: 0px solid var(--border);border-radius: 30px; 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;}

@media (max-width: 500px) { .photo-wrap, .photo-wrap-portrait , .photo-wrap-ceramique{height: 200px;aspect-ratio: none; width:100%}
.photo-wrap-portrait img{ object-position: 46% 46%;}
.photo-wrap-ceramique img{ object-position: 35% 35%}
}

    /* ── Situations concrètes ── */
    .situations-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
      margin-bottom: 10px;
    }

    .situation-card {
      background: var(--card);
      border: 0px solid var(--border);
      border-radius: 30px;
      padding: 1rem;
      cursor: pointer;
      transition: box-shadow 0.18s ease, transform 0.18s ease;
    }
    .situation-card:nth-child(1) { animation-delay: 0.20s; }
    .situation-card:nth-child(2) { animation-delay: 0.27s; }
    .situation-card:nth-child(3) { animation-delay: 0.34s; }
    .situation-card:nth-child(4) { animation-delay: 0.41s; }
    .situation-card:nth-child(5) { animation-delay: 0.48s; }
    .situation-card:nth-child(6) { animation-delay: 0.55s; }


    .situation-header {
      display: flex;
      justify-content: space-between;
      align-items: flex-start;
      gap: 8px;
    }


     /* ── Profils types ── */
     .profils-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 10px;
    }

    @media (max-width: 500px) {
      .profils-grid { grid-template-columns: 1fr; }
    }

    .profil-card {
      background: var(--card);
      border: 0px solid var(--border);
      border-radius: 30px;
      padding: 1rem;
    }

    .profil-emoji {
      font-size: 20px;
      margin-bottom: 6px;
      display: block;
    }

    .profil-name {
      font-size: 13px;
      font-weight: 500;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .profil-desc {
      font-size: 11px;
      color: var(--text-mid);
      line-height: 1.6;
    }

    /* ── Séquence offres ── */
    .offres-sequence {
      display: flex;
      align-items: center;
      gap: 6px;
      margin-bottom: 10px;
      overflow-x: auto;
      padding-bottom: 2px;
    }

    .seq-arrow {
      color: var(--text-light);
      font-size: 14px;
      flex-shrink: 0;
    }

    .seq-pill {
      font-size: 11px;
      font-weight: 500;
      padding: 3px 10px;
      border-radius: 30px;
      white-space: nowrap;
      flex-shrink: 0;
    }
/* ════════════════════════════════════════
   CTA CONTACTS
   ════════════════════════════════════════ */


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



.socials-cta {
  height: 40px; /* DONNEZ UNE HAUTEUR FIXE AU PARENT */
  align-items: center;
  display: flex;
  gap: 30px 0px;
  margin-right: 16px;
  align-items: center;
  animation: fadeUp 0.5s 0.14s ease both;
  flex: 1;               
  justify-content: space-around;
  max-width: 40%;}

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

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

.socials-cta a img {
  display: block; /* Force l'affichage */
  height: 60%;   /* Utilise la hauteur du lien */
  width: auto;
}

/* Adaptation pour mobile : on empile les éléments */
@media (max-width: 500px) {
  .cta-contact-row {
    flex-direction: column; /* Empile le texte et les icônes */
    align-items: center;    /* Centre tout horizontalement */
    gap:5px;              /* Ajoute de l'espace entre le texte et les icônes */
  }

  .socials-cta {
    height: auto;      /* Laisse la hauteur s'adapter aux icônes */
    max-width: 100%;   /* Utilise toute la largeur disponible */
    margin-right: 0;   /* Supprime le décalage */
    gap: 25px;         /* Augmente l'espace entre les icônes pour le toucher */
/* Ajoute un peu d'espace vertical */
  }

  .socials-cta a {
    height: 25px; /* Force une zone de clic confortable */
    width: 25px;             /* Assure une zone carrée pour le doigt */
  }

  .socials-cta a img, 
  .socials-cta a svg {
    height: 100%; /* L'icône remplit la zone de clic */
    width: auto;
  }
}


/* ════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════ */
.source { font-size: 11px; color: var(--text-light); text-align: center; padding-bottom: 0.2rem; line-height: 1.6; }
.source a  { font-size: 11px; color:var(--text-light); 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: var(--text-light); text-align: left; margin-top: 0.45rem; padding-bottom: 0.5rem; line-height: 1}
.sourcecornell a { font-size: 11px; color: var(--text-light); 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: var(--text-light);
      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; }

.spacer {
  height: 100px; /* Ajustez selon vos besoins */
  width: 100%;
  background-color: transparent; /* S'assure qu'il est bien vide */
}

/* ════════════════════════════════════════
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; }
}
/* ════════════════════════════════════════
   RÉSERVATION — Accordéon + Formulaire
   ════════════════════════════════════════ */

/* Le <li> contient le bouton + le panneau, pour que l'accordéon
   pousse les éléments suivants au lieu de les superposer */
.booking-item { display: flex; flex-direction: column; }

/* Le bouton devient un vrai <button> stylé comme .link-btn,
   avec une petite flèche qui tourne à l'ouverture */
.link-btn {
  position: relative;
  text-align: center;
  font: inherit;
}

/* Centrage garanti par CSS Grid : 3 colonnes (espace miroir | texte | chevron).
   Plus robuste qu'un simple text-align + padding, qui peut rester décalé
   visuellement à cause du SVG en position absolue. */
.booking-item .link-btn {
  display: grid;
  grid-template-columns: 20px 1fr 20px;
  align-items: center;
  column-gap: 8px;
  text-align: center;
}
.booking-item .link-btn .btn-title,
.booking-item .link-btn .btn-sub {
  grid-column: 2;
}

.btn-chevron {
  width: 16px;
  height: 16px;
  color: var(--text-light);
  transition: transform 0.28s ease;
  pointer-events: none;
}

/* Sur le lien simple (Yoga brunch, pas de .booking-item), le chevron
   n'existe pas aujourd'hui — règle conservée par sécurité si un chevron
   est ajouté un jour à un .link-btn hors accordéon */
.link-btn .btn-chevron {
  position: absolute;
  top: 50%;
  right: 22px;
  transform: translateY(-50%);
}

.booking-item .link-btn .btn-chevron {
  position: static;
  grid-column: 3;
  justify-self: end;
  transform: none;
}

.link-btn[aria-expanded="true"] .btn-chevron {
  transform: translateY(-50%) rotate(180deg);
}
.booking-item .link-btn[aria-expanded="true"] .btn-chevron {
  transform: rotate(180deg);
}

/* État OUVERT : le bouton perd son ombre et ses coins du bas
   deviennent droits, pour fusionner avec le panneau juste en dessous */
.link-btn[aria-expanded="true"] {
  box-shadow: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/* Panneau accordéon : on anime grid-template-rows, c'est ce qui
   permet une hauteur "auto" animée en CSS pur, sans JS de mesure */
.booking-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s cubic-bezier(0.34, 1, 0.64, 1);
}
.booking-panel.open { grid-template-rows: 1fr; }

.booking-panel-inner { overflow: hidden; }
.booking-panel.open .booking-panel-inner { padding-bottom: 8px; }

.booking-form {
  background: var(--card);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  /* Porte l'ombre dure du "gros bouton" maintenant que bouton + panneau
     ne forment plus qu'un seul bloc visuel */
  box-shadow: var(--shadow-hard);
}

.booking-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.booking-field label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.booking-field input[type="text"],
.booking-field input[type="tel"],
.booking-field input[type="email"],
.booking-field input[type="date"],
.booking-field select,
.booking-field textarea {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  color: var(--text-dark);
  background: var(--bg);
  border: none;
  border-radius: 14px;
  padding: 11px 14px;
  outline: none;
  transition: box-shadow 0.18s ease;
  width: 100%;
}

.booking-field textarea {
  resize: none;
  min-height: 64px;
  font-family: 'Poppins', sans-serif;
}

.booking-field input:focus,
.booking-field select:focus,
.booking-field textarea:focus {
  box-shadow: 0 0 0 2px var(--shadow-mid);
}

.booking-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%237C756A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-size: 16px;
  padding-right: 38px;
  cursor: pointer;
}

.booking-optional {
  font-size: 0.68rem;
  color: var(--text-light);
  font-weight: 300;
  margin-top: 2px;
}

.booking-submit {
  margin-top: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.88rem;
  font-weight: 500;
  color: #fff;
  background: var(--text-bg);
  border: none;
  border-radius: 20px;
  padding: 13px 18px;
  cursor: pointer;
  box-shadow: none;
  transition: transform 0.18s ease, opacity 0.18s ease;
}
.booking-submit:hover { transform: translateY(-1px); }
.booking-submit:active { transform: translateY(1px); }
.booking-submit:disabled { opacity: 0.55; cursor: default; transform: none; }

.booking-error {
  font-size: 0.74rem;
  color: var(--red-dark);
  display: none;
}
.booking-error.show { display: block; }

/* ── Pop-up de confirmation ── */
.confirm-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(3px);
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s;
  padding: 1.2em;
}
.confirm-overlay.open { opacity: 1; pointer-events: all; }

.confirm-card {
  background: var(--card);
  border-radius: 28px;
  padding: 34px 28px 28px;
  max-width: 360px;
  width: 100%;
  text-align: center;
  transform: translateY(16px) scale(0.97);
  transition: transform 0.32s cubic-bezier(0.34,1.4,0.64,1);
}
.confirm-overlay.open .confirm-card { transform: translateY(0) scale(1); }

.confirm-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-light);
  color: var(--green-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}
.confirm-icon svg { width: 26px; height: 26px; }

.confirm-card h3 {
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.confirm-card p {
  font-size: 0.82rem;
  color: var(--text-mid);
  text-align: center;
  margin-bottom: 22px;
}

.confirm-close {
  font-family: 'Poppins', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  background: var(--bg);
  border: none;
  border-radius: 20px;
  padding: 11px 26px;
  cursor: pointer;
  transition: transform 0.18s ease;
}
.confirm-close:hover { transform: translateY(-2px); }

@media (max-width: 500px) {
  .booking-form { padding: 18px 16px 18px; }
}

/* ════════════════════════════════════════
   CALENDRIER CUSTOM — "À domicile" (style Doctolib)
   ════════════════════════════════════════ */

.cal-widget {
  background: var(--bg);
  border-radius: 20px;
  padding: 16px 14px 14px;
}

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

.cal-month-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-dark);
  text-transform: capitalize;
}

.cal-nav {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: none;
  background: var(--card);
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.15s ease;
}
.cal-nav:hover { transform: scale(1.08); }
.cal-nav svg { width: 16px; height: 16px; }

.cal-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  margin-bottom: 4px;
  width: 75%;
  margin-left: auto;
  margin-right: auto;
}
.cal-weekdays span {
  text-align: center;
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
}

.cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
  width: 75%;
  margin: 0 auto;
}

.cal-day {
  aspect-ratio: 1;
  border: none;
  border-radius: 12px;
  background: var(--card);
  color: var(--text-dark);
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.cal-day:hover:not(:disabled) { transform: scale(1.06); }

.cal-day-empty {
  background: transparent;
  cursor: default;
  pointer-events: none;
}

.cal-day-disabled {
  background: transparent;
  color: var(--shadow-mid);
  cursor: not-allowed;
  text-decoration: line-through;
}

.cal-day-selected {
  background: var(--text-bg);
  color: #fff;
  font-weight: 500;
}

.cal-slots {
  margin-top: 14px;
  border-top: 1px solid var(--shadow-mid);
  padding-top: 12px;
}

.cal-slots-label {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 0.02em;
  margin-bottom: 8px;
}

.cal-slots-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cal-slot-btn {
  font-family: 'Poppins', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--card);
  border: none;
  border-radius: 16px;
  padding: 9px 14px;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.cal-slot-btn:hover { transform: translateY(-1px); }

.cal-slot-selected {
  background: var(--green-dark);
  color: #fff;
}

.cal-status {
  font-size: 0.72rem;
  color: var(--text-light);
  text-align: center;
  margin-top: 10px;
}

.cal-status-error {
  color: var(--red-dark);
}

/* ════════════════════════════════════════
   LISTE DE DATES CUSTOM — "Vagney" (jours récurrents)
   ════════════════════════════════════════ */

.date-list {
  background: var(--bg);
  border-radius: 18px;
  padding: 12px;
}

.date-list-options {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.date-option {
  font-family: 'Poppins', sans-serif;
  font-size: 0.84rem;
  font-weight: 400;
  color: var(--text-dark);
  background: var(--card);
  border: none;
  border-radius: 14px;
  padding: 11px 14px;
  text-align: left;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background 0.15s ease, color 0.15s ease, transform 0.15s ease;
}
.date-option:hover { transform: translateX(2px); }

.date-option-check {
  width: 16px;
  height: 16px;
  opacity: 0;
  transition: opacity 0.15s ease;
  flex-shrink: 0;
}

.date-option-selected {
  background: var(--green-dark);
  color: #fff;
}
.date-option-selected .date-option-check { opacity: 1; }

.date-list-more {
  margin-top: 8px;
  width: 100%;
  font-family: 'Poppins', sans-serif;
  font-size: 0.76rem;
  font-weight: 500;
  color: var(--text-light);
  background: transparent;
  border: none;
  padding: 8px;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.date-list-more:hover { color: var(--text-dark); }

.date-list-empty {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  padding: 10px 6px;
}

/* ════════════════════════════════════════
   MARGES MOBILE — boutons liens (links-main)
   ════════════════════════════════════════ */
@media (max-width: 500px) {
  .container { padding-left: 0px; padding-right: 0px; box-sizing: border-box; }
}

/* ════════════════════════════════════════
   BLOC LIEU — affiché en haut de chaque formulaire
   ════════════════════════════════════════ */

.booking-lieu {
  display: flex;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-mid);
  background: var(--card);
  border-radius: 14px;
  padding: 0px 10px;
}

.booking-lieu svg {
  width: 16px;
  height: 16px;
  color: var(--text-light);
  flex-shrink: 0;
}

.booking-lieu strong {
  font-weight: 500;
  color: var(--text-dark);
}

.booking-lieu a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
  white-space: nowrap;
  margin-left: auto;
}

.booking-lieu-text {
  font-size: 0.8rem;
  color: var(--text-mid);
  background: var(--card);
  border-radius: 14px;
  padding: 11px 14px;
  line-height: 1.4;
}

/* ════════════════════════════════════════
   DURÉE — boutons-puces 1h / 2h / Plus (À domicile)
   ════════════════════════════════════════ */

.duration-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  background: var(--bg);
  border-radius: 18px;
  padding: 12px;
}

/* ════════════════════════════════════════
   PAGE YOGA BRUNCH
   ════════════════════════════════════════ */

.brunch-card {
  width: 100%;
  background: var(--card);
  border-radius: 24px;
  padding: 20px 22px;
  margin-top: 16px;
  box-shadow: var(--shadow-hard);
}

.brunch-card-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.brunch-program,
.brunch-infos {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.brunch-program li,
.brunch-infos li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.84rem;
  color: var(--text-mid);
  line-height: 1.5;
  text-align: left;
}

.brunch-emoji {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1.5;
}

.brunch-tarif {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--shadow-mid);
}

.brunch-tarif p {
  font-size: 0.84rem;
  color: var(--text-dark);
  text-align: left;
  margin-bottom: 4px;
}

.brunch-tarif-note {
  color: var(--green-dark) !important;
  font-weight: 500;
}

.brunch-intro {
  width: 100%;
  margin-top: 2em;
  padding: 4px 4px;
}

.brunch-intro p {
  font-size: 0.8rem;
  color: var(--text-mid);
  text-align: left;
  line-height: 1.6;
  margin-bottom: 8px;
}

.brunch-intro a {
  color: var(--green-dark);
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.brunch-form {
  width: 100%;
  background: var(--card);
  border-radius: 24px;
  padding: 22px;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: var(--shadow-hard);
}

.brunch-checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  cursor: pointer;
}

.brunch-checkbox-label input[type="checkbox"] {
  margin-top: 3px;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  accent-color: var(--green-dark);
  cursor: pointer;
}

.brunch-checkbox-label span {
  font-size: 0.74rem;
  color: var(--text-light);
  text-align: left;
}

.brunch-checkbox-label a {
  color: var(--green-dark);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.brunch-redirect-note {
  font-size: 0.74rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -4px;
}
