/* ========================= */
/* CLASS CENTER — Pour centrer les éléments */
/* ========================= */
.center {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  /* Centre horizontalement dans un conteneur */
  padding: 0;
  /* À ajuster selon tes besoins */
}
/* ========================= */
/* VARIABLES GLOBALES — palette de couleurs et styles récurrents */
/* ========================= */
/* VARIABLES DE COULEURS — Palette de couleurs pour le mode clair et sombre */
/* ========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html {
  font-size: 87%; /* Réduction globale ~13% */
  scroll-padding-top: 80px;
}
html,
body {
  overflow-x: hidden;
  /* Désactiver le scroll horizontal */
}
body {
  font-family: 'Poppins', sans-serif;
  /* Sunset Pastel : Rose poudré, Pêche douce et Jaune crème */
  background: linear-gradient(180deg, #FFC0CB 0%, #FFDAB9 35%, #FFCC80 70%, #FFF9E3 100%);  
  background-attachment: fixed;
  z-index: 1;
  transition: background-color 0.3s ease, color 0.3s ease;
}
/* Pour garantir un affichage propre */
main {
  margin: 0 auto;
  padding: 0;
}
/* Ancrage du texte */
a {
  transition: all 0.5s;
  /* transition douce pour les effets de lien (hover) */
}
h2 {
  font-family: 'Shalimar', sans-serif;
  font-size: 3.5rem;
  color: #7b1e89;
  text-align: center;
  margin-bottom: 40px;
}
/* ========================= */
/* CORRECTIONS RESPONSIVES */
/* ========================= */
/* Empêcher l'affichage du scroll horizontal à tout moment */
body,
html {
  overflow-x: hidden;
}
/* Styles généraux pour l'interface principale */
main {
  width: 100%;
  /* Prend toute la largeur de l'écran */
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
#chinois,
#hawaien,
#pierre,
#dos,
#jambes,
#kobido,
#cranien,
#duo,
#reflex,
#bougie,
#enfant {
  scroll-margin-top: 180px;
}
.text-mauve {
  color: #9c66a1;
}
.text-center {
  text-align: center;
}
.flex-center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.transition-smooth {
  transition: all 0.3s ease-in-out;
}
.swiper-pagination-bullet-active {
  background-color: #c0ab4f !important;
}
/* ========================= */
/* ========================= */
/* STYLES POUR LE MODE SOMBRE (dark-mode) */
/* ========================= */
body.dark-mode {
  background-color: #2b2b2b;
  color: #9c66a1;
}
body.dark-mode .container-nav {
  background-color: #2b2b2b;
}
body.dark-mode .container-nav a {
  color: #9c66a1;
}
body.dark-mode .container-nav.scrolled {
  background-color: rgba(192, 171, 79, 0.899);
}
body.dark-mode .container-nav.scrolled a {
  color: #7b1e89;
}
body.dark-mode .container-nav.scrolled a:hover {
  background-color: #7b1e89;
  color: #c0ab4f;
}
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode p,
body.dark-mode strong,
body.dark-mode .quote,
body.dark-mode .quote-mark {
  color: #9c66a1 !important;
}
body.dark-mode .whatsapp-button,
body.dark-mode #scrollToTop {
  background-color: #9c66a1;
}
body.dark-mode .whatsapp-button:hover,
body.dark-mode #scrollToTop:hover {
  background-color: #f7f4e3;
  color: #7b1e89;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
}
body.dark-mode a {
  color: #e5b956;
}
body.dark-mode a:hover {
  color: #eccb82;
}
/* ========================= */
/* STYLES POUR LE SWITCH (Mode Sombre / Mode Clair) */
/* ========================= */
.switch {
  width: 60px;
  height: 35px;
  border-radius: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  /* Pour positionner correctement ::before */
  top: 100px;
  left: 20px;
}
#mode {
  display: none;
}
#sun,
#moon {
  transition: color 0.3s ease-in-out 1s;
  font-size: 15px;
  color: #f7f4e3;
}
#sun {
  margin: 0px 10px 0px 5px;
}
#moon {
  margin: 0px 5px 0px 10px;
}
.switch::before {
  position: absolute;
  content: "";
  padding: 15px;
  background: #c0ab4f;
  border-radius: 50%;
  transition: 0.3s;
  transform: translateX(-12px);
  border: 2px solid #c0ab4f;
}
/* L'animation lorsque le mode sombre est activé */
#mode:checked ~ .switch::before {
  transform: translateX(12px);
  background-color: #2b2b2b;
  border: 2px solid #c0ab4f;
}
/* Gestion de l'icône Soleil et Lune */
#mode:checked ~ .switch #sun,
#mode:checked ~ .switch #moon {
  color: #c0ab4f;
}
.container-nav {
  background-color: #f7f4e3;
  width: 100%;
  position: fixed;
  z-index: 2600;
  overflow: visible;
  transition: background-color 0.3s ease;
}
.container-nav.scrolled {
  background-color: rgba(192, 171, 79, 0.899);
}
.container-nav.scrolled a {
  color: #7b1e89;
}
.container-nav.scrolled a:hover {
  background-color: #7b1e89;
  color: #c0ab4f;
}
.container-nav nav {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80px;
  width: 100%;
  margin: 0 auto;
  overflow: visible;
}
.container-nav nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  font-size: 0;
  overflow: visible;
}
.container-nav nav > ul > li {
  position: relative;
  height: 80px;
  overflow: visible;
}
.container-nav nav > ul > li > a {
  display: block;
  text-align: center;
  padding: 0 10px;
  font-size: 1.1rem;
  font-weight: bold;
  line-height: 80px;
  text-decoration: none;
  color: #7b1e89;
}
.container-nav nav > ul > li > a:hover {
  color: #c0ab4f;
  background-color: #7b1e89;
}
/* ===================================================
   MEGA-MENU MASSAGES — desktop uniquement
   =================================================== */

