@charset "UTF-8";
/*========== Colors ==========*/
/*========== Font and typography ==========*/
/*========== Font weight ==========*/
/* ========== HERO — Design premium & moderne ========== */
/* ---- Hero wrapper ---- */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: 0;
  margin-bottom: 7rem;
  gap: 3rem;
  min-height: calc(100svh - 80px);
  padding: 5rem 2rem;
  position: relative;
  background-image: linear-gradient(rgba(26, 16, 50, 0.18), rgba(26, 16, 50, 0.12)), url("/img/fondo-hero-accueil.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  /* ---- Groupe label + titre (sous-section unique) ---- */
  /* ---- Contenu textuel ---- */
  /* Petit label discret au-dessus du titre */
  /* ---- Bloc typewriter ---- */
  /* ---- Zone vidéo (droite sur desktop, en haut sur mobile) ---- */
}
.hero__intro {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.hero__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  text-align: center;
}
.hero__label {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.65); /* Perle discret — ne concurrence pas le titre */
  margin: 0;
  display: inline-block;
}
.hero__badge {
  display: none;
}
.hero__headline {
  font-family: "Playfair Display", Georgia, "Times New Roman", serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #F7F2EE; /* Ivoire chaud — plus élégant que le blanc pur */
  line-height: 1.25;
  margin: 0;
  letter-spacing: -0.5px;
}
.hero__headline em {
  font-style: normal;
  color: rgba(247, 242, 238, 0.72); /* Ivoire atténué pour la 2e ligne */
  font-weight: 400;
  font-size: 0.95em;
  display: block;
}
.hero .hero__text {
  text-align: center;
  max-width: 480px;
}
.hero .hero__text h1 {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 1.35rem; /* Légèrement plus petit que le titre principal */
  font-weight: 600; /* Un cran en dessous du titre (700) */
  color: rgba(255, 255, 255, 0.82); /* Blanc chaud atténué — le titre reste roi */
  line-height: 1.4;
  margin: 0 0 0.8rem 0;
  letter-spacing: 0.3px;
  min-height: 1.4em;
}
.hero .hero__text p {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8); /* Gris perle clair — clairement secondaire */
  line-height: 1.75;
  margin: 0;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(6px);
  animation: heroTextReveal 0.7s ease forwards;
  animation-delay: 2.5s;
}
.hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(247, 242, 238, 0.95) !important;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  font-family: "Montserrat", "Verdana", sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-decoration: none !important;
  backdrop-filter: blur(4px);
  transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
}
.hero__cta i {
  font-size: 0.75rem;
  transition: transform 0.3s ease;
}
.hero__cta:hover {
  background: rgba(255, 255, 255, 0.18);
  border-color: rgba(255, 255, 255, 0.85);
  color: #ffffff !important;
  transform: translateY(-2px);
}
.hero__cta:hover i {
  transform: translateX(4px);
}
.hero__video {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: -2rem;
  order: -1; /* Passe la vidéo en premier sur mobile */
}
.hero__video-label {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.6);
  letter-spacing: 1px;
  margin: 0 0 0.4rem;
  text-transform: uppercase;
}
.hero__video-label::after {
  content: "";
  display: block;
  width: 36px;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0.5rem auto 0;
  border-radius: 2px;
}
.hero .container__iframe {
  display: flex;
  justify-content: center;
  width: 100%;
  /* border-radius et box-shadow sur le conteneur uniquement visuellement */
  /* overflow: visible pour ne pas clipper les contrôles YouTube (volume, etc.) */
  border-radius: 20px;
  overflow: visible;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.07), 0 12px 32px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.4);
  width: fit-content;
  /* ---- Façade poster ---- */
}
.hero .container__iframe iframe {
  width: min(90vw, 501px);
  aspect-ratio: 16/9;
  height: auto;
  display: block;
  border-radius: 20px; /* Arrondi directement sur l'iframe */
}
.hero .container__iframe .video-facade {
  position: relative;
  width: min(90vw, 501px);
  aspect-ratio: 16/9;
  cursor: pointer;
  display: block;
  border-radius: 20px; /* Arrondi directement sur la façade */
  overflow: hidden; /* Clippe le poster image uniquement */
}
.hero .container__iframe .video-facade__poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero .container__iframe .video-facade__play {
  position: absolute;
  left: 50%;
  top: 56%;
  transform: translate(-50%, -50%);
  width: 4.24rem;
  height: 4.24rem;
  background: rgba(0, 0, 0, 0.32);
  border: 1.5px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: rgb(245, 242, 240);
  backdrop-filter: blur(4px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
  padding: 0;
  /* FA remplace <i> par <svg class="svg-inline--fa"> — font-size n'affecte pas l'icône SVG */
  /* On force la taille directement sur l'élément SVG injecté */
}
.hero .container__iframe .video-facade__play svg.svg-inline--fa,
.hero .container__iframe .video-facade__play i {
  width: 1.1rem;
  height: 1.1rem;
  color: inherit;
  display: block;
  margin-left: 0.15rem; /* Compense optiquement le triangle vers la droite */
}
.hero .container__iframe .video-facade__play:hover {
  transform: translate(-50%, -50%) scale(1.12);
  opacity: 0.85;
}
.hero .container__iframe .video-facade:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.7);
}

