
    :root {
        --white: #fff;
        --black: #000;
        --bg-color: #ede2dc;
        --bg-color-rgb: "237, 226, 220";
        --bg-color-2: #eabcac;
        --bg-color-rgb-2: "171, 59, 97";
        --primary-color: #849974;
        --secondary-color: #123d6a ;
        --text-color: #ede2dc;
        --primary-font: 'Poppins';
        --secondary-font: 'Abril Fatface';
    }

    .padding-top {
        padding-top: 120px;
    }
    .padding-bottom {
        padding-bottom: 120px;
    }
    a{
        text-decoration: none;
    }

    /* **************** header css ****************** */
    header {
        display: flex;
        flex-direction: column;
        justify-content: center; /* centre verticalement */
        align-items: center;    /* centre horizontalement */
        text-align: center;     /* pour les textes multi-lignes */
        padding: 30px;
        height: 100vh;
        background-position: center center;
        background-size: cover;
        background-repeat: no-repeat;
        background-image: url("/assets/image/fond_reiki.JPG");
        background-color: var(--secondary-color);
        color: #fff; /* assure que tout texte dans header est blanc */
    }
    .navbar-collapse{
        flex-grow: 0;
    }
    .navbar-toggler{
        border-color: var(--white);
    }
    .navbar-toggler-icon{
        filter: contrast(0.5);
        opacity: 1;
    }
    .navbar{
        height: 100%;
    }
    .navbar-brand img{
        width: 350px;
    }
    .navbar .navbar-nav .nav-link{
        color: var(--white);
        font-family: var(--primary-font);
        font-size: 16px;
        font-weight: 600;
        position: relative;
        padding: 5px 0;
    }
    .navbar .navbar-nav .nav-link::after{
        content: "";
        background-color: var(--primary-color);
        width: 0;
        position: absolute;
        height: 3px;
        top: 100%;
        left: 0;
        transition: all 0.35s;
    }
    .navbar .navbar-nav .nav-link.active{
        color: var(--primary-color);
    }
    .navbar .navbar-nav .nav-link:hover::after,
    .navbar .navbar-nav .nav-link.active::after{
        width: 100%;
    }
    .header-btn{
        text-decoration: none;
        font-family: var(--primary-font);
        background-color: var(--primary-color);
        display: inline-flex;;
        color: var(--white);
        align-items: center;
        gap: 10px;
        transition: all 0.35s;
        text-transform: capitalize;
        padding: 10px 20px;
    }
    .header-btn:hover{
        transform: scale(1.1);
    }
    h2.hello-text {
        color: #fff; 
        font-family: var(--secondary-font);
        z-index: 10;
        position: relative;
    }
      .titre-claire {
        background-color: var(--secondary-color); /* fond sombre */
        padding: 60px 20px;
        text-align: center;
    }
    


    /* tp01_main01_aboutit */
    .about-us .about-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
    }
    .about-us .about-img{
        position: relative;
        height: 550px;
        width: 80%;
        z-index: 1;
    }
    .about-us .about-img::after{
        position: absolute;
        content: "";
        z-index: -1;
        width: 100%;
        height: 100%;
        border: 5px solid;
        border-color: var(--primary-color);
        top: 30px;
        left: 30px;
    }

    .about-us .about-title{
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--primary-color);
        font-weight: 600;
    }
    .about-heading{
        font-size: 48px;
        font-family: var(--secondary-font);
        color: var(--secondary-color);
    }
    .about-para{
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--black);
        opacity: 0.8;
        margin: 0;
        padding: 20px 0;
    }
    .about-btn{
        display: inline-block;
        font-size: 18px;
        text-transform: capitalize;
        font-weight: 400;
        color: var(--white);
        background-color: var(--primary-color);
        font-family: var(--primary-font);
        padding: 10px 20px;
        transition: all 0.35s;
    }
    .about-btn:hover{
        transform: scale(1.1);
    }
    /* tp01_main02_aboutt */

        .cabinet {
            background-color: var(--bg-color-2);
            position: relative;
        }
        .cabinet-img{
            position: absolute;
            top: 0;
            width: 100%;
            height: 100%;
            z-index: 0;
            left: 0;
            right: 0;
            bottom: 0;
            mix-blend-mode: normal;
            display : none;
        }
        .cabinet-section{
            position: relative;
            z-index: 1;
        }

        .cabinte-heading {
            font-size: 48px;
            color: var(--text-color);
            font-family: var(--secondary-font);
            padding-bottom: 20px;
            margin-bottom: 60px;
            position: relative;
            width: fit-content;
        }

        .cabinte-para {
            color: var(--text-color);
            font-size: 18px;
            opacity: 0.8;
            font-family: var(--primary-font);
            margin: 40px 0px;
            text-align: justify;

        }

        .cabinte-heading::after {
            position: absolute;
            content: "";
            width: 30%;
            height: 4px;
            background-color: var(--text-color);
            top: 100%;
            right: 30px;
        }
    

    /* Section main16 - menu-section */
