
html {
  font-size: 20px; /* px signifie 'pixels': la taille de base pour la police est désormais 10 pixels de haut  */
  font-family: "Inter", Arial, Helvetica, sans-serif;
  /*height: 100%;*/
}

body {
  margin: 0;
  padding: 0;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
  overflow-x: hidden;       /* garde le scroll horizontal bloqué */
  overflow-y: auto;         /* permet le scroll vertical */
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
  padding-top: 100px;
}

@font-face {
  font-family : Quicksand;
  src: url(fonts/Quicksand.otf);
  font-weight: normal;
}

@font-face {
  font-family : Quicksand;
  src: url(fonts/Quicksand_Bold.otf);
  font-weight: bold;
}

table { 
  border-collapse: collapse; 
  border: 0px solid rgb(0, 0, 0);
}

table td{ 
  border: 0px solid rgb(255, 5, 5);
}


/* STYLE DU HEADER */
/* HEADER FIXE */
.header {
  text-align: center;
  font-size: 15px;
  color: rgb(110, 138, 163);

  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;

  background-color: white;
  box-shadow: 0px 3px 10px -2px rgba(0,0,0,0.7);

  min-height: 100px;                 /* ⬅️ remplace height */
  transition: transform 0.8s ease;   /* même animation */
  transform: translateY(0);
}


/* =====================
   LIGNE UNIQUE (PC)
===================== */
.header-row {
  display: flex;
  align-items: center;
  gap: 16px;

  padding: 10px 16px;
  white-space: nowrap; /* force 1 ligne sur PC */
}

/* =====================
   LOGOS
===================== */
.logo-main {
  max-width: 280px;
  height: auto;
}

.header-logo {
  display: flex;
  flex-direction: column;   /* texte au-dessus, logo en dessous */
  align-items: center;      /* ⬅️ centrage horizontal */
  text-align: center;
  font-size: 18px;
}

.header-partner {
  display: flex;
  flex-direction: column;   /* texte au-dessus, logo en dessous */
  align-items: center;      /* ⬅️ centrage horizontal */
  text-align: center;
  font-size: 11px;
}

.logo-partner {
  max-width: 90px;
  display: block;
}

