@media screen and (max-width: 768px) {

  table {
    display: block !important;
    width: 100% !important;
  }

  table tbody {
    display: block !important;
    width: 100% !important;
  }

  table tr {
    display: block !important;
    width: 100% !important;
  }

  table td {
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin-bottom: 20px !important;
  }

  h1, h2, h3 {
    word-break: break-word !important;
    overflow-wrap: break-word !important;
  }

  img {
    max-width: 100% !important;
    height: auto !important;
  }

  a[style] {
    display: block !important;
    width: 100% !important;
    max-width: 320px !important;
    margin: 12px auto !important;
    text-align: center !important;
  }
}
.btn.btn-default {
    background-color: #EB8923; /* couleur de fond */
    color: #ffffff;             /* couleur du texte */
    border: 1px solid #EB8923;  /* couleur de la bordure */
    transition: all 0.3s ease;  /* transition douce pour le hover */
}
.btn.btn-primary  {
    background-color: #EB8923; /* couleur de fond */
 } 
@media screen and (max-width: 768px) {

  tr.hide-mobile-row {
    display: none !important;
  }

}
/* =========================================================
   CARD FORMATIONS HARMONIE & RÉSONANCE
========================================================= */

.hr-formation-card {
  position: relative;
  overflow: hidden;
  background: #0c1220;
  padding: 3rem 2rem;
  border-radius: 24px;
}

/* =========================================================
   ÉTOILES / ÉTINCELLES
========================================================= */

.hr-stars {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 1;
}

.hr-stars span {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a84c;

  box-shadow:
    0 0 8px rgba(201,168,76,0.9),
    0 0 18px rgba(201,168,76,0.6);

  opacity: 0;

  animation: hrTwinkle 2.2s ease-in-out infinite;
}

/* positions des étoiles */

.hr-stars span:nth-child(1){top:12%;left:65%;animation-delay:0s;}
.hr-stars span:nth-child(2){top:28%;left:82%;animation-delay:.2s;}
.hr-stars span:nth-child(3){top:52%;left:74%;animation-delay:.4s;}
.hr-stars span:nth-child(4){top:78%;left:88%;animation-delay:.6s;}
.hr-stars span:nth-child(5){top:18%;left:45%;animation-delay:.8s;}

.hr-stars span:nth-child(6){
  top:66%;
  left:58%;
  animation-delay:1s;
  background:#ffffff;
}

.hr-stars span:nth-child(7){
  top:38%;
  left:92%;
  animation-delay:1.2s;
  background:#4fc3f7;
}

.hr-stars span:nth-child(8){
  top:84%;
  left:68%;
  animation-delay:1.4s;
}

.hr-stars span:nth-child(9){top:8%;left:78%;animation-delay:.3s;}
.hr-stars span:nth-child(10){top:24%;left:55%;animation-delay:.5s;}
.hr-stars span:nth-child(11){top:44%;left:70%;animation-delay:.7s;}
.hr-stars span:nth-child(12){top:62%;left:82%;animation-delay:.9s;}
.hr-stars span:nth-child(13){top:74%;left:52%;animation-delay:1.1s;}
.hr-stars span:nth-child(14){top:88%;left:94%;animation-delay:1.3s;}
.hr-stars span:nth-child(15){top:14%;left:90%;animation-delay:1.5s;}
.hr-stars span:nth-child(16){top:48%;left:60%;animation-delay:1.7s;}

/* =========================================================
   CONTENU AU-DESSUS
========================================================= */

.hr-formation-card .programme-liberation-inner {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  gap: 40px;
  flex-wrap: wrap;
}

/* =========================================================
   IMAGE
========================================================= */

.hr-formation-card .programme-liberation-image {
  flex: 1;
  min-width: 300px;
  text-align: center;
}

.hr-formation-card .programme-liberation-image img {
  max-width: 100%;
  border-radius: 20px;

  box-shadow:
    0 6px 25px rgba(0,0,0,0.25),
    0 0 25px rgba(201,168,76,0.12);

  animation: hrFloat 8s ease-in-out infinite;
}

/* =========================================================
   TEXTES
========================================================= */

.hr-formation-card .programme-liberation-text {
  flex: 1;
  min-width: 300px;
}

.hr-formation-card .programme-liberation-text,
.hr-formation-card .programme-liberation-text p,
.hr-formation-card .programme-liberation-text li {
  color: #ffffff !important;
}

.hr-formation-card .programme-liberation-text h2 {
  color: #ffffff !important;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.hr-formation-card .programme-liberation-text strong {
  color: #c9a84c !important;
}

