body {
    font-family: 'Montserrat', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #fff;
}

header {
    position: absolute;
    width: 100%;
    z-index: 1000;
}

html {
    scroll-behavior: smooth;
}

.navbar {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 30px 0;
    background-color: transparent;
}

.logo {
    font-size: 1.5rem;
    color: #ccb797;
    font-weight: 700;
}

.nav-links {
    list-style: none;
    display: flex;
}

.nav-links li {
    margin-left: 20px;
}

.nav-links a {
    position: relative;
    text-decoration: none;
    color: #ffffff;
    font-weight: 500;
    transition: color 0.3s ease;
}

.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background-color: #ccb797;
    transition: width 0.3s ease;
}

.nav-links a:hover {
    color: #ccb797;
}

.nav-links a:hover::after {
    width: 100%;
}

.burger {
    display: none;
    cursor: pointer;
}

.burger div {
    width: 25px;
    height: 3px;
    background-color: #FFF;
    margin: 5px;
    transition: all 0.3s ease;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -120%; /* Commence hors de l'écran */
        top: -10%;
        background-color: #1c0b02;
        width: 100%;
        height: 110vh;
        flex-direction: column;
        color:#FAFAFA;
        align-items: center;
        justify-content: center;
        transition: right 0.5s ease;
    }

    .nav-links.active {
        right: 0; /* Apparaît de la droite */
    }

    .nav-links li {
        margin: 20px 0;
    }

    .nav-links li a {
        font-weight: 700;
        font-size: 1.5rem;
    }

    .burger {
        display: block;
        position: absolute;
        right: 20px;
        z-index: 2000;
    }

    /* Animation du burger */
    .burger.active .line1 {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active .line2 {
        opacity: 0;
    }

    .burger.active .line3 {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    /* Animation des liens */
    @keyframes navLinkFade {
        from {
            opacity: 0;
            transform: translateX(50px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
}

/* Fin Header */
/* Hero */

.hero {
    height: 100vh;
    background-image: url('./images/bg.png'); /* Remplacez par le chemin de votre image */
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Overlay sombre pour améliorer la lisibilité */
    z-index: -1;
}

.hero-content {
    z-index: 2;
    max-width: 800px;
    padding: 20px;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    line-height: 1.2;
}

.hero h2 {
    font-size: 1.5rem;
    margin-bottom: 30px;
    font-weight: 400;
    line-height: 1.3;
}

.hero-icons {
    display: flex;
    justify-content: space-around;
    margin-bottom: 30px;
}

.icon {
    text-align: center;
    color: #FFF;
}

.icon i {
    font-size: 40px; /* Ajustez la taille des icônes */
    margin-bottom: 10px;
    color:#ccb797
}

.cta-button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #b39b7a;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 50px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease, transform 0.3s ease;
    font-size: 1.1rem;
}

.cta-button:hover {
    background-color: #b39b7a; /* Couleur plus foncée au survol */
    transform: translateY(-3px); /* Légère élévation lors du survol */
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3); /* Ombre plus marquée au survol */
}

.cta-button:active {
    transform: translateY(1px); /* Effet d'enfoncement lors du clic */
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); /* Rétablit l'ombre normale */
}

.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 30px;
    border: 2px solid #ccb797;
    border-radius: 50%;
    position: relative;
    animation: bounce 2s infinite;
}

.scroll-indicator span::after {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background-color: #ccb797;
    border-radius: 50%;
    animation: scroll-indicator 2s infinite;
}

@keyframes scroll-indicator {
    0%, 20%, 50%, 80%, 100% {
        transform: translate(-50%, 0);
    }
    40% {
        transform: translate(-50%, 10px);
    }
    60% {
        transform: translate(-50%, 5px);
    }
}

@media screen and (max-width:768px) {
    .hero-content h1 {
        font-size:2rem;
    }
    .hero-content h2 {
        font-size:1.2rem;
    }

    .hero-icons {
        flex-direction: column;
    }
}

@media screen and (max-width:380px) {
    .hero {
        height:110vh;
        padding:30px 0;
    }
}

/* Fin Hero */
/* Presentation */

.presentation {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Fond légèrement coloré */
    color: #333;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    position: relative;
    overflow: hidden;
}

.presentation::before, .presentation::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #ccb797;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.presentation::before {
    top: -50px;
    left: -50px;
}

.presentation::after {
    bottom: -50px;
    right: -50px;
}