.header-seance {
  flex: 1;                     /* ⬅️ PREND TOUTE LA LARGEUR DISPO */
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.header-nav {
  flex: 1;                     /* ⬅️ PREND TOUTE LA LARGEUR DISPO */
  display: flex;
  align-items: center;

  justify-content: space-between; /* ⬅️ RÉPARTITION SUR TOUTE LA LARGEUR */
  gap: 0px;

  flex-wrap: nowrap;
  white-space: nowrap;
}

.titrebandeau {
  font-size: 25px;
}


@media (min-width: 1000px) {
  .header-nav a:first-child {
    margin-left: 100px;
  }

    .header-nav a:last-child {
    margin-right: 30px;
  }

  .titrebandeau {
  margin-left: 100px;
}

}

/* =====================
   MOBILE
===================== */
@media (max-width: 1000px) {

  .header {
    min-height: 10px;   /* ⬅️ au lieu de 100px */
  }

  .header-row {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    white-space: normal;
    padding: 4px 8px;
  }

  /* Ligne 1 : logo gauche / partner droite */
  .header-logo {
    flex: 0 0 auto;
  }

  .header-partner {
    margin-left: auto;
    text-align: right;
    font-size: 10px;
  }

  /* 🔥 Ligne 2 : navigation pleine largeur */
  .header-nav {
    flex: 0 0 100%;              /* prend toute la ligne */
    display: flex;
    justify-content: space-between; /* ⬅️ répartit les boutons */
    align-items: center;
    flex-wrap: wrap;
    margin-top: 0px;
    padding: 0 0px;             /* marge gauche/droite */
  }

  /* Boutons : largeur flexible */
  .header-nav a {
    flex: 0 0 auto;              /* ⬅️ permet l’étirement */
    text-align: center;
  }

  .header-nav a:nth-child(3) {
    margin-left: 5px;
    text-align: left;
  }

  .header-nav a:last-child {
    margin-right: 5px;
    text-align: right;
  }

  /* Optionnel : réduire les logos */
  .logo-main {
    max-width: 190px;
  }

  .logo-partner {
    max-width: 70px;
  }

  body {
    padding-top: 10px;
  }

  .titrebandeau {
  font-size: 16px;
}

}



/* STYLE DE LA SECTION 1*/

/* =========================
   HERO — STYLES PC (rappel)
========================= */
.hero-title {
  font-size: 50px;
  color: #fff;
}

.hero-highlight {
  color: rgb(215, 255, 136);
  font-size: 70px;
}

.hero-subtitle {
  font-size: 25px;
  color: #fff;
  font-weight: normal;
}

.hero-image img {
  max-width: 150%;
}


/* =========================
   MOBILE — AFFICHAGE EN COLONNE
========================= */
@media (max-width: 1000px) {
  


  /* 🔥 Sort la table du layout table */
  table,
  tr,
  td {
    display: block !important;
    width: 100vw !important;
    margin: 0;
    padding: 0;
  }

  /* le td prend toute la largeur DISPONIBLE */
  td {
    text-align: center;
  }

  tr td {
    margin-bottom: 0px; /* espace fin entre cellules */
  }

   tr {
    margin-bottom: 10px;
  }

  /* le contenu est réellement centré */
  .cell-inner1 {
    margin: 0 auto;        /* centré */
    padding-left: 10px;    /* ⬅️ marge gauche */
    padding-right: 10px;   /* ⬅️ marge droite */
    box-sizing: border-box;
  }

  /* SUPPRIME LES CELLULES VIDES */
  table.hero td:empty {
    display: none !important;
  }

  /* Masque les colonnes vides */
  table.hero td[width="15%"] {
    display: none !important;
  }

  /* Image centrée */
  table.hero .hero-image img {
    display: block !important;
    margin: 0 auto !important;
    width: min(90%, 420px) !important;
    height: auto !important;
  }

  .hero-title {
  font-size: 25px;
  color: #fff;
  }

  .hero-highlight {
    color: rgb(215, 255, 136);
    font-size: 30px;
  }

  /* Sous-titre centré */
  table.hero .hero-subtitle {
    padding: 20px 0px !important;
  }
}

.section-title-cell {
  height: 200px;
  font-size: 40px;
  vertical-align: middle;
  white-space: nowrap;
  
}

.section-title-text {
  vertical-align: middle;
}

@media (max-width: 1000px) {

  .section-title-cell {
    height: auto;              /* ⬅️ libère la hauteur */
    padding: 16px 0;
    white-space: normal;
    width: 100% !important;
    margin: 0 auto !important;
    line-height: 1;
  }

  .section-title-logo {
    margin: 5px auto 0px;        /* logo au-dessus */
    width: 150px;              /* plus compact */
  }

  .section-title-text {
    font-size: 25px;
  }

    .section-title-cell2 {
    padding: 20px 0px;
    line-height: 1;
  }


  
}

.tableinf2 { 
  background:  rgb(255, 255, 255);
  color: rgb(110, 138, 163);
  text-align:center;
}

.trtexte10,
.trtexte11,
.trtexte14 { 
  font-size: 16px;
  color: rgb(110,138,163);
  line-height: 1.5;  
}

.trtexte13 { 
  color: rgb(110,138,163);
  font-size: 20px; 
  font-weight: bold;
  text-align: left;
}

@media (max-width: 1000px) {

  .trtexte10,
  .trtexte15{
    text-align: justify;
  }

  .trtexte11 {
    text-align: center;
  }

  .trtexte14{
    text-align: left;
  }

}


.affich_mob {
  display: none;
}



@media (max-width: 1000px) {
  .bouton-inactif {
    font-size: 15px;
  }
  
  .affich_mob {
    display: block;
  }

}


/* 🔥 FIX iOS INPUT OVERFLOW */
*,
*::before,
*::after {
  box-sizing: border-box;
}



select {
  padding: 6px;
  border-radius: 6px;
  text-align: center;
  font-weight: bold;
  font-size: 20px;
}


.bouton-inactif,
.bouton-inactif2 {
  border: none;
  color: rgb(110, 138, 163);
  background-color: rgb(255, 255, 255);
  padding: 2px 5px;
  text-align: center;
  text-decoration: none;
  display: inline-block;
  font-size: 15px;
  margin: 0px 2px;
  cursor: pointer;
  font-weight: bold;
  border-radius: 6px;
  user-select: none !important;
  -webkit-user-select: none !important;
  -moz-user-select: none !important;
}

.bouton-play {
  color: rgb(255, 255, 255);
}

.bouton-inactif:hover,
.bouton-inactif2:hover {
  color: rgb(164,203,106);
  font-weight: bold;
}

@media (hover: hover) {
  .bouton-play:hover {
    color: rgb(164,203,106);
  }
}


.select-seance {
  border: none;
  background-color: rgb(110, 138, 163);
  color: #fff;
  padding: 6px 10px;
  border-radius: 6px;
  outline: none; /* enlève le contour au focus */
  cursor: pointer;
}


.video-modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,0.85);
}

.video-content {
  position: relative;
  margin: 10% auto;
  width: 90%;
  max-width: 900px;
}

.video-content video {
  width: 100%;
  border-radius: 10px;
}

.video-close {
  position: absolute;
  top: -20px;
  right: 0;  
  cursor: pointer;
}

@media (max-width: 1000px) {
  .video-content {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    max-width: none;
    margin: 0;
    z-index: 9999;
  }

  .video-content video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background: black;
  }

    .pc-only {
    display: none !important;
  }

}

  
.tooltip {
    position: relative;
    display: inline-block; /* essentiel pour coller au contenu (l'image) */
}

.tooltip-text {
    display: none;
    position: absolute;

    /* alignement vertical sur l'image */
    top: 50%;
    transform: translateY(-50%);

    /* alignement EXACT avec le bord droit de l’image */
    left: 100%;   /* 100% = largeur exacte de l’image */

    background:  rgb(99, 198, 196);
    color: #000000;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 13px;
    text-align: justify;
    line-height: 1.4;
    z-index: 10;

    white-space: normal;
    width: max-content;
    max-width: 400px;
}

.img-center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: transparent;
}

/* Affichage au survol ou clic */
.tooltip:hover .tooltip-text,
.tooltip:active .tooltip-text {
    display: block;
}