/* =========================================================
   BOUTON
========================================================= */

.hr-formation-card .programme-liberation-btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 14px 28px;

  background: #c9a84c;
  color: #0c1220 !important;

  border-radius: 999px;
  text-decoration: none;
  font-weight: bold;

  transition: all .3s ease;
}

.hr-formation-card .programme-liberation-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.35);
}

/* =========================================================
   ANIMATIONS
========================================================= */

@keyframes hrTwinkle {

  0%,100%{
    opacity:0;
    transform:scale(.3);
  }

  50%{
    opacity:1;
    transform:scale(1.3);
  }
}

@keyframes hrFloat {

  0%,100%{
    transform:translateY(0px);
  }

  50%{
    transform:translateY(-6px);
  }
}

/* =========================================================
   RESPONSIVE MOBILE
========================================================= */

@media screen and (max-width: 768px) {

  .hr-formation-card {
    padding: 2rem 1.25rem;
  }

  .hr-formation-card .programme-liberation-inner {
    flex-direction: column;
    text-align: center;
  }

  .hr-formation-card .programme-liberation-text h2 {
    font-size: 1.8rem;
  }

  .hr-formation-card .programme-liberation-image,
  .hr-formation-card .programme-liberation-text {
    min-width: 100%;
  }

  .hr-formation-card .programme-liberation-btn {
    width: 100%;
    max-width: 320px;
  }
}/* =========================================================
   MINI GALERIE PREMIUM
========================================================= */

.hr-gallery {
  position: relative;
  z-index: 3;

  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;

  margin-top: 2.5rem;
  padding-top: 1.5rem;
}

.hr-gallery a {
  display: block;

  width: 110px;
  height: 110px;

  border-radius: 16px;
  overflow: hidden;

  transition:
    transform .3s ease,
    box-shadow .3s ease;
}

.hr-gallery a:hover {
  transform: scale(1.08);

  box-shadow:
    0 8px 25px rgba(0,0,0,.35),
    0 0 18px rgba(201,168,76,.25);
}

.hr-gallery img {
  width: 100%;
  height: 100%;

  object-fit: cover;
  display: block;
}

/* mobile */
@media screen and (max-width: 768px) {

  .hr-gallery {
    gap: 10px;
  }

  .hr-gallery a {
    width: 82px;
    height: 82px;
    border-radius: 12px;
  }

}/* =========================================================
   LIGHTBOX
========================================================= */

/* =========================================================
   LIGHTBOX PREMIUM
========================================================= */

.hr-lightbox {
  position: fixed !important;
  inset: 0 !important;

  z-index: 2147483647 !important;

  background: rgba(0, 0, 0, 0.92) !important;
  backdrop-filter: blur(6px);

  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity .3s ease;

  overflow: hidden !important;
}

/* ouverture */
.hr-lightbox.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* image */
.hr-lightbox-img {
  position: relative !important;
  z-index: 2147483647 !important;

  display: block !important;

  width: auto !important;
  height: auto !important;

  max-width: 85vw !important;
  max-height: 85vh !important;

  object-fit: contain !important;

  border-radius: 18px;

  box-shadow:
    0 20px 60px rgba(0,0,0,.55),
    0 0 30px rgba(201,168,76,.18);

  transform: scale(.92);
  transition: transform .35s ease;
}

/* animation ouverture */
.hr-lightbox.active .hr-lightbox-img {
  transform: scale(1);
}

/* bouton fermeture */
.hr-lightbox-close {
  position: fixed !important;
  top: 20px !important;
  right: 30px !important;

  z-index: 2147483647 !important;

  color: #ffffff !important;

  font-size: 54px !important;
  line-height: 1 !important;

  cursor: pointer;

  transition:
    transform .25s ease,
    color .25s ease;
}

/* hover fermeture */
.hr-lightbox-close:hover {
  transform: scale(1.12);
  color: #c9a84c !important;
}

/* responsive mobile */
@media screen and (max-width: 768px) {

  .hr-lightbox-img {
    max-width: 94vw !important;
    max-height: 82vh !important;
    border-radius: 14px;
  }

  .hr-lightbox-close {
    top: 14px !important;
    right: 18px !important;
    font-size: 44px !important;
  }

}

/* ==========================================
   Carrousel Prestations - Bien-être
   ========================================== */

/* ==========================================
   Carrousel prestations — site Bien-être
   ========================================== */

.bienetre-prestations-carousel {
    position: relative !important;
    width: 100% !important;
    padding: 0 55px !important;
    box-sizing: border-box !important;
}