@media screen and (min-width: 961px) {

  .container-nav nav > ul > li.dropdown {
    position: relative;
    overflow: visible;
    height: 80px;
  }

  /* Panneau déroulant */
  .submenu.mega-menu {
    display: none;
    position: absolute;
    top: 80px;
    left: 50%;
    transform: translateX(-50%);
    flex-direction: column;
    background: linear-gradient(135deg, #ffe4c4 0%, #ffd6e0 50%, #f9c6f0 100%);
    border-top: 3px solid #7b1e89;
    border-radius: 0 0 14px 14px;
    box-shadow: 0 14px 40px rgba(123,30,137,0.15);
    z-index: 9999;
    min-width: 560px;
    width: max-content;
    padding: 26px 0 20px;
    list-style: none;
    margin: 0;
    overflow: visible;
  }

  .container-nav nav > ul > li.dropdown:hover .submenu.mega-menu {
    display: flex;
  }

  /* Un groupe = ligne horizontale catégorie | items */
  .submenu.mega-menu > .mega-group {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    padding: 6px 16px;
    box-sizing: border-box;
    border-bottom: none;
    list-style: none;
    margin: 0;
  }

  .submenu.mega-menu > .mega-group:last-child {
    border-bottom: none;
  }

  /* Catégorie — gauche */
  .mega-group > .mega-cat {
    display: block;
    min-width: 260px;
    max-width: 260px;
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #5a0a6e;
    line-height: 1.5;
    flex-shrink: 0;
    padding-top: 2px;
  }

  /* Items — droite */
  .mega-group > .mega-items {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
  }

  .mega-group > .mega-items > li {
    display: block;
    list-style: none;
  }

  .mega-group > .mega-items > li > a {
    display: block;
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 400;
    color: #3a0050;
    line-height: 2.2;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.15s ease, padding-left 0.15s ease;
  }

  .mega-group > .mega-items > li > a:hover {
    color: #7b1e89;
    padding-left: 8px;
  }
}

/* ===================================================
   MEGA-MENU MASSAGES — mobile (accordéon)
   =================================================== */

@media screen and (max-width: 960px) {

  .submenu.mega-menu {
    display: none;
    position: static;
    transform: none;
    flex-direction: column;
    width: 100%;
    background: linear-gradient(135deg, #ffe4c4 0%, #ffd6e0 50%, #f9c6f0 100%);
    border-top: none;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
    min-width: unset;
    margin: 0;
    list-style: none;
    z-index: auto;
  }

  .container-nav nav ul li.dropdown.open .submenu.mega-menu {
    display: flex;
  }

  /* Groupes empilés */
  .submenu.mega-menu > .mega-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid rgba(123,30,137,0.15);
    list-style: none;
    margin: 0;
    box-sizing: border-box;
  }

  .submenu.mega-menu > .mega-group:last-child {
    border-bottom: none;
  }

  /* Catégorie : titre */
  .mega-group > .mega-cat {
    display: block;
    width: 100%;
    min-width: unset;
    max-width: unset;
    padding: 11px 24px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: #5a0a6e;
    background: rgba(123,30,137,0.1);
    box-sizing: border-box;
  }

  /* Items */
  .mega-group > .mega-items {
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 4px 0 8px;
    margin: 0;
    width: 100%;
    box-sizing: border-box;
  }

  .mega-group > .mega-items > li {
    display: block;
    width: 100%;
    list-style: none;
  }

  .mega-group > .mega-items > li > a {
    display: block;
    width: 100%;
    padding: 8px 36px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 400;
    color: #3a0050;
    line-height: 1.5;
    text-decoration: none;
    white-space: normal;
    box-sizing: border-box;
  }

  .mega-group > .mega-items > li > a:hover {
    color: #7b1e89;
    padding-left: 42px;
  }
}


.burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 30px;
  height: 30px;
  cursor: pointer;
  position: absolute;
  top: 25px;
  right: 25px;
  z-index: 1001;
}
.burger .line {
  height: 3px;
  width: 100%;
  background-color: #c0ab4f;
  display: block;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.burger.open .line:nth-child(1) {
  transform: rotate(45deg);
  position: absolute;
}
.burger.open .line:nth-child(2) {
  opacity: 0;
}
.burger.open .line:nth-child(3) {
  transform: rotate(-45deg);
  position: absolute;
}
header {
  width: 100%;
  max-width: 100%;
  height: 100vh;
  background: url(../assets/header.webp) no-repeat center / cover;
}
header .head-top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
header .head-top img {
  width: 25%;
  height: auto;
  margin: 200px auto 0;
}
header .head-top h1 {
  color: #c0ab4f;
  font-family: 'Poppins', sans-serif;
  font-size: 3em;
  font-weight: 500;
  margin: 0 10px 50px;
  text-align: center;
}
.degrade {
  height: 200px;
  width: 100%;
  background: linear-gradient(0deg, #f7f4e3 89%, rgba(247, 244, 227, 0) 100%);
  margin: -30px 0 20px;
}
#scrollToTop {
  position: fixed;
  bottom: 50px;
  right: 50px;
  width: 40px;
  height: 40px;
  font-size: 24px;
  background-color: #7b1e89;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
#scrollToTop .arrow {
  color: #f7f4e3;
  font-size: 25px;
}
#scrollToTop:hover {
  background-color: #c0ab4f;
  transform: scale(1.2);
}
#scrollToTop:hover .arrow {
  color: #a127b3;
}
#scrollToTop.visible {
  opacity: 1;
  visibility: visible;
}
.presentation {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 10px auto 0;
  padding-top: 60px;
}
.presentation h2 {
  margin: 60px auto;
  padding: 0 20px;
}
.presentation p {
  font-size: 1.7rem;
  color: #7b1e89;
  text-align: center;
  white-space: pre-line;
  font-family: 'Poppins', sans-serif;
  letter-spacing : 0.5px;
}
.presentation p .quote-mark {
  font-size: 32px;
  font-weight: 300;
  line-height : 1.8;
  color: #7b1e89;
}

