/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

:root{

    --bg:#F8F7F3;
    --white:#ffffff;

    --green:#7D8D7B;
    --green-dark:#5F6F5C;

    --gold:#B89A64;

    --text:#2E2E2E;

    --shadow:0 20px 40px rgba(0,0,0,.08);

    --radius:22px;
}

body{

    background:var(--bg);

    color:var(--text);

    font-family:"Inter",sans-serif;

    line-height:1.7;

}


/* ===========================
   ANCRAGES
=========================== */

.tarifsHS {
    margin-top: 0;
    padding-top: 5px;
}

#tarifs,
#FORFAITEPILATIONS,
#ONGLERIE,
#CADEAU,
#REGARD,
#infos,
#avis,
#presentation,
#tarifsVisage,
#soin,
#Avis{

    scroll-margin-top:90px;
    padding-top:20px;
    padding-bottom:20px;

}


/* ===========================
   HERO
=========================== */

.hero p {
    margin-bottom: 0;
}

#presentation .btn {
    position: relative;
    top: -180px;
    margin-bottom: -200px;
}

.soin {
    padding-top: 0;
}

.choix-soins{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:15px;
    flex-wrap:wrap;
}

.btn-soin{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:14px 22px;

    background:#8b6250;
    color:#fff;

    text-decoration:none;

    border-radius:40px;

    transition:.3s;
}

.btn-soin:hover{
    background:#B89A64;
    transform:translateY(-3px);
}

.btn-soin .icone{
    width:22px;
    height:22px;
}

.soin div {
    display: flex;
    gap: 50px;
    justify-content: center;
	 flex-wrap: wrap;
}

#soin .icone img {
    width:22px;
    height:22px;
    vertical-align:middle;
    margin-left:8px;
}

#soin .btn-soin{
    padding:16px 12px;
}

.choix-soins {
    display:flex;
    gap:5px;
    justify-content:center;
}


/* Version téléphone */
@media(max-width:768px){

    #soin .texte {
        display: none;
    }

    #soin .icone {
        display: inline;
        font-size: 24px;
    }
	
	  #soin .icone img {
        width:45px;
        height:45px;
        margin:0;
    }
	
	#soin .btn-soin  {
        background:none;
        box-shadow:none;
        padding:0;
        border-radius:0;
    }



}

@media(max-width:768px){

    .choix-soins{
        gap:18px;
    }

    .btn-soin{

        background:none;
        padding:0;

        box-shadow:none;
        border-radius:0;
    }

    .btn-soin .texte{
        display:none;
    }

    .btn-soin .icone{
        width:42px;
        height:42px;
    }
	

}
@media(max-width:768px){

    #soin .icone img {
        width: 40px;
        height: 40px;
    }

}

.accroche {
    font-size: 26px;
    font-weight: 500;
    text-align: center;
    color: #f4e4c1;
    line-height: 1.5;
}
#presentation .accroche {
    font-size: 30px;
    font-weight: 600;
    text-align: center;
    color: #6b5138;
    line-height: 1.5;
 transform: translateY(-150px);
}
.hero{

    height:120vh;

    background:
        linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
        url(images/banner.jpg);

    background-size:cover;
    background-position:center;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

}


.overlay{

    color:white;

}
.hero .overlay {
    text-align: center;
    padding-top: 80px;
}


.floating-btn {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #8b6a4b;
    color: white;
    padding: 15px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: bold;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.25);
    transition: all 0.3s ease;
    z-index: 5;
}

.rdv-important {
    text-align: center;
    font-size: 18px;
    font-weight: 700;
    color: #6b5138;
    background: #f3e8d8;
    padding: 25px 30px;
    margin: 30px auto;
    max-width: 800px;
    border-radius: 15px;
    border: 2px solid #b89b72;
    letter-spacing: 0.5px;
}

.phone-link {
    color: #6b5138;
    font-weight: 700;
    text-decoration: none;
}

