/* ========================= */
/* 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,
body {
  overflow-x: hidden;
  /* Désactiver le scroll horizontal */
}
body {
  font-family: 'Poppins', sans-serif;
  background-color: #f7f4e3;
  background-image: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23d8b4e2' fill-opacity='0.15'%3E%3Ccircle cx='10' cy='10' r='10'/%3E%3Ccircle cx='60' cy='60' r='10'/%3E%3Ccircle cx='30' cy='30' r='8'/%3E%3Ccircle cx='70' cy='20' r='6'/%3E%3Ccircle cx='20' cy='70' r='6'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 80px 80px;
  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: 8rem;
  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,
#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: 500;
  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;
}
.container-nav nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  font-size: 0;
}
.container-nav nav ul li {
  position: relative;
  height: 80px;
}
.container-nav nav ul li a {
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 10px;
  display: block;
  justify-content: space-between;
  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;
}
.container-nav nav ul li.dropdown .submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #7b1e89;
  box-shadow: 0 15px 18px rgba(0, 0, 0, 0.2);
  border-radius: 0 0 10px 10px;
  z-index: 1000;
}
.container-nav nav ul li.dropdown .submenu li a {
  text-align: center;
  display: block;
  padding: 10px;
  font-size: 0.8rem;
  color: #c0ab4f;
  font-weight: normal;
  line-height: 1.2;
}
.container-nav nav ul li.dropdown .submenu li a:hover {
  display: flex;
  align-items: center;
  width: 95%;
  height: auto;
  background-color: #f7f4e3;
  color: #7b1e89;
  border-radius: 5px;
  height: 100%;
  margin: 0 auto;
  text-align: center;
}
.container-nav nav ul li.dropdown:hover .submenu {
  display: block;
  width: auto;
  /* Box Shadow ultra-design */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 8px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 0, 0, 0.2);
  transition: box-shadow 0.3s ease-in-out;
}
.container-nav nav ul li.dropdown:hover .submenu:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 10px 60px rgba(0, 0, 0, 0.15), 0 0 50px rgba(0, 0, 0, 0.3);
}
.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: 2em;
  color: #7b1e89;
  text-align: center;
  white-space: pre-line;
  font-family: 'Poppins', sans-serif;
}
.presentation p .quote-mark {
  font-size: 32px;
  font-weight: bold;
  color: #7b1e89;
}
.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 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  position: relative;
  top: 100px;
  gap: 200px;
}
.prestation .blocContain .left .blocPhoto,
.prestation .blocContain .right .blocPhoto {
  position: relative;
  width: 600px;
  height: 350px;
  margin-bottom: 200px;
}
.prestation .blocContain .left .blocPhoto .photo,
.prestation .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 {
  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 {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 15px;
}
.prestation .blocContain .left .blocPhoto .cadre,
.prestation .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 {
  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 {
  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 {
  font-size: 1.2rem;
}
.prestation .blocContain .left .cadre {
  left: 25px;
}
.prestation .blocContain .right {
  flex-direction: row-reverse;
}
.prestation .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: #7b1e89;
  color: #c0ab4f;
  padding: 40px 20px 20px;
  font-size: 14px;
}
.footer a {
  color: #c0ab4f;
  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: 4.5rem;
  }
  .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: 6.5em;
  }
  .container-nav nav {
    position: fixed;
    top: 0;
    left: -100%;
    /* Cache le menu à gauche par défaut */
    width: 40%;
    /* Taille du menu latéral */
    height: 80vh;
    background-color: #f7f4e3;
    flex-direction: column;
    display: flex;
    transition: left 0.3s ease-in-out;
    padding-top: 80px;
    /* Box Shadow ultra-design */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 8px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
  }
  .container-nav nav:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 10px 60px rgba(0, 0, 0, 0.15), 0 0 50px rgba(0, 0, 0, 0.3);
  }
  .container-nav nav ul {
    flex-direction: column;
    align-items: center;
    width: 100%;
    background-color: #f7f4e3;
  }
  .container-nav nav ul li {
    width: 100%;
    text-align: center;
  }
  .container-nav nav ul li a {
    padding: 15px 2px;
    font-size: 1rem;
    line-height: normal;
  }
  .container-nav nav ul li.dropdown .submenu {
    display: none;
    position: absolute;
    left: 100%;
    /* Positionne le sous-menu à droite */
    top: -300px;
    padding: 5px;
    border-radius: 10px;
    background-color: #7b1e89;
    box-shadow: 0 10px 18px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transition: opacity 0.3s ease;
    /* Box Shadow ultra-design */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15), 0 8px 40px rgba(0, 0, 0, 0.1), 0 0 30px rgba(0, 0, 0, 0.2);
    transition: box-shadow 0.3s ease-in-out;
  }
  .container-nav nav ul li.dropdown .submenu:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 10px 60px rgba(0, 0, 0, 0.15), 0 0 50px rgba(0, 0, 0, 0.3);
  }
  .container-nav nav ul li.dropdown .submenu li a {
    display: block;
    font-size: 0.8rem;
    color: #c0ab4f;
    font-weight: normal;
    text-align: center;
    margin: 0 auto;
  }
  .container-nav nav ul li.dropdown:hover .submenu {
    display: block;
    opacity: 1;
  }
  .container-nav nav.open {
    left: 0;
    /* Affiche le menu latéral */
  }
  .burger {
    display: flex;
    /* Affiche le burger */
  }
  .switch {
    width: 60px;
    height: 35px;
    border-radius: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    /* Pour positionner correctement ::before */
    top: 20px;
    left: 20px;
  }
  .head-top {
    position: relative;
    bottom: 60px !important;
  }
  .head-top img {
    width: 40% !important;
  }
  .head-top h1 {
    font-size: 1.5em !important;
  }
  .presentation {
    position: relative;
    top: -220px;
  }
  .presentation h2 {
    margin: 0 10px !important;
    font-size: 4rem;
  }
  .presentation p {
    margin: 0 10px !important;
    font-size: 1.4em !important;
  }
  .presentation .quote {
    padding: 0 20px;
    font-size: 1.4em;
  }
  .presentation .quote .quote-mark {
    font-size: 0.8em;
  }
  .presentation img {
    width: 40%;
  }
  .massages {
    position: relative;
    top: -200px;
  }
  .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: -150px;
    white-space: collapse !important;
    font-size: 1.2em;
  }
  .formations-massages .formation-item {
    width: 80% !important;
    padding: 0 auto !important;
    position: relative;
    top: -180px;
  }
  .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.4rem;
  }
  .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: 6rem !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.4rem;
  }
  .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: 5rem !important;
    line-height: 1;
  }
}