/* ========== Bande liens & Qualiopi ========== */
.links-download {
  display: none;
} /* Remplacé par .resources-section */
/* ========== Section Ressources & Certification ========== */
.resources-section {
  margin: -7rem auto 7rem;
  margin-bottom: 0;
  padding: 7rem 2rem;
  background: linear-gradient(135deg, rgba(248, 238, 244, 0.45) 0%, rgba(252, 248, 250, 0.55) 100%);
  border-top: 1px solid rgba(161, 19, 103, 0.07);
  border-bottom: 1px solid rgba(161, 19, 103, 0.07);
}
.resources-section__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  background: none;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  backdrop-filter: none;
}
.resources-section__divider {
  width: 50px;
  height: 2px;
  background: rgba(161, 19, 103, 0.22);
  border-radius: 2px;
  margin: 0 auto;
}

.resources-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.resources-card__eyebrow {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(161, 19, 103, 0.7);
  display: block;
}
.resources-card__title {
  font-family: "Playfair Display", Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #1a1032;
  margin: 0;
  line-height: 1.25;
}
.resources-card__desc {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.92rem;
  font-weight: 400;
  color: rgba(26, 16, 50, 0.6);
  line-height: 1.65;
  margin: 0;
  max-width: 360px;
}
.resources-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: 0.5rem;
}
.resources-card__btn {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgb(161, 19, 103);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1.3rem;
  border: 1.5px solid rgba(161, 19, 103, 0.3);
  border-radius: 50px;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, border-color 0.25s;
}
.resources-card__btn:hover {
  background: rgb(161, 19, 103);
  border-color: rgb(161, 19, 103);
  color: #fff;
}
.resources-card__link {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgb(161, 19, 103);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 0.25rem;
  transition: opacity 0.2s;
}
.resources-card__link i {
  font-size: 0.7rem;
  transition: transform 0.2s;
}
.resources-card__link:hover {
  opacity: 0.75;
}
.resources-card__link:hover i {
  transform: translateX(3px);
}
.resources-card__logo {
  width: 237px;
  height: auto;
  opacity: 0.88;
}