/* Accroche principale section présentation */
.presentation .presentation-accroche {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.3rem, 3.5vw, 2rem);
  color: orange !important;
  text-align: center;
  line-height: 1.5;
  font-weight: 700;
  white-space: normal !important;
  letter-spacing: 0.3px;
  margin: 0 auto 32px;
  padding: 0 16px;
  max-width: 820px;
}
.presentation img {
  width: 50%;
  /* Prend toute la largeur disponible */
  max-width: 400px;
  /* Limite la taille de l'image */
  margin: 0 auto -200px;
  /* Centrer l'image horizontalement */
  display: flex;
  /* Utilise flexbox pour s'assurer que l'image est centrée */
  justify-content: center;
  /* Centrer l'image horizontalement */
  align-items: center;
  /* Centrer l'image verticalement si nécessaire */
  border-radius: 10px;
  /* Ajoute des bords arrondis à l'image */
}
.formations {
  width: 80%;
  margin: 100px auto;
  text-align: center;
}
.formations .formations-header {
  font-size: 24px;
  font-weight: normal;
  color: #7b1e89;
  margin-bottom: 20px;
  white-space: pre-line;
}
.formations .formations-massages,
.formations .formations-soins {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.formations .formations-massages .formation-item,
.formations .formations-soins .formation-item {
  width: 45%;
  padding: 15px;
  text-align: center;
}
.formations .formations-massages .formation-item h4,
.formations .formations-soins .formation-item h4 {
  font-size: 24px;
  color: #7b1e89;
  margin-bottom: 5px;
}
.formations .formations-massages .formation-item p,
.formations .formations-soins .formation-item p {
  font-size: 18px;
  color: #7b1e89;
}
.animate-on-scroll {
  opacity: 0;
  transform: scale(0.9);
  /* Commence un peu plus petit */
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.animate-on-scroll.is-visible {
  opacity: 1;
  transform: scale(1);
  /* Pulse en grandissant */
}
#massage {
  padding-top: 100px;
  margin: 0 auto;
}
.prestation {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.prestation .blocContain {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 90%;
  margin: 10px auto 0;
  padding-top: 20px;
}
.prestation .blocContain .left,
.prestation .blocContain .right,
.coaching .blocContain .left,
.coaching .blocContain .right,
.habitat .blocContain .left,
.habitat .blocContain .right {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  top: 100px;
  gap: 200px;
}
.prestation .blocContain .left .blocPhoto,
.prestation .blocContain .right .blocPhoto,
.coaching .blocContain .left .blocPhoto,
.coaching .blocContain .right .blocPhoto,
.habitat .blocContain .left .blocPhoto,
.habitat .blocContain .right .blocPhoto {
  position: relative;
  width: 600px;
  height: 350px;
  margin-bottom: 200px;
}
.prestation .blocContain .left .blocPhoto .photo,
.prestation .blocContain .right .blocPhoto .photo,
.coaching .blocContain .left .blocPhoto .photo,
.coaching .blocContain .right .blocPhoto .photo,
.habitat .blocContain .left .blocPhoto .photo,
.habitat .blocContain .right .blocPhoto .photo {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 2;
}
.prestation .blocContain .left .blocPhoto .photo::before,
.prestation .blocContain .right .blocPhoto .photo::before,
.coaching .blocContain .left .blocPhoto .photo::before,
.coaching .blocContain .right .blocPhoto .photo::before,
.habitat .blocContain .left .blocPhoto .photo::before,
.habitat .blocContain .right .blocPhoto .photo::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: 15px;
  box-shadow: inset 0 0 40px rgba(123, 30, 137, 0.2);
  pointer-events: none;
}
.prestation .blocContain .left .blocPhoto .photo img,
.prestation .blocContain .right .blocPhoto .photo img,
.coaching .blocContain .left .blocPhoto .photo img,
.coaching .blocContain .right .blocPhoto .photo img,
.habitat .blocContain .left .blocPhoto .photo img,
.habitat .blocContain .right .blocPhoto .photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.prestation .blocContain .left .blocPhoto .cadre,
.prestation .blocContain .right .blocPhoto .cadre,
.coaching .blocContain .left .blocPhoto .cadre,
.coaching .blocContain .right .blocPhoto .cadre,
.habitat .blocContain .left .blocPhoto .cadre,
.habitat .blocContain .right .blocPhoto .cadre {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 100%;
  height: 100%;
  background: url(../assets/fondimg.webp) no-repeat center / cover;
  opacity: 0.5;
  border-radius: 10px;
  z-index: 1;
  box-shadow: inset 5px 5px 10px rgba(255, 255, 255, 0.85), inset -5px -5px 10px rgba(0, 0, 0, 0.85), 5px 5px 15px rgba(0, 0, 0, 0.7);
}
.prestation .blocContain .left .info-container,
.prestation .blocContain .right .info-container,
.coaching .blocContain .left .info-container,
.coaching .blocContain .right .info-container,
.habitat .blocContain .left .info-container,
.habitat .blocContain .right .info-container {
  width: 50%;
  text-align: center;
  color: #7b1e89;
  white-space: collapse;
  padding-bottom: 150px;
}
.prestation .blocContain .left .info-container h3,
.prestation .blocContain .right .info-container h3,
.coaching .blocContain .left .info-container h3,
.coaching .blocContain .right .info-container h3,
.habitat .blocContain .left .info-container h3,
.habitat .blocContain .right .info-container h3 {
  font-size: 2.7rem;
  font-weight: bold;
  white-space: pre-line;
  color: #7b1e89;
}
.prestation .blocContain .left .info-container p,
.prestation .blocContain .right .info-container p,
.coaching .blocContain .left .info-container p,
.coaching .blocContain .right .info-container p,
.habitat .blocContain .left .info-container p,
.habitat .blocContain .right .info-container p {
  font-size: 1.2rem;
}
.prestation .blocContain .left .cadre,
.coaching .blocContain .left .cadre,
.habitat .blocContain .left .cadre {
  left: 25px;
}
.prestation .blocContain .right,
.coaching .blocContain .right,
.habitat .blocContain .right {
  flex-direction: row-reverse;
}
.prestation .blocContain .right .cadre,
.coaching .blocContain .right .cadre,
.habitat .blocContain .right .cadre {
  right: 0;
}
.formations-soins {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 50px 20px;
  color: #7b1e89;
  padding: 0 80px;
}
.formations-soins h3 {
  font-size: 28px;
}
.formations-soins .swiper {
  width: 100%;
  max-width: 500px;
  height: 300px;
  margin: 15px auto 70px;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.formations-soins .swiper .swiper-slide {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #000;
}
.formations-soins .swiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.formations-soins .formation-item {
  display: flex;
  justify-content: center;
  text-align: center;
  align-items: center;
  margin: 20px auto;
  flex-direction: column;
  width: 50%;
  font-size: 18px;
  font-family: 'Poppins', sans-serif;
}
.formations-soins .formation-item h4 {
  font-size: 22px;
  color: #7b1e89;
}
.soins-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: 0 auto;
}
.soin-pair {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  margin: 0 auto 20px;
}
.soin-item {
  width: 48%;
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  color: #7b1e89;
}
.soin-item h3 {
  font-size: 24px;
  font-weight: bold;
  white-space: pre-line;
  margin-top: 150px;
}
.whatsapp-button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 350px;
  margin: 50px auto 100px;
  background-color: #7b1e89;
  color: #f7f4e3;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
}
.whatsapp-button img {
  width: 24px;
  height: 24px;
}
.whatsapp-button:hover {
  background-color: #f7f4e3;
  color: #7b1e89;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
}
.ateliers-section {
  padding: 4rem 2rem;
  text-align: center;
}
.ateliers-section .container {
  max-width: 900px;
  margin: 0 auto;
}
.ateliers-section h2 {
  margin: 0 auto;
}
.ateliers-section img {
  width: 200px;
  margin: 20px auto 0;
}
.ateliers-section .intro,
.ateliers-section .description,
.ateliers-section .cta {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  color: #7b1e89;
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.ateliers-section .atelier-list {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
.ateliers-section .atelier-list li {
  font-size: 1.1rem;
  color: #7b1e89;
  margin: 0.4rem 0;
}
.ateliers-section .cta a {
  color: #c0ab4f;
  font-weight: bold;
  text-decoration: none;
  transition: color 0.3s ease;
}
.ateliers-section .cta a:hover {
  color: #a28f3a;
  text-decoration: underline;
}
.whatsapp-float {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 350px;
  margin: 50px auto 100px;
  background-color: #7b1e89;
  color: #f7f4e3;
  padding: 12px 18px;
  border-radius: 30px;
  font-size: 16px;
  font-weight: bold;
  text-decoration: none;
  box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease-in-out;
  position: fixed;
  bottom: 20px;
  right: 20px;
}
.whatsapp-float img {
  width: 24px;
  height: 24px;
}
.whatsapp-float:hover {
  background-color: #f7f4e3;
  color: #7b1e89;
  box-shadow: 5px 5px 12px rgba(0, 0, 0, 0.3);
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: #fff9f9;
  color: #333;
  padding: 20px;
  box-shadow: 0 -4px 10px rgba(0, 0, 0, 0.15);
  font-size: 14px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.cookie-banner .cookie-buttons {
  margin-top: 10px;
}
.cookie-banner .cookie-buttons button {
  margin: 0 5px;
  padding: 8px 14px;
  background-color: #9b59b6;
  color: white;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
.cookie-banner .cookie-buttons button:hover {
  opacity: 0.9;
}
.cookie-banner.hidden {
  display: none;
}
.whatsapp-button.disabled {
  pointer-events: none;
  opacity: 0.5;
  cursor: not-allowed;
}
.footer {
  background-color: #CFA0E9;
  color: #7b1e89;
  padding: 40px 20px 20px;
  font-size: 14px;
}
.footer a {
  color: #7b1e89;
  text-decoration: underline;
}
.footer a:hover {
  text-decoration: none;
  opacity: 0.8;
}
.footer .footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: flex-start;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer .footer-logo img {
  max-width: 250px;
  margin-bottom: 15px;
}
.footer .footer-contact,
.footer .footer-links,
.footer .footer-credits {
  max-width: 250px;
}
.footer .footer-contact h4,
.footer .footer-links h4,
.footer .footer-credits h4 {
  font-weight: 600;
  margin-bottom: 10px;
}
.footer .footer-contact p,
.footer .footer-links p,
.footer .footer-credits p,
.footer .footer-contact li,
.footer .footer-links li,
.footer .footer-credits li {
  margin: 5px 0;
}
.footer .footer-contact ul,
.footer .footer-links ul,
.footer .footer-credits ul {
  padding-left: 0;
  list-style: none;
}
.footer .footer-bottom {
  text-align: center;
  margin-top: 15px;
  font-size: 12px;
  opacity: 0.9;
}
.btn-retour {
  position: fixed;
  left: 20px;
  display: inline-block;
  margin: 2rem 0;
  padding: 0.8rem 1.6rem;
  background-color: #7b1e89;
  color: #c0ab4f;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  transition: background-color 0.3s, opacity 0.4s ease;
}
.btn-retour:hover {
  background-color: #c0ab4f;
  color: #7b1e89;
}
.hidden-retour {
  opacity: 0;
  pointer-events: none;
}
.contain-rgpdcgv {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 70%;
}
.contain-rgpdcgv .rgpd-cgv {
  margin-top: 250px;
  display: flex;
  flex-direction: column;
  margin-bottom: 50px;
}
.contain-rgpdcgv .rgpd-cgv h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto 50px;
}
.contain-rgpdcgv .rgpd-cgv h4 {
  margin: 5px auto;
}
@media (max-width: 1440px) {
  header img {
    width: 70%;
  }
  .blocContain {
    width: 100% !important;
    justify-content: space-between;
  }
  .blocContain .blocPhoto {
    width: 350px !important;
    height: 250px !important;
  }
  .blocContain .left,
  .blocContain .right {
    gap: 70px !important;
  }
  .blocContain .left h3,
  .blocContain .right h3 {
    font-size: 1.5rem !important;
  }
  .blocContain .left p,
  .blocContain .right p {
    width: 100%;
    font-size: 1rem !important;
  }
  .soin-item {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .soin-item h3 {
    margin-top: 50px;
  }
  .whatsapp-button {
    margin-top: 50px;
  }
}
@media (max-width: 1240px) {
  .head-top {
    position: relative;
    bottom: 60px !important;
  }
  .head-top img {
    width: 30% !important;
  }
  .head-top h1 {
    font-size: 1.6em;
  }
  .presentation h2 {
    font-size: 2.8rem;
  }
  .formations-massages {
    margin-bottom: 0 !important;
    height: auto;
  }
  .formations-soins {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
  }
  .formations-item {
    margin: 0 100px !important;
  }
  .formations-item p {
    margin-bottom: 50px;
  }
  #massage {
    padding-top: 0 !important;
  }
  .soins-container {
    width: 100%;
  }
  .soins-container .formations-soins {
    margin: 0 !important;
    width: 100% !important;
  }
  .soins-container .formations-soins .formation-item h3,
  .soins-container .formations-soins .formation-item h4 {
    width: 90vw !important;
    white-space: collapse;
    padding: 0 20px;
  }
  .soins-container .formations-soins .formation-item p {
    width: 90vw !important;
    margin: 0 10px 50px !important;
    padding: 0 20px;
  }
}
@media (max-width: 960px) {
  h2 {
    font-size: 3rem;
  }
  .head-top {
    position: relative;
    bottom: 60px !important;
  }
  .head-top img {
    width: 40% !important;
  }
  .head-top h1 {
    font-size: 1.5em !important;
  }
  .presentation {
    position: static;
    margin-top: 0;
    padding-top: 100px;
  }
  .presentation h2 {
    margin: 10px 10px 16px !important;
    font-size: 4rem;
  }
  .presentation p {
    margin: 0 10px !important;
    font-size: 1.1em !important;
  }
  .presentation .quote {
    padding: 0 20px;
    font-size: 1.05em;
  }
  .presentation .quote .quote-mark {
    font-size: 0.8em;
  }
  .presentation img {
    width: 40%;
  }
  .massages {
    position: static;
  }
  .formations-massages {
    flex-direction: column !important;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin: 0 auto;
    padding: 0 auto;
  }
  .formations-massages .formations-header {
    position: relative;
    top: 0;
    white-space: collapse !important;
    font-size: 1.2em;
  }
  .formations-massages .formation-item {
    width: 80% !important;
    padding: 0 auto !important;
    position: relative;
    top: 0;
  }
  .blocContain {
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
    width: 100%;
  }
  .blocContain .left,
  .blocContain .right {
    flex-direction: column !important;
    align-items: center !;
    gap: 0px !important;
    width: 100%;
  }
  .blocContain .left .blocPhoto,
  .blocContain .right .blocPhoto {
    width: 100% !important;
    max-width: 400px;
    height: auto;
    margin-bottom: 10px !important;
  }
  .blocContain .left .blocPhoto .cadre,
  .blocContain .right .blocPhoto .cadre {
    position: absolute;
    top: 10px !important;
    left: 10px !important;
    margin-right: 20px !important;
  }
  .blocContain .left .blocPhoto .photo,
  .blocContain .right .blocPhoto .photo {
    width: 100%;
    height: auto;
  }
  .blocContain .left .blocPhoto .photo img,
  .blocContain .right .blocPhoto .photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .blocContain .left .info-container,
  .blocContain .right .info-container {
    width: 100% !important;
    text-align: center !important;
    top: 18px !important;
    padding: 0 30px 50px !important;
  }
  .blocContain .left .info-container h3,
  .blocContain .right .info-container h3 {
    font-size: 1.5rem;
  }
  .blocContain .left .info-container p,
  .blocContain .right .info-container p {
    font-size: 1rem !important;
    white-space: normal !important;
  }
  .soin-item {
    width: 90%;
    margin: 0 auto;
    padding: 0 20px;
  }
  .soin-item h3 {
    margin-top: 50px;
  }
  .whatsapp-button {
    margin-top: 80px !important;
  }
}
.ateliers-section .container h2 {
  font-size: 3rem !important;
  line-height: 1;
}
@media (max-width: 549px) {
  .head-top img {
    width: 70% !important;
  }
  .head-top h1 {
    font-size: 1.4em !important;
    font-weight: 500;
  }
  .blocContain {
    flex-direction: column;
    align-items: center;
    justify-content: center !important;
    width: 100%;
  }
  .blocContain .left,
  .blocContain .right {
    flex-direction: column;
    align-items: center;
    gap: 0px !important;
    width: 100%;
  }
  .blocContain .left .blocPhoto,
  .blocContain .right .blocPhoto {
    width: 90%;
    max-width: 300px;
    height: auto;
    margin-bottom: 10px !important;
  }
  .blocContain .left .blocPhoto .cadre,
  .blocContain .right .blocPhoto .cadre {
    position: absolute;
    top: 10px !important;
    left: 10px !important;
    margin-right: 20px !important;
  }
  .blocContain .left .blocPhoto .photo,
  .blocContain .right .blocPhoto .photo {
    width: 100%;
    height: auto;
  }
  .blocContain .left .blocPhoto .photo img,
  .blocContain .right .blocPhoto .photo img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
  }
  .blocContain .left .info-container,
  .blocContain .right .info-container {
    width: 90%;
    text-align: center !important;
    top: 18px !important;
  }
  .blocContain .left .info-container h3,
  .blocContain .right .info-container h3 {
    font-size: 1.5rem;
  }
  .blocContain .left .info-container p,
  .blocContain .right .info-container p {
    font-size: 0.95rem !important;
  }
  .soins-container #soin {
    line-height: 0.8;
  }
  .soins-container .swiper {
    width: 100%;
    height: 100px !important;
    margin: 15px auto 100px;
    transition: transform 0.6s ease, opacity 0.6s ease;
    position: relative;
  }
  .soins-container .formations-soins h3 {
    line-height: 1;
    margin-bottom: 20px;
  }
  .soins-container .soin-item {
    width: 100%;
    padding: 0 20px;
  }
  .soins-container .soin-item h3 {
    margin-top: 50px;
  }
  .ateliers-section .container h2 {
    font-size: 2.8rem !important;
    line-height: 1;
  }
}

.footer-note {
    margin-top: 40px;
    font-style: italic;
    color: #888;
    font-size: 1rem;
}

/* ============================================================
   STYLES POUR LA SECTION CARTE CADEAU V2 (AVEC SPÉCIMEN ET STYLE)
   ============================================================ */

/* Reset de base pour cette section */
.gift-card-section-v2 * {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.gift-card-section-v2 {
    padding: 80px 20px;
    background: initial;
    font-family: 'Poppins', sans-serif; /* Police de base propre */
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
}

.card-container {
    max-width: 600px; /* Largeur maximale contenue */
    width: 100%;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.06);
    text-align: center;
    border: 1px solid #f0f0f0;
}

/* En-tête */
.card-header {
    margin-bottom: 40px;
}

.brand-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #bfa57d; /* Couleur dorée */
    font-weight: 300;
}