/* Ajout de petits ronds décoratifs */
.presentation .decorative-circle {
    position: absolute;
    background-color: #ccb797;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.presentation .decorative-circle.circle1 {
    width: 30px;
    height: 30px;
    top: 20%;
    left: 10%;
}

.presentation .decorative-circle.circle2 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 15%;
}

.presentation .decorative-circle.circle3 {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 30%;
}

.presentation-container {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Permet d'adapter la mise en page sur petits écrans */
    position: relative;
    z-index: 2;
}

.presentation-image {
    flex: 1;
    max-width: 300px;
    margin-right: 20px;
}

.presentation-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.presentation-image img:hover {
    transform: scale(1.05);
}

.presentation-content {
    flex: 2;
    max-width: 600px;
    text-align: left;
    padding: 20px;
}

.presentation h2 {
    font-size: 2rem;
    color: #ccb797;
    margin-bottom: 20px;
    font-weight: 700;
}

.presentation p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    text-align: justify;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

@media (max-width: 768px) {
    .presentation-container {
        flex-direction: column;
    }

    .presentation-image {
        margin-right: 0;
        margin-bottom: 20px;
    }

    .presentation-content {
        text-align: center;
    }
}

.cta-small {
    display: inline-block;
    margin-top: 20px; /* Espacement au-dessus du CTA */
    padding: 10px 20px;
    background-color: #ccb797;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-small:hover {
    background-color: #b39b7a; /* Couleur plus foncée au survol */
    transform: translateY(-2px); /* Légère élévation lors du survol */
}

/* Fin Présentation */
/* Services */

.services {
    position: relative; /* Position relative pour le pseudo-élément */
    padding: 60px 20px;
    color: #fff; /* Couleur du texte en blanc pour le contraste */
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    overflow: hidden; /* Pour cacher le débordement du flou */
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('./images/bg2.avif'); /* Remplacez par le chemin de votre image de fond */
    background-size: cover; /* Assure que l'image couvre toute la section */
    background-position: center; /* Centre l'image */
    z-index: 1; /* Positionne le flou derrière le contenu */
    filter:blur(5px);
}

.services-container {
    position: relative; /* Position relative pour le contenu */
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px; /* Ajoute du padding autour du contenu */
    border-radius: 10px; /* Bords arrondis pour le conteneur */
    z-index: 2; /* Positionne le contenu au-dessus du flou */
}

.services h2 {
    font-size: 2rem;
    color: #fff; /* Couleur du titre en blanc */
    margin-bottom: 20px;
    font-weight: 700;
}

.services p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #f0e6d2; /* Couleur du texte du sous-titre en clair pour le contraste */
}

.service-item {
    margin-bottom: 40px;
    padding: 20px;
    background-color: rgba(255, 255, 255, 0.9); /* Fond blanc avec transparence pour les items de service */
    color: #333; /* Couleur du texte en sombre pour les items */
    border-radius: 10px; /* Bords arrondis */
    transition: box-shadow 0.3s ease;
}

.service-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Ombre au survol pour un effet de profondeur */
}

.service-item h3 {
    font-size: 1.5rem;
    color: #8b5b29; /* Couleur du titre des services en marron */
    margin-bottom: 10px;
}

.service-item p {
    font-size: 1rem;
    line-height: 1.5;
    color: #555; /* Couleur du texte des descriptions */
}

.service-item ul {
    list-style-type: disc; /* Type de puce */
    padding-left: 20px; /* Espacement à gauche pour aligner les puces */
    margin-top: 10px; /* Espacement au-dessus de la liste */
    color: #555; /* Couleur du texte des éléments de liste */
}

.service-item li {
    margin-bottom: 8px; /* Espacement entre les éléments de la liste */
    line-height: 1.6; /* Hauteur de ligne pour améliorer la lisibilité */
    list-style-type: none;
}