/* Desktop ≥ 1050px : deux colonnes propres */
@media screen and (min-width: 1050px) {
  .resources-section {
    padding: 3rem 8rem 1.5rem;
  }
  .resources-section__inner {
    max-width: 1300px;
    margin: 0 auto;
    flex-direction: row;
    align-items: flex-start;
    justify-content: center;
    gap: 5rem;
    padding: 0;
  }
  .resources-section__divider {
    width: 1px;
    height: 260px;
    background: rgba(161, 19, 103, 0.38);
    flex-shrink: 0;
  }
  .resources-card {
    flex: 0 1 620px;
    align-items: flex-start;
    text-align: left;
    padding: 0 1rem;
  }
  .resources-card__desc {
    max-width: 100%;
  }
  .resources-card__actions {
    justify-content: flex-start;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
/* Desktop ≥ 768px : tout sur une ligne */
@media screen and (min-width: 768px) {
  .agenda {
    margin: 0 auto;
  }
}
@media screen and (min-width: 900px) {
  .hero {
    flex-direction: row;
    text-align: left;
    align-items: stretch; /* Permet aux enfants de prendre toute la hauteur */
    gap: 4rem;
    padding: 4rem 5rem;
    background-image: linear-gradient(to right, rgba(20, 12, 40, 0.55) 0%, rgba(20, 12, 40, 0.22) 52%, transparent 72%, rgba(20, 12, 40, 0.1) 100%), url("/img/fondo-hero-accueil.webp");
  }
  .hero__content {
    flex: 0 0 42%;
    align-items: flex-start;
    text-align: left;
    order: 0;
    justify-content: center;
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
    gap: 2rem;
  }
  .hero__intro {
    align-items: flex-start;
  }
  .hero__label {
    display: inline-block;
  }
  .hero__headline {
    font-size: 2.4rem;
    text-align: left;
  }
  .hero .hero__text {
    text-align: left;
  }
  .hero .hero__text h1 {
    text-align: left;
  }
  .hero__video {
    flex: 1;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    order: 1; /* Vidéo à droite sur desktop */
    transform: translate(95px, -60px) scale(0.765);
  }
  .hero .container__iframe iframe,
  .hero .container__iframe .video-facade {
    width: min(39vw, 519px);
  }
}
@media screen and (min-width: 1127px) {
  .hero {
    min-height: calc(100svh - 96px);
    padding: 4rem 6rem;
  }
  .hero__headline {
    font-size: 2.6rem;
  }
  .hero .container__iframe iframe,
  .hero .container__iframe .video-facade {
    width: min(38vw, 554px);
  }
}
@media screen and (min-width: 1400px) {
  .hero {
    padding: 4rem 8rem;
  }
  .hero__headline {
    font-size: 2.9rem;
  }
  .hero .container__iframe iframe,
  .hero .container__iframe .video-facade {
    width: min(36vw, 606px);
  }
}
@keyframes heroTextReveal {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#satisfaction-section {
  padding: 4rem 2rem 9rem !important;
  background: #f6f1f2;
  margin-bottom: 0;
}
#satisfaction-section h2 {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: rgb(161, 19, 103);
  text-align: center;
  margin: 0 0 3rem;
}
#satisfaction-section h2::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  background: rgb(161, 19, 103);
  margin: 0.6rem auto 0;
  border-radius: 2px;
}
#satisfaction-section .card-list {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
}
#satisfaction-section .card-list .card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2.5rem 1.5rem;
  border-radius: 16px;
  background: #fff;
  border: 1px solid rgba(161, 19, 103, 0.08);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05), 0 8px 24px rgba(161, 19, 103, 0.06);
  transition: transform 0.25s, box-shadow 0.25s;
}
#satisfaction-section .card-list .card:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 16px 40px rgba(161, 19, 103, 0.1);
}
#satisfaction-section .card-list .card svg, #satisfaction-section .card-list .card i {
  color: rgb(161, 19, 103);
  font-size: 2.8rem;
  margin-bottom: 0.5rem;
}
#satisfaction-section .card-list .card .valeur-stats {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 3rem;
  font-weight: 800;
  color: #1a1032;
  margin: 0.5rem 0 0;
  line-height: 1;
}
#satisfaction-section .card-list .card .text-stats {
  font-family: "Montserrat", "Verdana", sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(26, 16, 50, 0.5);
  margin-top: 0.75rem;
  line-height: 1.4;
}

@media screen and (min-width: 850px) {
  #satisfaction-section {
    padding: 5rem 4rem 5rem;
  }
  #satisfaction-section .card-list {
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
  }
  #satisfaction-section .card-list .card {
    flex: 1;
    max-width: none;
  }
}

/*# sourceMappingURL=home.output.css.map */
