
    :root{
        --white: #fff;
        --white-rgb: 255, 255, 255;
        --black: #000;
        --bg-color: #dc8188;
        --bg-color-rgb: 255, 249, 199;
        --primary-color: #703701;
        --primary-color-rgb: 255, 222, 214;
        --primary-hover-color: #703701;
        --secondry-color: #dc8188;
        --secondry-color-rgb: 255, 222, 214;
        --text-color: #000;
        --primary-font: 'Raleway', sans-serif;
        --secondry-font: 'DM Sans';
    }
    body{
        font-family: var(--secondry-font);
    }

    h1, h2, h3, h4, h5, h6, p, span, a{
        margin: 0;
        padding: 0;
    }

    a{
        text-decoration: none;
    }

    ul, li, ol{
        margin: 0;
        padding: 0;
        list-style: none;
    }

    .p-top{
        padding-top: 120px;
    }

    .p-bottom{
        padding-bottom: 120px;
    }
    .p-btn{
        padding: 20px 35px;
        font-weight: 500;
        border-radius: 99px;
        font-size: 20px;
        line-height: 1.2;
        font-family: var(--secondry-font);
        background-color: var(--primary-color);
        color: var(--bg-color);
        transition: all 0.35s;
        display: block;
    }
    .p-btn:hover{
        background-color: var(--primary-hover-color);
    }
    .s-btn{
        display: block;
        padding: 20px 35px;
        font-weight: 500;
        border-radius: 99px;
        font-size: 20px;
        line-height: 1.2;
        font-family: var(--secondry-font);
        border: 1px solid var(--primary-color);
        color: var(--primary-color);
        transition: all 0.35s;
    }
    .s-btn:hover{
        border-color: var(--primary-hover-color);
        color: var(--white);
        background-color: var(--primary-hover-color);
    }
    .main-title{
        text-align: center;
        margin-bottom: 50px;
    }
    .main-title span{
        font-size: 20px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: var(--secondry-font);
        color: rgba(var(--secondry-color-rgb), 0.3);
        line-height: 1;
    }
    .main-title h6{
        font-size: 60px;
        line-height: 1;
        font-family: var(--primary-font);
        color: var(--secondry-color);
        
    }

/* ================= START-HEADER ================= */
header{
    position: absolute;
    top: 0;
    width: 100%;
    left: 0;
}

/* (6) largeur + respiration globale */
.navbar .container{
    border-bottom: 1px solid rgba(var(--secondry-color-rgb), 0.2);
    max-width: 1280px;
    padding: 0 20px;
}

/* (3) structure propre nav + réseaux */
.navbar-collapse{
    display: flex;
    align-items: center;
    justify-content: center;
}

/* (2) espacement entre les liens */
.navbar-nav{
    gap: 34px;
}

/* (7) respiration verticale + finesse */
.navbar-nav .nav-item .nav-link{
    font-family: var(--secondry-font);
    color: var(--secondry-color);
    padding: 28px 0;
    font-size: 17px;
    font-weight: 400;
    opacity: 0.85;
    transition: all 0.35s;
}

/* (5) cohérence couleurs */
.navbar-nav .nav-item:hover .nav-link,
.navbar-nav .nav-item .nav-link.active{
    opacity: 1;
    color: #7f8471; /* gris/vert */
}


/* (3) séparation claire menu / réseaux */
.header-socials{
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: 30px;
}

/* boutons ronds premium */
.header-instagram,
.header-facebook{
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--secondry-color);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondry-color);
    transition: 0.3s;
}

.header-instagram:hover,
.header-facebook:hover{
    background-color: #7f8471;
    border-color: #7f8471;
    color: white;
}
/* ================= END-HEADER ================= */

/* ================= START-HERO-SECTION ================= */
.hero-section{
    padding: 130px 0 50px;
    min-height: 90dvh;
    background: linear-gradient(130deg, rgb(255 255 255) 0%, rgba(250, 239, 235, 1) 100%);
}

.hero-content{
    gap: 40px;
}

.hero-content .navbar-brand{
    display: block;
}

.hero-content .navbar-brand img{
    width: clamp(250px, 70vw, 650px);
    height: auto;
}

.hero-content .hero-btn{
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: center;
    margin-top: 0;
    flex-wrap: wrap;
}