.menu-section {
    padding: 100px 0; /* espace au-dessus et au-dessous */
}

.menu-section .container {
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    padding: 0; /* optionnel si tu veux que l'image touche les bords */
}

.menu-img {
    height: 500px; /* hauteur fixe pour harmoniser image et texte */
    overflow: hidden;
}

.menu-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.menu-contant {
    display: flex;
    flex-direction: column;
    justify-content: center; /* centre verticalement le texte */
    padding: 20px; /* espace autour du texte */
    height: 500px; /* même hauteur que l'image */
}

.menu-contant h2 {
    font-family: var(--secondary-font);
    color: var(--secondary-color);
    font-size: 40px;
    margin-bottom: 20px;
}

.menu-contant .reserve-day {
    font-family: var(--primary-font);
    font-size: 18px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.menu-contant .header-btn {
    display: inline-block; /* ne prend plus toute la largeur */
    font-family: var(--primary-font);
    background-color: var(--primary-color);
    color: var(--white);
    text-decoration: none;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    text-transform: capitalize;
    transition: all 0.35s;
}

.menu-contant .header-btn:hover {
    transform: scale(1.1);
}

    
    /* tp01_main04_allt1 */

    .panel {
        background-color: var(--bg-color);
    }

    .panel-heading {
        text-align: end;
        position: relative;
        padding-bottom: 15px;
        font-size: 48px;
        font-family: var(--secondary-font);
        color: var(--secondary-color);
    }

    .penal-sub-content {
        text-align: justify;
        padding-left: 50px;
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--black);
        opacity: 0.8;
        margin: 0;
    }

    .panel-heading::after {
        position: absolute;
        content: "";
        width: 20%;
        height: 3px;
        background-color: var(--black);
        top: 100%;
        right: 0;
    }
    
    /* tp01_main05_allt2 */

    .services-section p.services-heading{
            font-size: 30px;
        font-family: var(--secondary-font);
        color: var(--secondary-color);
        opacity: 1;
        padding-bottom: 30px;
    }
    .services-section p, .services-section ul li{
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--black);
        opacity: 0.8;
        margin: 0;
    }
    
    /* tp01_main08_alli2t */

    .details-conseils .details-heading {
        font-size: 30px;
        font-family: var(--secondary-font);
        color: var(--secondary-color);
        opacity: 1;
        margin-bottom: 20px;
    }
    .details-conseils .details-para, .details-conseils .details-para2 {
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--black);
        opacity: 0.8;
        margin: 5px 0;
    }
    .details-conseils .details-content:first-child{
        margin-bottom: 20px;
    }
    .details-imges{
        position: relative;
        height: 550px;
        width: 80%;
        z-index: 1;
        margin-right: 30px;
    }
    .details-imges img{
        height: 100%;
        object-fit: cover;
    }
    .details-imges::after {
        position: absolute;
        content: "";
        z-index: -1;
        width: 100%;
        height: 100%;
        border: 5px solid;
        border-color: var(--primary-color);
        top: 30px;
        left: 30px;
    }
    
    .team-img{
        width: 400px;
        height: 500px;
        position: relative;
    }
    .team-img::after{
        position: absolute;
        content: "";
        z-index: -1;
        width: 100%;
        height: 100%;
        border: 5px solid;
        border-color: var(--primary-color);
        top: 30px;
        left: 30px;
    }
    .team-details{
        width: 60%;
    }
    .team-img img{
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .team-heading {
        font-size: 30px;
        font-family: var(--secondary-font);
        color: var(--secondary-color);
        opacity: 1;
        margin: 0px;
    }
    .autor-para, .email-btn {
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--primary-color);
        font-weight: 600;
        padding: 0 0 20px;
        margin: 0;
    }
    .team-para{
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--black);
        opacity: 0.8;
        margin: 0 0 10px;
    }
    .btn-icon {
        display: flex;
        gap: 20px;
        align-items: center;
    }
    .email-btn{
        padding: 0;
        line-height: 1;
    }
    .btn-icon i{
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 24px;
        color: var(--primary-color);
        font-size: 24px;
    }
    
    /* tp01_main12_galery1i */

    .hotel-img img {
        width: 100%;
    }
    
    /* tp01_main14_adresstmap */

    .contect-details .contactinfo{
        background-color: var(--secondary-color);
        margin: 0;
        width: 100%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        padding: 100px 60px;
        height: 100%;
    }
    .contect-details iframe{
        height: 100%;
    }
    .contect-details .contact-heading{
        position: relative;
        font-size: 48px;
        font-family: var(--secondary-font);
        color: var(--white);
        width: fit-content;
        margin: 0 0 50px;
    }
    .contect-details .contact-heading::after{
        position: absolute;
        content: "";
        width: 50%;
        height: 2px;
        background-color: var(--white);
        top: 100%;
        left: 0px;
    }
    .contact-para, .contact-number{
        font-size: 18px;
        font-family: var(--primary-font);
        color: var(--white);
        opacity: 0.8;
        margin: 30px 0 10px;
    }
    .contact-number{
        margin: 10px 0 20px;
        display: flex;
        flex-direction: column;
        gap: 5px;
    }
    .contact-link{
        font-family: var(--primary-font);
        color: var(--primary-color);
        text-transform: capitalize;
    }
    
    /* tp01_main15_contactform */

    .newsletter .news-letter-heading{
        text-align: center;
        padding-bottom: 60px;
    }
    .news-letter-heading h6{
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--primary-color);
        font-weight: 600;
        padding: 0;
        margin: 0;
    }
    .news-letter-heading h2{
        font-size: 48px;
        font-family: var(--secondary-font);
        margin: 0;
        color: var(--secondary-color);
    }
    .contact-form{
        max-width: 767px;
        margin: 0 auto;
        width: 100%;
    }
    .contact-form input, .contact-form textarea{
        width: 100%;
        margin-bottom: 20px;
        font-size: 16px;
        color: var(--secondary-color);
        font-family: var(--primary-font);
        padding: 15px 22px;
        border: 1px solid rgb(var(--bg-color-rgb-2), 0.2);
        outline: none;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder{
        color: rgb(var(--bg-color-rgb-2), 0.4);
    }
    .contact-form button{
        font-family: var(--primary-font);
        background-color: var(--primary-color);
        color: var(--white);
        transition: all 0.35s;
        text-transform: capitalize;
        border: none;
        outline: none;
        padding: 10px 20px;
    }
    
    /* *********************** footer ************************** */
    footer{
        background-color: var(--bg-color-2);
        position: relative;
        padding: 50px 0 0;
    }
    footer .container{
        position: relative;
        z-index: 1;
    }
    .footer-logo-text{
        text-align: center;
        margin-bottom: 50px;
    }
    .footer-img{
        position: absolute;
        top: 0;
        object-fit: cover;
        width: 100%;
        opacity: 0.3;
        height: 100%;
        z-index: 0;
        left: 0;
        right: 0;
        bottom: 0;
        mix-blend-mode: normal;
    }
    .footer-inner{
        display: flex;
        align-items: center;
        gap: 100px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .footer-inner h6{
        font-size: 16px;
        font-family: var(--primary-font);
        color: var(--white);
        margin: 0;
    }
    .footer-inner h6 a{
        color: var(--white);
    }
    .bottom-footer{
        margin-top: 50px;
        border-top: 1px solid var(--white);
        padding: 15px 0;
    }
    .bottom-footer p{
        text-align: center;
        padding: 0;
        margin: 0;
        color: var(--white);
        font-size: 12px;
        font-family: var(--primary-font);
    }
    