.card-main-title {
    font-family: 'Playfair Display', serif; /* Police élégante */
    font-size: 3rem;
    color: #222;
    margin-top: 10px;
}

/* Zone Visuelle de la carte (Plus petite et barrée) */
.card-visual-wrapper {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.image-overlay-container {
    position: relative;
    display: inline-block;
    max-width: 70%; /* Réduit la taille visuelle de la carte */
    border: 3px solid #f8f1e5; /* Bordure dorée très fine */
    border-radius: 8px;
    padding: 8px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.05);
}

.card-image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 4px;
}

/* Filigrane SPÉCIMEN */
.specimen-watermark {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.4); /* Voile blanc léger */
    border-radius: 4px;
    pointer-events: none; /* L'utilisateur ne peut pas cliquer dessus */
}

.specimen-watermark span {
    font-family: 'Poppins', sans-serif;
    font-weight: 800;
    font-size: 2.5rem;
    color: rgba(220, 53, 69, 0.6); /* Rouge Specimen semi-transparent */
    text-transform: uppercase;
    letter-spacing: 5px;
    transform: rotate(-25deg); /* Rotation diagonale */
    white-space: nowrap;
    border: 5px solid rgba(220, 53, 69, 0.6);
    padding: 10px 20px;
}

/* Zone détails */
.card-details-area {
    margin-bottom: 40px;
}