.cta-small {
    display: inline-block;
    margin: 10px 0 30px 0;
    padding: 8px 16px;
    background-color: #8b5b29; /* Couleur marron pour le petit CTA */
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-small:hover {
    background-color: #b39b7a; /* Couleur plus foncée au survol */
    transform: translateY(-2px); /* Légère élévation lors du survol */
}

/* Fin Services */
/* Teams */
.teams {
    padding: 60px 20px;
    background: url("./images/bg3.jpg");
    color: #FFF;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

@keyframes gradientAnimation {
    0% {
      background-position: 0% 50%; /* Position de départ */
    }
    50% {
      background-position: 100% 50%; /* Position intermédiaire */
    }
    100% {
      background-position: 0% 50%; /* Retour à la position de départ */
    }
  }

.teams-container {
    max-width: 1200px;
    margin: 0 auto;
}

.teams h2 {
    font-size: 2rem;
    color: #FFF; /* Couleur du titre en marron */
    margin-bottom: 20px;
    font-weight: 700;
}

.teams p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #FFF; /* Couleur du texte du sous-titre */
}

.team-logos {
    display: flex;
    justify-content: center; /* Centre les logos */
    flex-wrap: wrap; /* Permet de passer à la ligne si nécessaire */
    align-items: center;
    gap: 20px; /* Espacement entre les logos */
    margin-bottom: 40px; /* Espacement en bas de la section */
}

.team-logo img {
    width: 250px; /* Largeur des logos */
    height: auto; /* Conserve le ratio d'aspect */
    transition: transform 0.3s ease; /* Effet de transformation au survol */
}

.team-logo img:hover {
    transform: scale(1.1); /* Agrandissement léger au survol */
}

.cta-small-teams {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ccb797; /* Couleur marron pour le CTA */
    color: #FFF;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-small-teams:hover {
    background-color: #b39b7a; /* Couleur plus foncée au survol */
    transform: translateY(-2px); /* Légère élévation lors du survol */
}

/* Responsive Design */
@media (max-width: 768px) {
    .teams h2 {
        font-size: 1.8rem; /* Réduit la taille du titre sur les petits écrans */
    }

    .teams p {
        font-size: 1rem; /* Réduit la taille du texte sur les petits écrans */
    }

    .team-logo img {
        width: 200px; /* Réduit la taille des logos sur les petits écrans */
    }
}

@media (max-width: 480px) {
    .teams h2 {
        font-size: 1.6rem; /* Réduit davantage la taille du titre sur les très petits écrans */
    }

    .teams p {
        font-size: 0.9rem; /* Réduit davantage la taille du texte sur les très petits écrans */
    }

    .team-logo img {
        width: 150px; /* Réduit davantage la taille des logos sur les très petits écrans */
    }
}

/* Fin Teams */
/* F.A.Q */

.faq {
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #333;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
}

.faq-container {
    max-width: 1200px;
    margin: 0 auto;
}

.faq h2 {
    font-size: 2rem;
    color: #8b5b29;
    margin-bottom: 20px;
    font-weight: 700;
}

.faq p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    color: #555;
}

.faq-item {
    background-color: #fff;
    border-radius: 10px;
    margin-bottom: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    overflow: hidden;
}

.faq-item:hover {
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-question {
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2rem;
    color: #8b5b29;
    margin: 0;
    display: flex; /* Utilise flexbox pour aligner l'icône et le texte */
    align-items: center; /* Centre verticalement */
}

.faq-icon {
    margin-right: 10px; /* Espacement entre l'icône et le texte */
    font-size: 1.5rem; /* Taille de l'icône */
    transition: transform 0.3s ease; /* Transition pour l'icône */
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, padding 0.5s ease-out;
    background-color: #8b5b29;
    color: #FFF;
}

.answer {
    color:#FFF !important;
}

.faq-item.active .faq-answer {
    max-height: 200px; /* Ajustez selon le contenu */
    padding: 15px 20px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg); /* Rotation de l'icône au déploiement */
}

.faq-item.active .faq-icon::before {
    content: '-'; /* Change le contenu de l'icône à '-' */
}

/* Fin F.A.Q */
/* Contact */

.contact {
    padding: 60px 20px;
    background-color: #f9f9f9; /* Fond clair pour la section */
    color: #333;
    font-family: 'Montserrat', sans-serif;
}

.contact-container {
    display: flex;
    flex-wrap: wrap; /* Permet d'adapter la mise en page sur petits écrans */
    max-width: 1200px;
    margin: 0 auto;
}

.contact-info {
    flex: 1;
    padding: 20px;
}

.contact-info h2 {
    font-size: 2rem;
    color: #8b5b29;
    margin-bottom: 20px;
    font-weight: 700;
}

.contact-info p {
    font-size: 1.1rem;
    margin-bottom: 20px;
    color: #555;
}

.contact-info ul {
    list-style: none;
    padding: 0;
}

.contact-info li {
    margin:30px 0;
    font-size: 1rem;
    color: #555;
}

.contact-info i {
    color: #8b5b29;
    margin-right: 10px;
}