.bienetre-prestations-carousel .bienetre-carousel-track {
    display: flex !important;
    flex-direction: row !important;
    gap: 24px !important;
    overflow-x: auto !important;
    scroll-behavior: smooth !important;
    scroll-snap-type: x mandatory !important;
    scrollbar-width: none !important;
}

.bienetre-prestations-carousel .bienetre-carousel-track::-webkit-scrollbar {
    display: none !important;
}

.bienetre-prestations-carousel .bienetre-carousel-card {
    position: relative !important;
    display: flex !important;
    align-items: flex-start !important;

    flex: 0 0 calc((100% - 48px) / 3) !important;
    height: 260px !important;

    padding: 20px !important;
    box-sizing: border-box !important;

    overflow: hidden !important;
    border-radius: 18px !important;

    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;

    scroll-snap-align: start !important;
    text-decoration: none !important;
}

/* Dégradé sombre sur la photo */

.bienetre-prestations-carousel .bienetre-carousel-card::before {
    content: "" !important;
    position: absolute !important;
    inset: 0 !important;
    z-index: 1 !important;

    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.58) 0%,
        rgba(0, 0, 0, 0.18) 45%,
        rgba(0, 0, 0, 0) 75%
    ) !important;

    pointer-events: none !important;
}

/* Titre sur la photo */

.bienetre-prestations-carousel .bienetre-carousel-title {
    position: relative !important;
    z-index: 2 !important;

    display: block !important;
    margin: 0 !important;
    padding: 0 !important;

    color: #ffffff !important;
    font-size: 25px !important;
    font-weight: 700 !important;
    line-height: 1.15 !important;
    text-align: left !important;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.85) !important;
}

/* Flèches */

.bienetre-prestations-carousel .bienetre-carousel-arrow {
    position: absolute !important;
    top: 50% !important;
    z-index: 10 !important;

    width: 44px !important;
    height: 55px !important;
    padding: 0 !important;

    border: 0 !important;
    background: transparent !important;

    color: #d5d5d5 !important;
    font-size: 46px !important;
    line-height: 1 !important;

    cursor: pointer !important;
    transform: translateY(-50%) !important;
}

.bienetre-prestations-carousel .bienetre-carousel-prev {
    left: 4px !important;
}

.bienetre-prestations-carousel .bienetre-carousel-next {
    right: 4px !important;
}

.bienetre-prestations-carousel .bienetre-carousel-arrow:hover {
    color: #2b1677 !important;
}

.bienetre-prestations-carousel .bienetre-carousel-arrow:disabled {
    opacity: 0.25 !important;
    cursor: default !important;
}

/* Tablette */

@media (max-width: 991px) {
    .bienetre-prestations-carousel .bienetre-carousel-card {
        flex-basis: calc((100% - 24px) / 2) !important;
    }
}

/* Téléphone */

@media (max-width: 600px) {
    .bienetre-prestations-carousel {
        padding: 0 38px !important;
    }

    .bienetre-prestations-carousel .bienetre-carousel-card {
        flex-basis: 100% !important;
        height: 220px !important;
    }

    .bienetre-prestations-carousel .bienetre-carousel-title {
        font-size: 22px !important;
    }
}

/* ==========================================
   Introduction accueil — site Bien-être
   ========================================== */

.bienetre-intro-accueil {
    max-width: 1100px;
    margin: 35px auto 45px;
    padding: 36px 42px;
    box-sizing: border-box;

    background: #fffdf8;
    border: 1px solid rgba(205, 164, 71, 0.25);
    border-radius: 24px;

    box-shadow: 0 14px 35px rgba(95, 70, 35, 0.08);
}

.bienetre-intro-header {
    max-width: 760px;
    margin: 0 auto 30px;
    text-align: center;
}

.bienetre-intro-surtitle {
    display: inline-block;
    margin-bottom: 10px;

    color: #b8872e;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.bienetre-intro-header h2 {
    margin: 0 0 14px;

    color: #8d6728;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.bienetre-intro-header p {
    margin: 0;

    color: #5d5143;
    font-size: 16px;
    line-height: 1.7;
}