.brand-title-small {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: #444;
    font-weight: 700;
}

.card-tagline {
    font-size: 1rem;
    color: #777;
    margin-top: 5px;
    font-weight: 300;
}

/* Bloc d'instruction de paiement */
.payment-instruction-block {
    margin-bottom: 25px;
    color: #555;
    font-size: 1rem;
}

.payment-arrow {
    font-size: 1.5rem;
    color: #bfa57d;
    margin-top: 15px;
    display: block;
}

/* Bloc QR Code */
.payment-wrapper {
    background-color: #fafafa;
    padding: 30px;
    border-radius: 15px;
    border: 1px solid #eee;
    display: inline-block;
}

.qr-code-holder {
    padding: 15px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    display: inline-block;
}

.qr-code-holder img {
    max-width: 150px;
    height: auto;
    display: block;
}

.final-instruction {
    margin-top: 20px;
    font-size: 0.9rem;
    color: #bfa57d; /* Couleur dorée */
    font-weight: 600;
    max-width: 300px;
    margin-left: auto;
    margin-right: auto;
}

/* Footer */
.card-footer {
    margin-top: 50px;
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #999;
    font-size: 0.95rem;
    position: relative;
}

.card-footer::before {
    content: '';
    position: absolute;
    top: -25px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background-color: #ddd;
}