.phone-link:hover {
    color: #b89b72;
}

.floating-btn:hover {
    background: #a27b57;
    transform: scale(1.05);
}

.adresse {
    text-align: center;
    font-size: 18px;
    color: #6b5138;
    line-height: 1.6;
     margin: 5px auto 25px;
	 transform: translateX(20px);
	  margin-top: -10px;
}

.adresse a {
    color: #6b5138;
    text-decoration: none;
}

.adresse a:hover {
    color: #b89b72;
}

.overlay h1{

    font-family:"Cormorant Garamond",serif;

    font-size:72px;

    font-weight:500;

    letter-spacing:2px;

    margin-bottom:15px;

}


.overlay p{

    font-size:22px;

    max-width:700px;

    margin:auto;

    margin-bottom:40px;

}


/* ===========================
   BOUTONS
=========================== */

.btn{

    display:inline-block;

    padding:14px 30px;

    background:#8b6250;

    color:white;

    text-decoration:none;

    border-radius:50px;

    transition:.35s;

    box-shadow:#8b6250;

}

.btn:hover{

    background:var(--gold);

    transform:translateY(-4px);
	 margin-top: -15px;

}


/* ===========================
   SECTIONS
=========================== */

section{

    padding:90px 10%;

}


h2{

    font-family:"Cormorant Garamond",serif;

    font-size:48px;

    color:#8b6250;

    text-align:center;

    margin-bottom:45px;

}


/* ===========================
   PRESENTATION
=========================== */


.presentation{

    max-width:850px;

    margin:auto;

    text-align:center;

    font-size:18px;
	 padding-bottom: 0;
    margin-bottom: 0;

}
@media (max-width:768px){

.logo-title{
    font-size:42px;
    transform:none;
}

.logo-title span{
    transform:none;
    font-size:24px;
}

#presentation .btn{
    top:0;
    margin-top:30px;
}

#presentation .accroche{
    transform:none;
    font-size:22px;
}

.adresse{
    transform:none;
}

.hero{
     background:
        linear-gradient(rgba(0,0,0,.35),rgba(0,0,0,.35)),
        url(images/banner.jpg);

    background-size:cover;
    background-position:center;
}

.floating-btn{
    right:15px;
    left:15px;
    bottom:15px;
    text-align:center;
}

}
.logo-title {
    font-family: "Garamond", "Palatino Linotype", serif;
    font-size: 56px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #f4e4c1;
    text-align: center;
    margin-bottom: 0.95px;
	 transform: translateY(-100px);
}

.logo-title span {
    display: block;
    font-family: "Segoe Script", "Lucida Handwriting", cursive;
    font-size: 32px;
    color: #e8cfa3;
    margin-top: -10px;
    letter-spacing: 1px;
	 transform: translateX(170px);
   
}

/* ===========================
   CARTES
=========================== */

.cards{

    display:grid;

    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));

    gap:30px;

}


.card{

    background:white;

    border-radius:var(--radius);

    padding:35px;

    box-shadow:var(--shadow);

    transition:.35s;

}


.card:hover{

    transform:translateY(-8px);

}


.card h3{

    color:#8b6250;

    margin-bottom:25px;

    font-size:26px;

}


.card ul{

    list-style:none;

}


.card li{

    display:flex;

    justify-content:space-between;

    padding:14px 0;

    border-bottom:1px solid #ECECEC;

}


.card span{

    color:var(--gold);

    font-weight:600;

}


/* ===========================
   GALERIE
=========================== */

.gallery-container{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:20px;
    margin-top:40px;
}

.gallery-wrapper{
    width:900px;
    overflow:hidden;
}

.photos{
    display:flex;
    gap:20px;
    transition:transform .5s ease-in-out;
}