.contact-form {
    flex: 1;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.contact-form .form-group {
    margin-bottom: 15px;
}

.contact-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
    color: #333;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact-form textarea {
    resize: vertical;
}

.form-group label {
    color:#8b5b29;
}

.contact-form button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #8b5b29;
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    border-radius: 5px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #b39b7a;
    transform: translateY(-2px);
}

form {
    width:95%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-container {
        flex-direction: column;
    }

    .contact-info,
    .contact-form {
        padding: 10px;
    }
}

/* Fin Contact */
/* Footer */
.footer {
    background-color: #462709; /* Couleur de fond marron */
    color: #fff; /* Texte en blanc */
    padding: 40px 20px;
    font-family: 'Montserrat', sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between; /* Espace entre les colonnes */
    max-width: 1200px;
    margin: 0 auto;
    flex-wrap: wrap; /* Permet de passer à la ligne sur petits écrans */
}

.footer-info,
.footer-links,
.footer-social {
    flex: 1; /* Chaque colonne prend une part égale */
    min-width: 250px; /* Largeur minimale pour chaque colonne */
    margin: 10px; /* Espacement autour des colonnes */
}

.footer-info h3,
.footer-links h3,
.footer-social h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #f0e6d2; /* Couleur claire pour les titres */
}

.footer-info p,
.footer-links a {
    margin: 5px 0; /* Espacement entre les paragraphes */
    font-size: 1rem;
}

.footer-links ul {
    list-style: none; /* Supprime les puces */
    padding: 0; /* Supprime le padding */
}

.footer-links li {
    margin-bottom: 10px; /* Espacement entre les liens */
}

.footer-links a {
    color: #f0e6d2; /* Couleur claire pour les liens */
    text-decoration: none; /* Supprime le soulignement */
    transition: color 0.3s ease; /* Transition pour le changement de couleur */
}

.footer-links a:hover {
    color: #fff; /* Couleur des liens au survol */
}

.footer-social ul {
    list-style: none; /* Supprime les puces */
    padding: 0; /* Supprime le padding */
}

.footer-social li {
    display: inline; /* Affiche les icônes en ligne */
    margin-right: 15px; /* Espacement entre les icônes */
}

.footer-social a {
    color: #f0e6d2; /* Couleur claire pour les liens */
    font-size: 1.5rem; /* Taille des icônes */
    transition: color 0.3s ease; /* Transition pour le changement de couleur */
}

.footer-social a:hover {
    color: #fff; /* Couleur des icônes au survol */
}

.footer-bottom {
    text-align: center; /* Centre le texte */
    margin-top: 20px; /* Espacement au-dessus */
    font-size: 0.9rem; /* Taille de police pour le texte du bas */
}

.footer-bottom p {
    margin: 0; /* Supprime la marge par défaut */
}

.footer-bottom a {
    color:#FFF;
    text-decoration: none;
}
/* Fin Footer */
/* Hero Massage */

.hero-massage {
    height: 70vh; /* Hauteur réduite par rapport au hero principal */
    background: #462709;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding:80px 0;
}

.hero-galerie {
    height:40vh !important;
}

.cta-massages {
    margin-top:50px !important;
}

.hero-massage-content {
    text-align: center;
    color: #fff;
    z-index: 1;
    padding: 20px;
}

.hero-massage h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero-massage p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-massage-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.hero-massage-icons .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding:0 15px;
}

.hero-massage-icons .icon i {
    font-size: 2.5rem;
    color: #ccb797;
    margin-bottom: 10px;
}

.hero-massage-icons .icon span {
    font-size: 1.3rem;
    font-weight: 500;
}

@media screen and (max-width: 768px) {
    .hero-massage {
        height: auto;
    }

    .hero-galerie {
        height:30vh !important;
    }

    .hero-massage h1 {
        font-size: 2.5rem;
    }

    .hero-massage p {
        font-size: 1rem;
    }

    .hero-massage-icons {
        flex-direction: column;
        gap: 20px;
    }
}

/* Fin Hero Massage */
/* Massages */

.massage-teams {
    background-color: #f9f9f9;
    padding: 60px 0;
    position: relative; /* Nécessaire pour positionner les pseudo-éléments */
    overflow: hidden; /* Empêche tout débordement */
}

.massage-teams::before,
.massage-teams::after {
    content: '';
    position: absolute;
    width: 120px; /* Ajustez la taille selon vos besoins */
    height: 120px; /* Ajustez la taille selon vos besoins */
    border-radius: 50%; /* Pour créer un cercle */
    background-color: rgba(204, 183, 151, 0.3); /* Couleur dorée avec opacité */
    z-index: 0; /* Derrière le contenu */
}