.bienetre-intro-points {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.bienetre-intro-point {
    position: relative;
    min-height: 145px;
    padding: 22px 18px 18px;
    box-sizing: border-box;

    background: #fbf4e2;
    border-radius: 16px;

    text-align: left;
}

.bienetre-intro-point span {
    display: block;
    margin-bottom: 10px;

    color: #d1a333;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.bienetre-intro-point strong {
    display: block;
    margin-bottom: 7px;

    color: #7b5521;
    font-size: 18px;
}

.bienetre-intro-point p {
    margin: 0;

    color: #66594c;
    font-size: 14px;
    line-height: 1.55;
}

.bienetre-intro-phrase {
    max-width: 760px;
    margin: 28px auto 0;

    color: #6d4d27;
    font-size: 17px;
    line-height: 1.6;
    font-style: italic;
    font-weight: 600;
    text-align: center;
}

/* Tablette */

@media (max-width: 900px) {

    .bienetre-intro-points {
        grid-template-columns: repeat(2, 1fr);
    }

}

/* Mobile */

@media (max-width: 600px) {

    .bienetre-intro-accueil {
        margin: 20px 12px 30px;
        padding: 28px 20px;
        border-radius: 18px;
    }

    .bienetre-intro-header h2 {
        font-size: 25px;
    }

    .bienetre-intro-header p {
        font-size: 15px;
    }

    .bienetre-intro-points {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .bienetre-intro-point {
        min-height: auto;
    }

    .bienetre-intro-phrase {
        margin-top: 22px;
        font-size: 15px;
    }

}
/* ==========================================
   Titre section
   ========================================== */

.bienetre-section-title{
    text-align:center;
    margin:55px 0 35px;
}

.bienetre-section-title span{
    display:block;
    margin-bottom:8px;

    color:#c7a04a;
    font-size:15px;
    letter-spacing:3px;
    text-transform:uppercase;
    font-weight:600;
}

.bienetre-section-title h2{
    margin:0;
    color:#7b5521;
    font-size:46px;
    font-weight:700;
    line-height:1.1;
    position:relative;
}

.bienetre-section-title h2::after{
    content:"";
    display:block;

    width:70px;
    height:3px;

    margin:18px auto 0;

    background:#d4b05a;
    border-radius:10px;
}

@media(max-width:768px){

    .bienetre-section-title{
        margin:40px 0 25px;
    }

    .bienetre-section-title h2{
        font-size:34px;
    }

}
/* ==================================================
   PAGE PRESTATIONS HAUT DE GAMME
   ================================================== */

/* ==================================================
   PAGE PRESTATIONS TERRE & SENS
   ================================================== */

.tes-prestations{
    width:100%;
    max-width:1240px;
    margin:0 auto;
    padding:45px 24px 80px;
    box-sizing:border-box;
}


/* En-tête */

.tes-prestations-header{
    max-width:790px;
    margin:0 auto 48px;
    text-align:center;
}

.tes-prestations-signature{
    display:block;
    margin-bottom:13px;

    color:#af854d;
    font-size:11px;
    font-weight:600;
    letter-spacing:3px;
    text-transform:uppercase;
}

.tes-prestations-header h1{
    margin:0 !important;

    color:#4b3929 !important;
    font-family:Georgia, "Times New Roman", serif !important;
    font-size:50px !important;
    font-weight:400 !important;
    line-height:1.15 !important;
    letter-spacing:-1px;
}

.tes-prestations-header p{
    max-width:650px;
    margin:20px auto 0 !important;

    color:#776b61 !important;
    font-size:16px !important;
    line-height:1.75 !important;
}

.tes-prestations-ornement{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;

    margin-top:25px;
}

.tes-prestations-ornement span{
    width:46px;
    height:1px;
    background:#d5bd98;
}

.tes-prestations-ornement b{
    color:#b58a50;
    font-size:12px;
    font-weight:400;
}


/* Grille */

.tes-prestations-grid{
    display:grid !important;
    grid-template-columns:repeat(3, minmax(0, 1fr)) !important;
    gap:22px !important;
}


/* Carte entièrement cliquable */

.tes-prestation-card{
    position:relative !important;
    z-index:1 !important;

    display:block !important;
    width:100% !important;
    height:365px !important;

    overflow:hidden !important;
    border-radius:12px !important;
    background:#443b33 !important;

    text-decoration:none !important;
    cursor:pointer !important;

    box-shadow:0 14px 36px rgba(59,44,30,.13) !important;

    transition:
        transform .45s ease,
        box-shadow .45s ease !important;
}


/* Image */

.tes-prestation-card > img{
    position:absolute !important;
    inset:0 !important;

    display:block !important;
    width:100% !important;
    height:100% !important;
    max-width:none !important;

    object-fit:cover !important;
    object-position:center !important;

    z-index:0 !important;
    pointer-events:none !important;

    transition:transform .9s cubic-bezier(.2,.7,.2,1) !important;
}


/* Dégradé */

.tes-prestation-voile{
    position:absolute !important;
    inset:0 !important;
    z-index:1 !important;

    display:block !important;
    pointer-events:none !important;

    background:linear-gradient(
        180deg,
        rgba(24,19,15,.02) 15%,
        rgba(24,19,15,.12) 45%,
        rgba(24,19,15,.91) 100%
    ) !important;
}


/* Texte sur la carte */

.tes-prestation-contenu{
    position:absolute !important;
    inset:0 !important;
    z-index:2 !important;

    display:flex !important;
    flex-direction:column !important;
    justify-content:flex-end !important;
    align-items:flex-start !important;

    padding:27px !important;
    box-sizing:border-box !important;

    pointer-events:none !important;
}

.tes-prestation-contenu small{
    display:block !important;
    margin-bottom:9px !important;

    color:#efd5aa !important;
    font-size:10px !important;
    font-style:normal !important;
    font-weight:600 !important;
    line-height:1.4 !important;
    letter-spacing:1.8px !important;
    text-transform:uppercase !important;
}

.tes-prestation-contenu strong{
    display:block !important;
    margin:0 !important;

    color:#fff !important;
    font-family:Georgia, "Times New Roman", serif !important;
    font-size:30px !important;
    font-weight:400 !important;
    line-height:1.15 !important;

    text-shadow:0 2px 13px rgba(0,0,0,.3) !important;
}

.tes-prestation-contenu em{
    display:flex !important;
    align-items:center !important;
    gap:8px !important;

    margin-top:16px !important;

    color:rgba(255,255,255,.92) !important;
    font-size:10px !important;
    font-style:normal !important;
    font-weight:600 !important;
    letter-spacing:1.6px !important;
    text-transform:uppercase !important;
}

.tes-prestation-contenu em b{
    color:#e8c18b !important;
    font-size:17px !important;
    font-weight:400 !important;

    transition:transform .35s ease !important;
}


/* Survol */

.tes-prestation-card:hover{
    transform:translateY(-6px) !important;
    box-shadow:0 23px 48px rgba(55,40,26,.22) !important;
}

.tes-prestation-card:hover > img{
    transform:scale(1.055) !important;
}

.tes-prestation-card:hover .tes-prestation-contenu em b{
    transform:translateX(5px) !important;
}


/* Conclusion */

.tes-prestations-footer{
    max-width:780px;
    margin:75px auto 0;
    padding:55px 45px;

    text-align:center;
    background:#f5f0e8;
    border:1px solid #e7dccb;
    box-sizing:border-box;
}

.tes-prestations-footer > span{
    display:block;
    margin-bottom:18px;

    color:#b58a50;
    font-size:15px;
}

.tes-prestations-footer p{
    margin:0 !important;

    color:#503e2e !important;
    font-family:Georgia, "Times New Roman", serif !important;
    font-size:29px !important;
    font-style:italic !important;
    line-height:1.45 !important;
}

.tes-prestations-footer small{
    display:block;
    max-width:620px;
    margin:20px auto 0;

    color:#7b7066 !important;
    font-size:14px !important;
    line-height:1.7 !important;
}

.tes-prestations-footer a{
    display:inline-block !important;
    margin-top:28px !important;
    padding:14px 27px !important;

    color:#fff !important;
    background:#675039 !important;
    border:1px solid #675039 !important;

    font-size:10px !important;
    font-weight:600 !important;
    letter-spacing:1.7px !important;
    text-transform:uppercase !important;
    text-decoration:none !important;

    transition:.35s ease !important;
}

.tes-prestations-footer a:hover{
    color:#675039 !important;
    background:transparent !important;
}


/* Tablette */

@media(max-width:950px){

    .tes-prestations-grid{
        grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
    }

    .tes-prestations-header h1{
        font-size:43px !important;
    }
}


/* Téléphone */

@media(max-width:620px){

    .tes-prestations{
        padding:30px 14px 55px;
    }

    .tes-prestations-header{
        margin-bottom:35px;
    }

    .tes-prestations-header h1{
        font-size:35px !important;
    }

    .tes-prestations-header p{
        font-size:15px !important;
    }

    .tes-prestations-grid{
        grid-template-columns:1fr !important;
        gap:17px !important;
    }

    .tes-prestation-card{
        height:370px !important;
    }

    .tes-prestation-contenu strong{
        font-size:29px !important;
    }

    .tes-prestations-footer{
        margin-top:50px;
        padding:42px 22px;
    }

    .tes-prestations-footer p{
        font-size:24px !important;
    }
}