/* ================= START-ABOUT-US-SECTION-1 ================= */
.about-img-inner{
    display: flex;
    padding-left: 20px;
}
.about-img{
    aspect-ratio: 1/1;
    width: 90%;
    position: relative;
    border-radius: 20px;
}
.about-img::after{
    width: 100%;
    height: 100%;
    content: "";
    left: -20px;
    bottom: -20px;
    border-radius: 20px;
    transition: all 0.35s;
    background-color: var(--secondry-color);
    position: absolute;
    z-index: -1;
    pointer-events: none;
}
.about-img:hover::after{
    left: 0;
    bottom: 0;
}
.about-img img{
    width: 100%;
    height: 100%;
    border-radius: 20px;
    object-fit: cover;
}
.aboutus-content{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.aboutus-content span{
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: var(--secondry-font);
    color: rgba(var(--secondry-color-rgb), 0.3);
    line-height: 1;
    padding-bottom: 10px;
}
.aboutus-content h2{
    font-size: 48px;
    line-height: 1;
    font-family: var(--primary-font);
    color: var(--secondry-color);
    padding-bottom: 20px;
}
.aboutus-content p{
    font-size: 18px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.3;
    padding-bottom: 15px;
}

/* ================= START-MENU-SECTION-1 ================= */
    /* tp03_main02_aboutt */

.cabinet-bg{
    background-image: url("../image/IMG_4655.jpeg");
    background-position: center 30%;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

.cabinet-inner{
    background-color: rgba(var(--white-rgb), 0.05);
    border-radius: 30px;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    padding-bottom: 30px;
    backdrop-filter: blur(10px);
    gap: 30px;
}


.cabinet-inner h2{
    color: var(--white);
}

.cabinet-inner.menu-contant h2{
    font-family: var(--primary-font);
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    text-align: center;
    position: relative;
    padding-bottom: 20px;
    margin-bottom: 30px;
}

.cabinet-inner.menu-contant h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 70px;
    height: 2px;
    background-color: var(--white);
    border-radius: 2px;
}

.cabinet-inner ul{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cabinet-inner ul li{
    color: var(--white);
    font-size: 18px;
    font-weight: 300;
    line-height: 1.5;
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

/* ================= START-SERVICES-SECTION ================= */
.services-section{
    background: linear-gradient(130deg, rgb(255 255 255) 0%, rgba(250, 239, 235, 1) 100%);
}
.services{
    background-color: var(--white);
    padding: 30px;
    text-align: center;
    border-radius: 15px;
    border-bottom: 3px solid var(--white);
    box-shadow: 0 10px 29px 0 rgba(68, 88, 144, 0.1);
    transition: all 0.35s;
    margin-bottom: 24px;
    min-height: 180px;
}
.services:hover{
    transform: translateY(-5px);
    /*border-color: var(--secondry-color);*/
    border-color: #69695d;

}
.services h4{
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: var(--secondry-color);
    font-family: var(--secondry-font);
}
.services p{
    font-family: var(--secondry-font);
    font-size: 15px;
    font-weight: 400;
    color: var(--text-color);
    line-height: 1.6;
}

.service-price{
    font-weight: 600;
    font-size: 20px;
}


.service-desc {
    display: block;
    font-size: 0.9rem;
    color: #69695d;
    margin: 8px 0 5px;
}

.services-subtitle{
    text-align: center;
    font-size: 18px;
    color: #69695d;
    margin-top: 8px;
    margin-bottom: 30px;
    line-height: 1.4;
}


    /* tp03_main04_allt1 */

    .about{
        display: flex;
        gap: 50px;
        padding: 50px;
        position: relative;
        background-color: var(--bg-color);
    }
    .about::after{
        display: none;

    }
    .about .about-title{
        width: 40%;
    }
    .about .about-content{
        width: 60%;
    }
    .about .about-title h6{
        position: relative;
        font-family: var(--primary-font);
        font-size: 50px;
        color: var(--primary-color);
        text-align: end;
    }
    .about .about-title h6::after{
        position: absolute;
        content: "";
        top: 100%;
        right: 0px;
        width: 100px;
        height: 2px;
        background-color: var(--secondry-color);
    }
    .about-content .about-content-dis{
        font-family: var(--secondry-font);
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 15px;
        font-weight: 400;
        color: var(--primary-color);
    }
    .about-content ul{
        padding-left: 20px;
    }
    .about-content ul, .about-content ul li{
        list-style: disc;
    }
    .about-content ul li p{
        font-family: var(--secondry-font);
        font-size: 16px;
        line-height: 1.2;
        margin-bottom: 15px;
        font-weight: 600;
        color: var(--secondry-color);
    }

    .about-2.about::after{
    display: none;
    }
    
    /* tp03_main05_allt2 */

    .services-details-bg{
        background-color: #ffded6;
    }
    .services-details-second .services-details-bg{
        background-color: var(--white);
    }
    .services-details-inner{
        padding: 0px !important;
        align-items: center;       /* ← centré horizontalement */
        text-align: center;        /* ← texte centré */
        gap: 30px;
    }
    .services-details-inner h2{
        font-family: var(--primary-font);
        font-size: 50px;
        color: var(--primary-color);
        padding-bottom: 20px;
    }
    .services-details-inner div{
        display: flex;
        flex-direction: column;
        gap: 15px;
    
        font-family: var(--secondry-font); /* ← Virsace Bigiora */
        font-size: 20px;                  /* ← plus adapté à une typo script */
        line-height: 1.4;
    
        color: #69695d;                   /* ← couleur demandée */
        max-width: 800px;                 /* ← évite que le texte soit trop large */
        margin: 0 auto;                   /* ← centrage propre */
    }
    .services-details-second .services-details-inner div{
        font-size: 28px;
    }

    .services-details-bg.custom-bg {
        background-color: #fff;
      }
    
    /* tp03_main08_alli2t */

    .about-img-inner{
        display: flex;
        padding-left: 20px;
    }
    .about-img{
        aspect-ratio: 1/1;
        width: 90%;
        position: relative;
        border-radius: 20px;
    }
    .about-img::after{
        width: 100%;
        height: 100%;
        content: "";
        left: -20px;
        bottom: -20px;
        border-radius: 20px;
        transition: all 0.35s;
        background-color: var(--secondry-color);
        position: absolute;
        z-index: -1;
        pointer-events: none;
    }
    .about-img:hover::after{
        left: 0;
        bottom: 0;
    }
    .about-img img{
        width: 100%;
        height: 100%;
        border-radius: 20px;
        object-fit: cover;
    }
    .aboutus-content{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
    }
    .aboutus-content span{
        font-size: 18px;
        font-weight: 700;
        text-transform: uppercase;
        letter-spacing: 2px;
        font-family: var(--secondry-font);
        color: rgba(var(--secondry-color-rgb), 0.3);
        line-height: 1;
        padding-bottom: 10px;
    }
    
    .aboutus-content h2{
        font-size: 48px;
        line-height: 1;
        font-family: var(--primary-font);
        /* color: var(--secondry-color); */
        color: #7f8471;
        padding-bottom: 20px;
    }
    .aboutus-content p{
        font-size: 18px;
        font-weight: 400;
        color: var(--text-color);
        line-height: 1.3;
        padding-bottom: 30px;
    }
    
    /* tp03_main12_galery1i */

    
    
/* ================= START-GALLERY-SECTION ================= */
.gallery-slider-inner{
    padding: 0 10px;
}
.gallery-slider .slick-track{
    display: flex !important;
    align-items: center;
}
.gallery-slider-inner a{
    overflow: hidden;
    display: flex;
    aspect-ratio: 1/1;
}
.gallery-slider-inner {
    display: flex !important;
    justify-content: center;
}
.gallery-slider-inner img{
    transition: all 0.8s;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.gallery-slider-inner:hover img{
    transform: scale(1.05);
}

.slick-prev,
.slick-next{
    z-index: 10;
    width: 50px;
    top: 50%;
    transform: translateY(-50%);
    height: 50px;
    border-radius: 50%;
    background-color: var(--secondry-color);
}
.slick-prev{
    left: 0;
}
.slick-next{
    right: 0;
}
.slick-prev:hover,.slick-prev:focus,
.slick-next:hover,.slick-next:focus{
    background-color: var(--secondry-color);
    opacity: 1;
}
.slick-prev::before,
.slick-next::before{
    display: none;
}
.slick-prev::after,
.slick-next::after{
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    background-image: url("../image/right-arrow.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 25px;
    height: 25px;
}
.slick-prev::after{
    transform: translate(-50%, -50%) rotate(180deg);
}


    /* tp03_main14_adresstmap */

    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .contact-info-inner {
        display: flex;
        gap: 20px;
    }
    .contact-info-icon {
        width: 64px;
        height: 64px;
        background-color: var(--primary-color);
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .contact-info-icon svg{
        width: 24px;
        height: 24px;
        color: var(--white);
    }
    .contact-info-detail{
        width: calc(100% - 84px);
    }
    .contact-info-detail h6 {
        font-size: 24px;
        font-weight: 600;
        color: var(--secondry-color);
    }
    .contact-info-detail div{
        display: flex;
        flex-direction: column;
        width: min(200px, 100%);
    }
    .contact-info-detail a {
        font-size: 16px;
        font-weight: 500;
        color: var(--text-color);
    }
    .contact-form-inner{
        padding: 50px;
        background-color: rgb(var(--primary-color-rgb), 0.1);
    }
    .contact-form input, .contact-form textarea{
        width: 100%;
        margin-bottom: 20px;
        font-size: 16px;
        color: var(--secondry-color);
        font-family: var(--secondry-font);
        padding: 15px 22px;
        background-color: var(--white);
        outline: none;
        border: none;
        outline: none;
    }
    .contact-form input::placeholder, .contact-form textarea::placeholder{
        color: rgb(var(--text-color), 0.2) !important;
    }
    .contact-form button{
        border: none;
        outline: none;
    }

    
    /* tp03_main15_contactform */

    .map{
    display: flex;
    }

    
    /* *********************** footer1 ************************** */
    .first-footer {
        /* Base background style similar to the image */
        background-color: #ffded6;
        color: #fff;
        text-align: center;
        padding: 10px 0;
    }
    

    /* Ensure the content is inside the container and centered on the page */
    .first-footer .container {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 15px; /* Add some side padding */
    }

    /* Top Row Layout (Logo Left, Contact Right) */
    .first-footer-top-row {
        display: flex;
        flex-direction: column;
        gap: 0px;
        justify-content: space-between; /* Pushes content to the sides */
        align-items: center; /* Vertically centers items */
        margin-bottom: 0px;
    }

    /* Logo Styling */
    .first-footer-logo {
        height: 260px; /* Adjust as needed */
        width: auto;
        display: block;
        margin: 0 auto 30px auto;
    }
  

    /* Contact/Email Styling */
    .first-footer-contact {
        text-align: right;
    }
    
    .first-footer-email {
        /* color: #3a322d; */
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
        transition: color 0.3s ease;
    }

    .first-footer-email:hover {
        color: #fff;
    }

    /* Divider Styling */
    .first-footer-divider {
        border: 0;
        height: 1px;
        background-color: rgba(112, 55, 1, 0.6); /* Thin, light gray line */
        width: 100%; /* Spans the full width of the content area */
        margin: 10px auto 30px auto; /* Reduced vertical margin */
    }

    /* Copyright Styling */
    .first-footer-copyright {
        color: rgba(112, 55, 1, 0.6);
        font-size: 0.8rem;
        margin: 0; /* Remove default margin */
    }

    /* Optional: If you use the navigation list (uncomment in HTML) */
    .first-footer-nav {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .first-footer-nav li {
        display: inline-block;
        margin-left: 15px;
    }

    .first-footer-nav a {
        color: rgba(255, 255, 255, 0.7);
        text-decoration: none;
        font-size: 0.9rem;
    }

    .first-footer-nav a:hover {
        color: #fff;
    }

    .footer-nav {
    list-style: none;
    padding: 0;
    margin: -10px 0 1rem 0;
    font-family: "Montserrat", sans-serif;
    }

    .footer-nav li {
    display: inline-block;
    margin: 0 10px;
    }

    .footer-nav a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s ease;
    }

    .footer-nav a:hover {
    color: var(--primary-color);
    }

    .footer-divider {
    border: 0;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    max-width: 400px;
    margin: 0 auto 1.5rem auto;
    }

    .footer-copyright {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    }

    @media (max-width: 767.98px) {
    .footer-nav li {
        display: block;
        margin: 10px 0;
    }}

    .footer-socials{
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        margin: 20px 0 25px;
    }
    
    .footer-social{
        width: 38px;
        height: 38px;
        border-radius: 50%;
        border: 1px solid var(--primary-color);
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--primary-color);
        transition: 0.3s;
    }
    

    .footer-social:hover{
        background-color: #7f8471;
        border-color: #7f8471;
        color: var(--white);
    }

 /* ===== Ajustements rectangles accompagnement ===== */

/* ===== Ajustements rectangles accompagnement ===== */

/* Couleur rose plus clair pour les 2 blocs */
#main04_allt1 .about,
#main04_allt1_feminite .about{
    background: linear-gradient(130deg, rgb(255 255 255) 0%, rgba(250, 239, 235, 1) 100%);
    align-items: center; /* équilibre vertical global */
}

/* Colonne titre : centrage vertical + alignement droite */
#main04_allt1 .about-title,
#main04_allt1_feminite .about-title{
    display: flex;
    align-items: center;       /* centre verticalement */
    justify-content: flex-end; /* pousse à droite */
}

/* Enlever le trait sous les titres */
#main04_allt1 .about-title h6::after,
#main04_allt1_feminite .about-title h6::after{
    display: none;
}

/* Style commun des titres */
#main04_allt1 .about-title h6,
#main04_allt1_feminite .about-title h6{
    text-align: right;
    line-height: 1.15;
}

/* Texte à droite : plus lisible */
#main04_allt1 .about-content .about-content-dis,
#main04_allt1_feminite .about-content .about-content-dis{
    font-size: 18px;
    line-height: 1.15;
}