.photos img{
    width:calc((900px - 40px) / 3);
    height:320px;
    object-fit:cover;
    border-radius:22px;
    flex-shrink:0;
    box-shadow:0 10px 25px rgba(0,0,0,.12);
    transition:.3s;
}

.photos img:hover{
    transform:scale(1.03);
}

@media(max-width:768px){

    .gallery-container{
        display:block;
    }

    .gallery-wrapper{
        width:100%;
        overflow-x:auto;
        overflow-y:hidden;

        scrollbar-width:none;
        -webkit-overflow-scrolling:touch;
    }

    .gallery-wrapper::-webkit-scrollbar{
        display:none;
    }

    .photos{
        display:flex;
        flex-wrap:nowrap;
        gap:15px;
    }

    .photos img{
        flex:0 0 85%;
        width:85%;
        height:250px;
    }

    .gallery-btn{
        display:none;
    }

}

.gallery-btn{
    width:50px;
    height:50px;
    border:none;
    border-radius:50%;
    background:#7D8D7B;
    color:#fff;
    font-size:26px;
    cursor:pointer;
    transition:.3s;
}

.gallery-btn:hover{
    background:#B89A64;
    transform:scale(1.1);
}

@media(max-width:768px){

    .gallery-wrapper{
        width:300px;
    }

    .photos img{
        width:300px;
        height:250px;
    }

    .gallery-btn{
        width:42px;
        height:42px;
        font-size:20px;
    }

}

.avis > .btn{
    display:block;
    width:max-content;
    margin:0 auto 40px;
}

/* ===========================
   INFOS
=========================== */

.infos{

    text-align:center;

}


.info-box{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:60px;

    line-height:2;

}


/* ===========================
   FOOTER
=========================== */

footer{

    background:#253026;

    color:white;

    padding:35px;

    text-align:center;

}

/* ===========================
   TARIFS INTERACTIFS
=========================== */

.tarif-item{
    position:relative;
    cursor:pointer;
}


.description{

    max-height:0;
    overflow:hidden;

    opacity:0;

    font-size:14px;

    color:#666;

    margin-top:0;

    transition:.4s ease;

}




.tarif-item:hover .description{
    max-height:800px;
    opacity:1;
    margin-top:10px;
}


/* Version téléphone */
@media(max-width:768px){

    .tarif-item.open .description{
        max-height:800px;
        opacity:1;
        margin-top:10px;
    }

}

.fleche{
    display:none;
    font-size:14px;
    margin-left:8px;
}

.info-detail-fleche
{
    display:none;
    font-size:14px;
    margin-left:8px;
}



/* Affichage uniquement mobile */
@media(max-width:768px){

    .fleche{
        display:inline-block;
    }
	 .info-detail-fleche{
        display:inline-block;
    }

    .tarif-item.open .fleche{
        transform:rotate(180deg);
    }

}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    .avis {
        overflow:hidden;
    }

    .avis .cards{
        display:flex;
        flex-wrap:nowrap;
        overflow-x:auto;
        width:100%;

        gap:15px;

        scrollbar-width:none;
        -webkit-overflow-scrolling:touch;
    }

    .avis .cards::-webkit-scrollbar{
        display:none;
    }

    .avis .card{
        flex:0 0 85%;
        max-width:85%;
    }

}

@media(max-width:768px){

.overlay h1{

    font-size:46px;

}

.overlay p{

    font-size:18px;

}

#soin {
    position: relative;
    z-index: 10;
}

#soin .choix-soins {
    position: relative;
    z-index: 20;
}

#soin .btn-soin {
    position: relative;
    z-index: 30;
    pointer-events: auto;
}

h2{

    font-size:36px;

}

section{

    padding:70px 7%;

}

.hero{
    background-position:center top;
}

.logo-title{
    transform:none;
}



.logo-title span{
    transform:none;
}

#presentation .btn{
    top:0;
}

#presentation .accroche{
    transform:none;
    font-size:22px;
}

.adresse{
    transform:none;
}

}