.massage-teams::before {
    top: -30px; /* Positionnez le cercle en haut à gauche */
    left: -30px; /* Positionnez le cercle en haut à gauche */
}

.massage-teams::after {
    bottom: -30px; /* Positionnez le cercle en bas à droite */
    right: -30px; /* Positionnez le cercle en bas à droite */
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.massage-teams h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.section-description {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.team-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center; /* Changez à flex-start pour gérer manuellement l'alignement */
    align-items: flex-start;
    gap: 30px;
}

.team-card {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    width: calc(40% - 15px);
    margin-bottom: 30px;
}

/* Ajout d'une règle pour centrer le dernier élément si impair */
.team-container .team-card:last-child {
    margin-left: auto; /* Ajoute une marge à gauche pour pousser le dernier élément vers le centre */
    margin-right: auto; /* Ajoute une marge à droite pour centrer */
}

.team-card h3 {
    color: #ccb797;
    font-size: 1.8rem;
    margin-bottom: 20px;
    border-bottom: 2px solid #ccb797;
    padding-bottom: 10px;
}

.massage-list {
    list-style-type: none;
    padding: 0;
}

.massage-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.massage-list li:last-child {
    border-bottom: none;
}

.massage-name {
    display: block;
    font-weight: 700;
    font-size: 1.2rem;
    color: #333;
    margin-bottom: 5px;
}

.massage-description {
    display: block;
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 5px;
}

.massage-duration, .massage-price {
    display: inline-block;
    font-size: 1rem;
    color: #ccb797;
    font-weight: 600;
}

.massage-duration {
    margin-right: 15px;
}

@media (max-width: 768px) {
    .team-card {
        width: 100%;
    }
}

/* Fin Massages */
/* Hero Formations */

.hero-formations {
    height: 70vh; /* Un peu plus haut que hero-massage */
    background: #462709; /* Changez l'image de fond */
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.cta-formations {
    margin-top:50px !important;
}

.hero-formations-content {
    text-align: center;
    color: #fff;
    z-index: 2;
    position: relative;
    padding: 20px;
}

.hero-formations h1 {
    font-size: 4rem;
    margin-bottom: 15px;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-formations p {
    font-size: 1.5rem;
    margin-bottom: 50px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-formations-icons {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.hero-formations-icons .icon {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-formations-icons .icon i {
    font-size: 2.5rem;
    color: #ccb797;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.hero-formations-icons .icon span {
    font-size: 1.3rem;
    font-weight: 500;
}

.hero-formations-icons .icon:hover i {
    transform: scale(1.1);
}

@media screen and (max-width: 768px) {
    .hero-formations {
        padding:100px 0;
        height: auto;
    }

    .hero-formations h1 {
        font-size: 3rem;
    }

    .hero-formations p {
        font-size: 1.1rem;
    }

    .hero-formations-icons {
        flex-direction: column;
        gap: 20px;
    }
}

/* Fin Hero Formations */
/* Formations */

.formations {
    background-color: #f9f9f9;
    padding: 60px 0;
}

.formations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.formations h2 {
    text-align: center;
    color: #333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.formations-intro {
    text-align: center;
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
}

.formations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Deux colonnes */
    gap: 30px;
    max-width: 900px; /* Ajustez selon vos besoins */
    margin: 0 auto;
}

.formation-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 30px;
    position: relative;
}

/* Style pour le troisième élément (centré en bas) */
.formation-item:nth-child(3) {
    grid-column: 1 / -1; /* S'étend sur toutes les colonnes */
    justify-self: center; /* Centre l'élément horizontalement */
    max-width: 450px; /* Ajustez la largeur selon vos besoins */
}

/* Media query pour le responsive */
@media (max-width: 768px) {
    .formations-grid {
        grid-template-columns: 1fr; /* Une seule colonne sur mobile */
    }

    .formation-item:nth-child(3) {
        max-width: 100%; /* Pleine largeur sur mobile */
    }
}

.formation-item h3 {
    color: #ccb797;
    font-size: 1.8rem;
    margin-bottom: 15px;
    border-bottom: 2px solid #ccb797;
    padding-bottom: 10px;
}

.formation-details {
    margin-bottom: 15px;
}

.formation-name {
    display: block;
    font-weight: 700;
    font-size: 1.1rem;
    color: #333;
}

.formation-price {
    display: block;
    color: #ccb797;
    font-weight: 600;
}

.formation-note {
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
    margin-top: 5px;
}

@media (max-width: 768px) {
    .formations-grid {
        grid-template-columns: 1fr; /* Une colonne sur mobile */
    }
}

/* Fin Formations */

/* Galerie */

.video-gallery {
    background-color: #f9f9f9;
    padding: 60px 0;
    text-align: center;
}

.video-gallery h2 {
    color: #ccb797;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.video-gallery > p {
    color: #555;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.video-container {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.video-item {
    max-width: 500px;
    width: 100%;
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    height: 0;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.video-item h3 {
    color: #333;
    font-size: 1.5rem;
    margin: 20px 0 10px;
}

.video-item p {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
}

@media (max-width: 768px) {
    .video-container {
        flex-direction: column;
        align-items: center;
    }

    .video-item {
        max-width: 100%;
    }
}

/* Equipe */

.teams-presentation {
    background-color: #f9f9f9; /* Fond légèrement coloré */
    padding: 80px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.teams-presentation h2 {
    text-align: center;
    color: #333333;
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.teams-presentation > p {
    text-align: center;
    color: #666666;
    font-size: 1.1rem;
    max-width: 800px;
    margin: 0 auto 40px;
}

.subtitle-teams {
    text-align: center;
    margin-bottom:80px;
}

.team-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px; /* Espace entre les cartes */
}

.team-card {
    background-color: #ffffff; /* Fond blanc pour les cartes */
    border-radius: 15px; /* Coins arrondis */
    padding: 30px; /* Espacement interne */
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1); /* Ombre douce */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Transition pour effet de survol */
    flex-basis: calc(45% - 20px); /* Largeur de la carte avec espace pour le gap */
}

.team-card:hover {
    transform: translateY(-5px); /* Légère élévation lors du survol */
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2); /* Ombre plus prononcée au survol */
}

.team-card h3 {
    color: #ccb797; /* Couleur d'accent pour le titre */
    font-size: 1.8rem; /* Taille du titre */
    margin-bottom: 15px; /* Marge sous le titre */
}

.team-card p {
    color: #555555; /* Couleur du texte */
    font-size: 1rem; /* Taille du texte */
    line-height: 1.6; /* Hauteur de ligne pour lisibilité */
}

/* Responsive Design */
@media (max-width: 768px) {
    .team-card {
        flex-basis: calc(100% - 20px); /* Pleine largeur sur petits écrans */
    }
}

/* Mentions Légales */

.mentions-legales {
    padding: 60px 20px;
    background-color: #f9f9f9;
    color: #333;
    position: relative;
    overflow: hidden;
}

.mentions-legales::before, .mentions-legales::after {
    content: '';
    position: absolute;
    width: 100px;
    height: 100px;
    background-color: #ccb797;
    border-radius: 50%;
    opacity: 0.2;
    z-index: 1;
}

.mentions-legales::before {
    top: -50px;
    left: -50px;
}

.mentions-legales::after {
    bottom: -50px;
    right: -50px;
}

.mentions-legales .decorative-circle {
    position: absolute;
    background-color: #ccb797;
    border-radius: 50%;
    opacity: 0.3;
    z-index: 1;
}

.mentions-legales .decorative-circle.circle1 {
    width: 30px;
    height: 30px;
    top: 20%;
    left: 10%;
}

.mentions-legales .decorative-circle.circle2 {
    width: 40px;
    height: 40px;
    top: 50%;
    right: 15%;
}

.mentions-legales .decorative-circle.circle3 {
    width: 25px;
    height: 25px;
    bottom: 20%;
    left: 30%;
}

.mentions-container {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.mentions-legales h2 {
    font-size: 2rem;
    color: #ccb797;
    margin-bottom: 20px;
    font-weight: 700;
    text-align: center;
}

.mentions-content {
    background-color: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.mentions-legales h3 {
    font-size: 1.3rem;
    color: #ccb797;
    margin-top: 20px;
    margin-bottom: 10px;
}

.mentions-legales p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin-bottom: 10px;
}

.mentions-legales a {
    color: #ccb797;
    text-decoration: none;
    transition: color 0.3s ease;
}

.mentions-legales a:hover {
    color: #b39b7a;
}

@media (max-width: 768px) {
    .mentions-legales {
        padding: 40px 15px;
    }

    .mentions-content {
        padding: 20px;
    }
}