#apropos h2 {
    color: var(--secondry-color); /* ton rose */
}


/* ================= BONNES ADRESSES ================= */

.bonnes-adresses-page{
    background: linear-gradient(130deg, rgb(255 255 255) 0%, rgba(250, 239, 235, 1) 100%);
}

.good-addresses-content{
    max-width: 850px;
    margin: 0 auto;
}

.country-section{
    margin-bottom: 55px;
}

.country-title{
    font-family: var(--primary-font);
    font-size: 42px;
    line-height: 1.1;
    color: var(--secondry-color);
    margin-bottom: 25px;
}

.area-section{
    margin-bottom: 35px;
    padding-left: 18px;
    border-left: 2px solid rgba(127, 132, 113, 0.35);
}

.area-title{
    font-family: var(--secondry-font);
    font-size: 24px;
    font-weight: 600;
    line-height: 1.25;
    color: #7f8471;
    margin-bottom: 14px;
}

.address-item{
    margin-bottom: 8px;
}

.address-title{
    font-family: var(--secondry-font);
    font-size: 21px;
    font-weight: 700;
    line-height: 1.25;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.address-item p{
    font-family: var(--secondry-font);
    font-size: 17px;
    line-height: 1.35;
    color: var(--text-color);
    margin-bottom: 3px;
}

.address-item a{
    color: var(--primary-color);
    text-decoration: none;
    transition: 0.3s;
}

.address-item a:hover{
    color: #7f8471;
}

@media (max-width: 767.98px){
    .country-title{
        font-size: 32px;
        margin-bottom: 20px;
    }

    .area-title{
        font-size: 21px;
    }

    .address-title{
        font-size: 19px;
    }

    .address-item p{
        font-size: 16px;
    }

    .area-section{
        padding-left: 14px;
    }
}


/* ================= ASTUCES SANTE ================= */

.astuces-page .row{
    --bs-gutter-x: 16px;
    --bs-gutter-y: 16px;
}

.astuces-page .services{
    margin-bottom: 0;
}

.astuces-category{
    margin-top: 60px;
}

.astuces-category:first-of-type{
    margin-top: 20px;
}

.astuces-category-title{
    font-family: var(--primary-font);
    font-size: 38px;
    line-height: 1.1;
    color: #7f8471;
    margin-bottom: 25px;
    text-align: center;
    position: relative;
}

.astuces-category-title::after{
    content: "";
    display: block;
    width: 70px;
    height: 2px;
    background-color: var(--secondry-color);
    margin: 12px auto 0;
}

@media (max-width: 767.98px){
    .astuces-page .row{
        --bs-gutter-x: 12px;
        --bs-gutter-y: 12px;
    }

    .astuces-category{
        margin-top: 45px;
    }

    .astuces-category-title{
        font-size: 30px;
        margin-bottom: 20px;
    }
}


/* ===== DROPDOWN ASTUCES ===== */

header{
    z-index: 1000;
}

.navbar,
.navbar .container,
.navbar-collapse{
    overflow: visible;
}

.astuces-dropdown{
    position: relative;
}

.navbar .dropdown-menu{
    border: none;
    border-radius: 12px;
    padding: 10px 0;
    min-width: 260px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
    background-color: var(--white);
    margin-top: 0;
}

.navbar .dropdown-item{
    display: block;
    padding: 10px 20px;
    font-size: 15px;
    color: var(--text-color);
    font-family: var(--secondry-font);
    transition: 0.3s;
}

.navbar .dropdown-item:hover{
    background-color: rgba(220, 129, 136, 0.1);
    color: var(--secondry-color);
}

.navbar .dropdown-toggle::after{
    margin-left: 8px;
    vertical-align: middle;
}

@media (min-width: 992px){
    .navbar .dropdown:hover .dropdown-menu{
        display: block;
    }
}

.saca-leta{
    position: absolute;
    width: 0;
    height: 0;
    overflow: hidden;
}