/* ============================================================
   MEDIA QUERIES - ADAPTABILITÉ MOBILE POUR GIFT CARD
   ============================================================ */
@media (max-width: 768px) {
    .gift-card-section-v2 {
        padding: 40px 15px;
    }

    .card-container {
        padding: 30px;
        border-radius: 15px;
    }

    .card-main-title {
        font-size: 2.2rem;
    }

    .image-overlay-container {
        max-width: 90%; /* Prend plus de place sur mobile */
    }

    .specimen-watermark span {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .brand-title-small {
        font-size: 1.5rem;
    }
}

/* Style du bouton de validation */
.submit-card-btn {
    width: 100%;
    padding: 12px;
    background-color: #d4af37; /* Une couleur dorée élégante */
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    transition: background 0.3s ease;
    margin-top: 10px;
}

.submit-card-btn:hover {
    background-color: #b8962d;
}

/* On s'assure que le formulaire est bien espacé */
.card-form-wrapper {
    margin-bottom: 20px;
}

/* ===================================================
   MENU BURGER MOBILE — version finale
   =================================================== */
@media screen and (max-width: 960px) {

  header {
    height: 50vh;
  }

  /* Burger : toujours visible sur mobile */
  .burger {
    display: flex !important;
    position: fixed !important;
    top: 22px !important;
    right: 20px !important;
    z-index: 3000 !important;
    width: 32px !important;
    height: 32px !important;
    flex-direction: column !important;
    justify-content: center !important;
    gap: 6px !important;
    cursor: pointer !important;
    background: none !important;
  }

  .burger .line {
    background-color: #7b1e89 !important;
    height: 3px !important;
    width: 100% !important;
    display: block !important;
    border-radius: 2px !important;
    transition: all 0.3s ease !important;
  }

  /* NAV : cachée par défaut, glisse depuis la gauche */
  .container-nav nav {
    display: flex !important;
    position: fixed !important;
    top: 0 !important;
    left: -100vw !important;
    width: 80vw !important;
    max-width: 320px !important;
    height: 100vh !important;
    background-color: #f7f4e3 !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    padding-top: 80px !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    z-index: 2500 !important;
    box-shadow: 4px 0 24px rgba(0,0,0,0.2) !important;
    transition: left 0.3s ease-in-out !important;
    height: 80px !important; /* reset desktop height */
    height: 100vh !important;
  }

  /* Ouverte */
  .container-nav nav.open {
    left: 0 !important;
  }

  /* UL principal en colonne */
  .container-nav nav > ul {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    width: 100% !important;
    height: auto !important;
    padding: 0 !important;
    margin: 0 !important;
    list-style: none !important;
    font-size: 1rem !important;
  }

  /* Li principaux */
  .container-nav nav > ul > li {
    width: 100% !important;
    height: auto !important;
    position: static !important;
    overflow: visible !important;
  }

  /* Liens principaux */
  .container-nav nav > ul > li > a {
    display: block !important;
    padding: 14px 24px !important;
    font-size: 1rem !important;
    font-weight: 700 !important;
    line-height: normal !important;
    color: #7b1e89 !important;
    border-bottom: 1px solid rgba(123,30,137,0.1) !important;
    background: none !important;
  }

  .container-nav nav > ul > li > a:hover {
    background-color: rgba(123,30,137,0.08) !important;
    color: #7b1e89 !important;
  }

  /* Mega-menu : caché par défaut, s'ouvre en accordéon */
  .container-nav nav ul li.dropdown .submenu.mega-menu {
    display: none !important;
    position: static !important;
    transform: none !important;
    flex-direction: column !important;
    min-width: unset !important;
    width: 100% !important;
    background: linear-gradient(135deg, #ffe4c4 0%, #ffd6e0 50%, #f9c6f0 100%) !important;
    border-top: none !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    padding: 0 !important;
  }

  .container-nav nav ul li.dropdown.open .submenu.mega-menu {
    display: flex !important;
  }

  /* Groupes en colonne */
  .mega-group {
    flex-direction: column !important;
    padding: 0 !important;
    border-bottom: 1px solid rgba(123,30,137,0.15) !important;
    height: auto !important;
    position: static !important;
  }

  /* Catégorie : titre de section */
  .mega-cat {
    display: block !important;
    min-width: unset !important;
    max-width: unset !important;
    width: 100% !important;
    padding: 10px 28px !important;
    font-size: 0.82rem !important;
    font-weight: 700 !important;
    color: #5a0a6e !important;
    background: rgba(123,30,137,0.12) !important;
    line-height: 1.4 !important;
  }

  /* Items */
  .mega-items {
    display: flex !important;
    flex-direction: column !important;
    padding: 6px 0 !important;
    width: 100% !important;
  }

  .mega-items li {
    display: block !important;
    height: auto !important;
    width: 100% !important;
    position: static !important;
  }

  .mega-items li a {
    display: block !important;
    padding: 7px 40px !important;
    font-size: 0.88rem !important;
    font-weight: 400 !important;
    color: #3a0050 !important;
    line-height: 1.5 !important;
    text-decoration: none !important;
    background: none !important;
    white-space: normal !important;
  }

  .mega-items li a:hover {
    color: #7b1e89 !important;
    padding-left: 46px !important;
    background: none !important;
  }

  /* Overlay sombre */
  .nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 2499;
  }

  .nav-overlay.active {
    display: block;
  }
}


/* ========================= */
/* NOUVEAU FORMULAIRE PRISE DE RDV */
/* ========================= */
#rendez-vous {
  padding: 40px 20px 80px;
}

.rdv-wrapper {
  max-width: 560px;
  margin: 0 auto;
}

.rdv-form-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 20px 60px rgba(123, 30, 137, 0.1), 0 4px 16px rgba(0, 0, 0, 0.06);
  border: 1px solid rgba(192, 171, 79, 0.2);
  margin-bottom: 20px;
}

.rdv-form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.rdv-group {
  margin-bottom: 16px;
}

.rdv-group label {
  display: block;
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #7b1e89;
  margin-bottom: 6px;
}

.rdv-required {
  color: #c0ab4f;
}

.rdv-optional {
  font-weight: 400;
  text-transform: none;
  letter-spacing: 0;
  color: #b0909b;
  font-size: 10px;
}

.rdv-group input,
.rdv-group select,
.rdv-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid rgba(123, 30, 137, 0.2);
  border-radius: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 13px;
  color: #3a1040;
  background: rgba(255, 255, 255, 0.8);
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  -webkit-appearance: none;
  appearance: none;
}

.rdv-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237b1e89' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}

.rdv-group input:focus,
.rdv-group select:focus,
.rdv-group textarea:focus {
  border-color: #7b1e89;
  box-shadow: 0 0 0 3px rgba(123, 30, 137, 0.1);
}

.rdv-group textarea {
  resize: vertical;
  min-height: 80px;
  line-height: 1.5;
}

.rdv-submit-btn {
  width: 100%;
  padding: 14px;
  background: linear-gradient(135deg, #7b1e89, #9c66a1);
  color: #f7f4e3;
  border: none;
  border-radius: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  margin-top: 4px;
  transition: transform 0.2s, box-shadow 0.2s;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.rdv-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(123, 30, 137, 0.3);
}

.rdv-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  color: #b0909b;
  margin-top: 14px;
  text-align: center;
}

.rdv-confirm {
  background: rgba(255, 255, 255, 0.85);
  border-radius: 20px;
  padding: 48px 32px;
  text-align: center;
  border: 2px solid rgba(192, 171, 79, 0.3);
  box-shadow: 0 20px 60px rgba(123, 30, 137, 0.1);
  margin-bottom: 20px;
}

.rdv-confirm-icon {
  font-size: 2.5rem;
  color: #c0ab4f;
  margin-bottom: 16px;
}

.rdv-confirm h3 {
  font-size: 1.5rem;
  color: #7b1e89;
  margin-bottom: 12px;
  font-family: 'Shalimar', sans-serif;
  font-size: 3rem;
  line-height: 1;
}

.rdv-confirm p {
  color: #7b1e89;
  font-size: 1rem;
  line-height: 1.6;
}

.rdv-confirm-sub {
  color: #9c66a1 !important;
  font-size: 0.9rem !important;
  margin-top: 10px;
}

.rdv-whatsapp-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  padding: 10px 20px;
  background: #25D366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.rdv-whatsapp-link:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

.rdv-alt-contact {
  text-align: center;
  padding: 20px;
  font-size: 13px;
  color: #9c66a1;
}

.rdv-alt-contact p {
  margin-bottom: 12px;
  color: #9c66a1;
}

.rdv-whatsapp-direct {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 22px;
  background: #25D366;
  color: white;
  border-radius: 30px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
}

.rdv-whatsapp-direct:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.35);
}

@media (max-width: 549px) {
  .rdv-form-row {
    grid-template-columns: 1fr;
  }
  .rdv-form-card {
    padding: 24px 18px;
  }
}

/* Dark mode for RDV form */
body.dark-mode .rdv-form-card,
body.dark-mode .rdv-confirm {
  background: rgba(43, 43, 43, 0.95);
  border-color: rgba(192, 171, 79, 0.3);
}

body.dark-mode .rdv-group input,
body.dark-mode .rdv-group select,
body.dark-mode .rdv-group textarea {
  background: rgba(60, 60, 60, 0.8);
  color: #9c66a1;
  border-color: rgba(156, 102, 161, 0.3);
}

body.dark-mode .rdv-group label {
  color: #9c66a1;
}

/* ========================= */
/* AGENDA / PRISE DE RDV CALENDLY */
/* ========================= */
.agenda-outer-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.agenda-step-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #7b1e89;
    margin-bottom: 16px;
}

.agenda-step-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: #7b1e89;
    color: #f7f4e3;
    font-size: 13px;
    font-weight: 700;
    flex-shrink: 0;
}

.agenda-service-selector {
    margin-bottom: 30px;
}

.agenda-service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 10px;
}

.agenda-svc-btn {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.8);
    border: 1.5px solid rgba(123, 30, 137, 0.15);
    border-radius: 12px;
    cursor: pointer;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #7b1e89;
    text-align: left;
    transition: all 0.2s;
    line-height: 1.3;
}

.agenda-svc-btn span {
    font-size: 11px;
    font-weight: 400;
    color: #9c66a1;
    margin-top: 4px;
}

.agenda-svc-btn:hover {
    background: rgba(123, 30, 137, 0.06);
    border-color: rgba(123, 30, 137, 0.35);
    transform: translateY(-1px);
}

.agenda-svc-btn.active {
    background: #7b1e89;
    border-color: #7b1e89;
    color: #f7f4e3;
}

.agenda-svc-btn.active span {
    color: rgba(247, 244, 227, 0.75);
}

.agenda-calendly-wrapper {
    margin-bottom: 24px;
}

.calendly-inline-widget {
    border-radius: 16px;
    overflow: hidden;
    border: 1.5px solid rgba(123, 30, 137, 0.15);
    background: white;
}

.agenda-alt-contact {
    text-align: center;
    padding: 20px;
    font-size: 13px;
    color: #9c66a1;
}

.agenda-alt-contact p {
    margin-bottom: 12px;
    color: #9c66a1;
}

body.dark-mode .agenda-svc-btn {
    background: rgba(43, 43, 43, 0.8);
    border-color: rgba(156, 102, 161, 0.25);
    color: #9c66a1;
}

body.dark-mode .agenda-svc-btn.active {
    background: #7b1e89;
    color: #f7f4e3;
}

body.dark-mode .calendly-inline-widget {
    border-color: rgba(156, 102, 161, 0.25);
}

@media (max-width: 549px) {
    .agenda-service-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .agenda-svc-btn {
        font-size: 12px;
        padding: 10px 10px;
    }
    .calendly-inline-widget {
        min-height: 580px !important;
    }
}

/* ===================================================
   IMAGES DÉCORATIVES — intégration harmonieuse
   =================================================== */

/* ── Attrape-rêve : flottant à droite section présentation ── */
.deco-float {
  position: absolute;
  opacity: 0.18;
  pointer-events: none;
  border-radius: 20px;
}

.deco-float--right {
  right: -60px;
  top: 60px;
  width: 280px;
  transform: rotate(8deg);
  mix-blend-mode: multiply;
}

.presentation {
  position: relative;
  overflow: visible;
}

/* ── Section massages : 5 éléments en arrière-plan du titre ── */
.deco-elements-wrapper {
  display: flex;
  justify-content: center;
  margin: 10px auto 40px;
}

.deco-elements {
  width: 220px;
  height: 220px;
  object-fit: cover;
  border-radius: 50%;
  opacity: 0.85;
  box-shadow: 0 8px 32px rgba(123,30,137,0.15);
  border: 3px solid rgba(192,171,79,0.4);
  pointer-events: none;
}

@media (max-width: 960px) {
  .deco-elements {
    width: 160px;
    height: 160px;
  }
}

/* ── Massage chinois : yin-yang + dragon côte à côte ── */
.deco-chinois {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 16px 0;
}

.deco-symbol {
  width: 80px;
  height: 80px;
  object-fit: contain;
  mix-blend-mode: multiply;
  opacity: 0.75;
  border-radius: 50%;
  filter: drop-shadow(0 2px 8px rgba(123,30,137,0.2));
}

.deco-dragon-rouge {
  width: 90px;
  height: 120px;
  object-fit: cover;
  object-position: top;
  border-radius: 12px;
  opacity: 0.8;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 2px 8px rgba(123,30,137,0.2));
}

/* ── Bouddha : centré sous le titre coaching ── */
.deco-bouddha {
  width: 160px;
  height: 160px;
  object-fit: cover;
  object-position: top;
  border-radius: 16px;
  float: right;
  margin: 0 0 16px 24px;
  max-width: 25%;
  box-shadow: 0 8px 32px rgba(123,30,137,0.2);
  border: 3px solid rgba(192,171,79,0.4);
  filter: saturate(0.85);
  position: relative;
}

/* ── Habitat : dragon yin-yang en décoration ── */
.deco-habitat {
  width: 160px;
  height: 160px;
  object-fit: cover;
  border-radius: 16px;
  float: left;
  margin: 0 24px 16px 0;
  max-width: 25%;
  opacity: 0.88;
  box-shadow: 0 6px 24px rgba(123,30,137,0.15);
  filter: sepia(0.2) saturate(0.8);
}

/* ── Bon cadeau : dragon doré ── */
.deco-gift {
  width: 140px;
  height: 140px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  display: block;
  margin: 12px auto 0;
  box-shadow: 0 6px 20px rgba(192,171,79,0.3);
  border: 2px solid rgba(192,171,79,0.5);
  filter: saturate(1.1);
}

/* ── Responsive : réduire sur mobile ── */
@media (max-width: 960px) {
  .deco-float--right {
    display: none;
  }
  .deco-elements {
    width: 200px;
    opacity: 0.85;
  }
  .deco-bouddha {
    width: 90px;
    height: 90px;
    float: right;
    margin: 0 0 10px 12px;
    max-width: 30%;
  }
  .deco-habitat {
    width: 90px;
    height: 90px;
    float: right;
    margin: 0 0 10px 12px;
    max-width: 30%;
  }
  .deco-elements {
    width: 120px;
  }
  .deco-gift {
    width: 110px;
    height: 110px;
  }
  .deco-chinois {
    flex-direction: row;
    gap: 10px;
  }
  .deco-symbol {
    width: 60px;
    height: 60px;
  }
  .deco-dragon-rouge {
    width: 70px;
    height: 90px;
  }
}

.coaching { overflow: hidden; }

.habitat { overflow: visible; }


/* Bouddha : cadre adapté au ratio portrait 0.63 */
.coaching .blocContain .blocPhoto {
  height: 340px !important;
  width: 215px !important;
}
.coaching .blocContain .blocPhoto .photo img {
  object-fit: cover !important;
  object-position: center 20% !important;
}

/* 5 éléments : rond, taille raisonnable, sans ombrage */
.habitat .blocContain .blocPhoto {
  height: 280px !important;
  width: 280px !important;
  flex-shrink: 0 !important;
}
.habitat .blocContain .blocPhoto .photo {
  border-radius: 50% !important;
  overflow: hidden !important;
  width: 100% !important;
  height: 100% !important;
}
.habitat .blocContain .blocPhoto .photo img {
  object-fit: contain !important;
  object-position: center center !important;
  border-radius: 50% !important;
  width: 100% !important;
  height: 100% !important;
}
.habitat .blocContain .blocPhoto .photo::before {
  box-shadow: none !important;
}
.habitat .blocContain .blocPhoto .cadre {
  opacity: 0.15 !important;
  box-shadow: none !important;
  border-radius: 50% !important;
  width: 100% !important;
  height: 100% !important;
  top: 0 !important;
  left: 0 !important;
}


/* Habitat mobile : carré forcé en rond */
@media (max-width: 960px) {
  .habitat .blocContain .blocPhoto {
    width: 220px !important;
    height: 220px !important;
    max-width: 220px !important;
    margin: 0 auto 20px !important;
  }
  .habitat .blocContain .blocPhoto .photo {
    border-radius: 50% !important;
    overflow: hidden !important;
    width: 100% !important;
    height: 100% !important;
  }
  .habitat .blocContain .blocPhoto .photo img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
    border-radius: 50% !important;
  }
  .habitat .info-container {
    overflow: visible !important;
    white-space: normal !important;
    word-break: break-word !important;
    max-width: 100% !important;
    padding: 0 20px 40px !important;
    box-sizing: border-box !important;
  }
  .habitat .info-container p {
    overflow: visible !important;
    white-space: normal !important;
    word-break: break-word !important;
  }
}
@media (max-width: 549px) {
  .habitat .blocContain .blocPhoto {
    width: 180px !important;
    height: 180px !important;
    max-width: 180px !important;
  }
}
/* ========================= */
/* SECTION PRÉSENTATION — responsive mobile */
/* ========================= */
@media (max-width: 960px) {
  .presentation {
    padding-top: 100px;
    margin-top: 0;
  }

  .presentation h2 {
    font-size: 4rem;
    margin: 20px auto 20px;
  }

  .presentation p.quote {
    font-size: 1.1rem;
    line-height: 1.7;
    padding: 0 20px;
    white-space: normal;
  }

  .presentation p .quote-mark {
    font-size: 22px;
  }

  .presentation img:not(.deco-float) {
    width: 70%;
    margin: 20px auto -80px;
  }

  .presentation .intro {
    width: 100%;
    padding: 0 16px;
  }
}

@media (max-width: 549px) {
  .presentation {
    padding-top: 95px;
  }

  .presentation h2 {
    font-size: 3.5rem;
    margin: 10px auto 14px;
  }

  .presentation p.quote {
    font-size: 0.97rem;
    padding: 0 14px;
    letter-spacing: 0;
  }

  .presentation .presentation-accroche {
    font-size: 1.1rem;
    padding: 0 14px;
    margin-bottom: 20px;
    color: orange !important;
  }

  .presentation img:not(.deco-float) {
    width: 80%;
    margin: 16px auto -40px;
  }
}