/*=========================== 
Google Font Link
=============================*/
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@300..700&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');

/*=========================== 
CSS Reset
=============================*/
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Raleway', sans-serif;
}
body{
    color: #000;
    overflow-x: hidden;
}
section{
    padding: 60px 0;
}

h1 {
    font-size: clamp(32px, 5vw, 60px); /* Min 32px, adaptatif, max 60px */
}

h2 {
    font-size: clamp(24px, 4vw, 36px);
}

h3 {
    font-size: clamp(18px, 3vw, 25px);
}

h4 {
    font-size: clamp(16px, 2.5vw, 20px);
}

h5 {
    font-size: clamp(14px, 2vw, 18px);
}

h6 {
    font-size: clamp(12px, 1.8vw, 16px);
}

h2,h3,h4,h5{
    color: black;
}

@media (max-width: 768px) { 
    h1 { font-size: 40px; }
    h2 { font-size: 28px; }
    h3 { font-size: 20px; }
}

@media (max-width: 480px) {
    h1 { font-size: 32px; }
    h2 { font-size: 24px; }
    h3 { font-size: 18px; }
    p { font-size: 14px; } /* Réduire la taille du texte sur mobile */
}
p{
    font-family: 'Quicksand';
}
/*=========================== 
Reusable Classes
=============================*/

/* Colors */
:root{
    --deep-pink: #DD7B84;
    ---light: #DDC994;
}
/* Logo */
.logo{
    text-decoration: none;
    color: white;
    font-size: 2rem;
}
.logo:hover{
    color: white;
}


/* Social Links */
.social-links ul{
    list-style: none;
}
.social-links ul li{
    border-radius: 5px;
    background-color: var(--deep-pink);
    padding: 20px;
    cursor: pointer;
    margin: 0 5px;
    position: relative;
}
.social-links ul li a .icon{
    text-decoration: none;
    font-size: 20px;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    color: white;
}
.social-links ul li:hover{
    background-color: var(--deep-pink);
}
.social-links ul li:hover .icon{
    color: var(---light);
}

/* Overlay */
.overlay{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.5);
}

.overlay2{
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: rgba(168, 168, 168, 0.5);
}

.button-group {
    display: flex;
    gap: 15px; /* Espacement entre les boutons */
    flex-wrap: wrap; /* Permet aux boutons de passer en colonne si l'écran est trop petit */
    margin-top: 20px; /* Espacement avec le texte */
}



.button-1 a{
    font-size: clamp(14px, 2vw, 18px); /* Taille de texte responsive */
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 28px); /* Padding adaptatif */
    border: 2px solid var(--deep-pink);
    border-radius: 30px;
    color: white;
    background-color: var(--deep-pink);
    font-weight: 500;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.button-2 a{
    font-size: clamp(14px, 2vw, 18px); /* Taille de texte responsive */
    padding: clamp(10px, 1.5vw, 14px) clamp(20px, 3vw, 28px); /* Padding adaptatif */
    border: 2px solid #DDC994;
    border-radius: 30px;
    color: white;
    background-color: #DDC994;
    font-weight: 500;
    display: inline-block;
    text-align: center;
    transition: all 0.3s ease-in-out;
}

.button-1 a:hover{
    background-color: transparent;
    color: var(--deep-pink)!important;
    border-color: var(--deep-pink)!important;
}

.button-2 a:hover{
    background-color: transparent;
    color: #DDC994 !important;
    border-color: #DDC994 !important;
}

/* Responsive : les boutons passent en colonne sur petit écran */
@media (max-width: 480px) {
    .button-group {
        flex-direction: column;
        gap: 10px;
    }

    .button-1, .button-2 {
        max-width: 100%;
    }
}


/* Section Title */
.section-title h2{
    font-weight: 700;
    padding-bottom: 40px;
    text-transform: uppercase;
}
.section-title p{
    font-size: 14px;
    font-weight: 500;
    padding: 0;
    line-height: 1px;
    margin: 0 0 5px 0;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #aaa;
}
.section-title p::after{
    content: "";
    width: 120px;
    height: 1px;
    display: inline-block;
    background: var(--deep-pink);
    margin: 4px 10px;
}

/* Card */
.card{
    border: none;
}

/*=========================== 
Navbar
=============================*/
.navbar{
    background-color: #fff;
    width: 100vw;

}
.navbar-nav .nav-item{
    margin: 5px 0.75rem;
}
.navbar-nav .nav-item .nav-link{
    font-size: 16px;
    text-decoration: none;
    color: #000;
    font-weight: 700;
}
.navbar-nav .nav-item .nav-link:hover{
    color: var(---light);
}
.navbar .menu-icon{
    color: #000;
    font-size: 2.25rem;
}
.navbar-collapse.show .social-links{
    padding-bottom: 1rem;
}

/*=========================== 
Home
=============================*/
#home {
    min-height: 55vh;
    background-image: url(../images/home.png);
    background-attachment: scroll; /* ou fixed selon le rendu souhaité */
    background-repeat: no-repeat;
    background-color: #FDEBEE;
    background-position: center;
    background-size:  100%; /* Ajuste selon le rendu */
}
#home .home-content{
    position: relative;
    z-index: 2;
    padding-top: 22vh;
}
#home .home-content h1{
    color: white;
    font-weight: 700;
    text-shadow: 0px 0px black;
}
#home .home-content h4{
    color: #eee;
    font-weight: 500;
    font-size: 24px;
    text-shadow: 0px 0px black;
}

/*=========================== 
About
=============================*/
#about .heading h3{
    font-weight: bold;
    color: #DD7B84;
    text-align: center;
}
#about .sub-heading {
    font-style: italic;
}
#about .check-list{
    list-style: none;
    margin: 20px 0;
}
#about .check-list li p{
    margin-bottom: 5px;
}
#about .check-list li p .icon{
    margin-right: 5px;
    font-size: 25px;
    color: var(--deep-pink);
    transform: translateY(5px);
}

#formation .heading h3{
    font-weight: bold;
    color: #DD7B84;
    text-align: center;
}
#formation .sub-heading {
    font-style: italic;
}
#formation .check-list{
    list-style: none;
    margin: 20px 0;
}
#formation .check-list li p{
    margin-bottom: 5px;
}
#formation .check-list li p .icon{
    margin-right: 5px;
    font-size: 25px;
    color: var(--deep-pink);
    transform: translateY(5px);
}

#reiki .heading h3{
    font-weight: bold;
    color: #DD7B84;
    text-align: center;
}
#reiki .sub-heading {
    font-style: italic;
}
#reiki .check-list{
    list-style: none;
    margin: 20px 0;
}
#reiki .check-list li p{
    margin-bottom: 5px;
}
#reiki .check-list li p .icon{
    margin-right: 5px;
    font-size: 25px;
    color: var(--deep-pink);
    transform: translateY(5px);
}

#quote {
    background-color: #F8F6F0;
    height: 5vh; /* Ajuste la hauteur selon ton besoin */
}
#quote p{
    text-align: center;
    padding-top: 2vh;
    margin-top: 0.5vh;
}

#pre-about h4{
    text-align: center;
    font-weight: bold;
    margin-top: 1vh;
}

#section1{
    background-color: #FFEAEC;
}
#section2{
    background-color: #F8F6F0;
}


#valeurs{
    background-color: #FFEAEC;
}

#tarifs{
    background-color: #F8F6F0;
}


#tarifs .heading h3{
    font-weight: bold;
    color: #DD7B84;
    text-align: center;
}
#particulier2{
    background-color: #F8F6F0;
}

#soins{
    background-color: #F8F6F0;
}

#comanimale{
    background-color: #F8F6F0;
}
#comanimale .heading h3{
    font-weight: bold;
    color: #DD7B84;
    text-align: center;
}


#qui .heading h3{
    font-weight: bold;
    color: #DD7B84;
    text-align: center;
}

#lelien .heading h3{
    font-weight: bold;
    color: #DD7B84;
    text-align: center;
}

#tarifanimaux{
    background-color: #F8F6F0;
}
#tarifanimaux .heading h3{
    font-weight: bold;
    color: #DD7B84;
    text-align: center;
}

/*=========================== 
Achievements
=============================*/
#achievements{
    background-image: url(../images/bandeauxmateriel.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding: 80px 0 60px 0;
}
#achievements .title{
    position: relative;
    z-index: 2;
    margin-bottom: 30px; 
}
#achievements .title h3{
    color: #DD7B84;
    font-weight: bold;
}
#achievements .title p{
    color: #f3f3f3;
}
.achievement-box{
    position: relative;
    z-index: 2;
    margin-top: 20px;
}
.achievement-box h2{
    color: var(---light);
    font-size: 40px;
    font-weight: 600;
}

#particulier{
    background-image: url(../images/particulierbandeau.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding: 80px 0 60px 0;
}
#particulier .title{
    position: relative;
    z-index: 2;
    margin-bottom: 30px; 
}
#particulier .title h3{
    color: #DD7B84;
    font-weight: bold;
}
#particulier .title h4{
    color: #000;
    font-weight: bold;
}
#particulier p{
    color: #000;
    margin-top: 3vh;
}

#arttherapiereiki{
    background-image: url(../images/arttherapiereiki.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding: 80px 0 60px 0;
}
#arttherapiereiki .title{
    position: relative;
    z-index: 2;
    margin-bottom: 30px; 
}
#arttherapiereiki .title h3{
    color: #DD7B84;
    font-weight: bold;
}
#arttherapiereiki .title h4{
    color: #000;
    font-weight: bold;
}
#arttherapiereiki p{
    color: #000;
    text-align: center;
    margin-top: 3vh;
}

#pourqui{
    background-image: url(../images/patte.jpg);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding: 80px 0 60px 0;
}
#pourqui .title{
    position: relative;
    z-index: 2;
    margin-bottom: 30px; 
}
#pourqui .title h3{
    color: #DD7B84;
    font-weight: bold;
}
#pourqui .title h4{
    color: #000;
    font-weight: bold;
}
#pourqui p{
    color: #000;
    text-align: center;
    margin-top: 3vh;
}


#monapproche{
    background-image: url(../images/approche.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding: 80px 0 60px 0;
}
#monapproche .title{
    position: relative;
    z-index: 2;
    margin-bottom: 30px; 
}
#monapproche .title h3{
    color: #DD7B84;
    font-weight: bold;
}
#monapproche .title h4{
    color: #000;
    font-weight: bold;
}
#monapproche p{
    color: #000;
    text-align: center;
    margin-top: 3vh;
    font-style: italic;
}


#entreprise{
    background-image: url(../images/entreprise.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding: 80px 0 60px 0;
}
#entreprise .title{
    position: relative;
    z-index: 2;
    margin-bottom: 30px; 
}
#entreprise .title h3{
    color: #DD7B84;
    font-weight: bold;
}
#entreprise .title h4{
    color: #000;
    font-weight: bold;
}
#entreprise p{
    color: #000;
    text-align: center;
    margin-top: 3vh;
}



#soins{
    background-image: url(../images/soins.png);
    background-position: center;
    background-size: cover;
    background-attachment: fixed;
    background-repeat: no-repeat;
    color: white;
    position: relative;
    padding: 80px 0 60px 0;
}
#soins .title{
    position: relative;
    z-index: 2;
    margin-bottom: 30px; 
}
#soins .title h3{
    color: #DD7B84;
    font-weight: bold;
}
#soins .title h4{
    color: #000;
    font-weight: bold;
}
#soins p{
    color: #000;
    text-align: center;
    margin-top: 3vh;
}

/*=========================== 
Services
=============================*/
.service-card {
    padding: 1rem 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
    height: 100%;
}

.service-card .card-title{
    font-weight: bold;
    color:#DD7B84;

}
.service-card .card-text{
    font-size: 15px;
}

.service-card .card-quote{
    font-size: 15px;
    font-style: italic;
}
.service-card:hover{
    transform: translateY(-3%);
    border-bottom-color: var(--deep-pink);
}
.service-card:hover .card-title{
    color: var(--deep-pink);
}


.service-card2{
    margin-bottom: 15px;
    padding: 1rem 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
    background-color: #DD7B84;
    border-radius: 30px;
    
}

.service-card2 .card-title2{
    font-weight: bold;
    color:#fff;
    font-size: 20px;

}
.service-card2:hover{
    transform: translateY(-3%);
    border-bottom-color: var(--deep-pink);
}
.service-card2:hover .card-title{
    color: var(--deep-pink);
}


.service-card3{
    margin-bottom: 15px;
    padding: 1rem 1rem;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
    background-color: #F8F6F0;
    border-top: 3px solid #DD7B84;
    height: 100%;
    
}

.service-card3 .card-title3{
    font-weight: bold;
    color:#DD7B84;

}
.service-card3 .card-text3{
    font-size: 15px;
}

.service-card3 .card-quote3{
    font-size: 15px;
    font-style: italic;
}

.service-card3:hover .card-title3{
    color: var(--deep-pink);
}


.service-card4{
    margin-bottom: 15px;
    padding: 1rem 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
    background-color: #DDC994;
    border-radius: 30px;
}

.service-card4 .card-title4{
    font-weight: bold;
    color:#fff;
    text-align: center;

}
.service-card4 .card-text4{
    font-size: 15px;
}

.service-card4 .card-quote4{
    font-size: 15px;
    font-style: italic;
}


.service-card5{
    margin-bottom: 15px;
    padding: 1rem 0;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease-in-out;
}

.service-card5 .card-title5{
    font-weight: bold;
    color: #000;
    text-align: center;
}
.service-card5 .card-text5{
    font-size: 15px;
}

.service-card5 .card-quote5{
    font-size: 15px;
    font-style: italic;
}

/*=========================== 
Pricing
=============================*/

.pricing-card{
    border-top: 5px solid var(--deep-pink);
    margin-bottom: 15px;
    padding: 1.5rem 3rem;
}
.pricing-card .card-title{
    font-size: 25px;
    font-weight: 500;
    margin-bottom: 40px;
}
.pricing-card .price-block h1{
    font-size: 50px;
    font-weight: 700;
    color: var(--deep-pink);
    margin: 0;
    margin-right: 1rem;
    position: relative;
}
.pricing-card .price-block h1 .currency{
    font-size: 20px;
    position: absolute;
    left: -20px;
    
}
.pricing-card .price-block h1 span{
    font-size: 15px;
    position: absolute;
    right: -65px;
    bottom: 10px;
}
.pricing-card ul{
    list-style: none;
    margin: 40px 0;
}
.pricing-card ul li{
    margin-bottom: 16px;
}
.pricing-card ul li.na{
    color: #ccc;
    text-decoration: line-through;
}
.pricing-card .button-1 a{
    color: var(--deep-pink);
}

/*=========================== 
Testimonials
=============================*/
#testimonials{
    background-image: url(/Images/Review-Bg-img.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    position: relative;
}
.review-box .img-wrapper{
    width: 6rem;
    margin-bottom: 20px;
}
.review-box .img-wrapper img{
    border-radius: 50%;
    border: 6px solid rgba(255, 255, 255, 0.15);
    margin: 0 auto;
}
.review-box h4{
    color: white;
    font-weight: 500;
}
.review-box span{
    color: #ddd;
    font-weight: 400;
    font-size: 15px;
    margin: 0 0 30px 0;
}
.review-box p{
    margin: 0 auto 75px auto;
    color: #eee;
    width: 65%;
    font-weight: 300;
}
.review-box p .icon{
    transform: translateY(-2px);
}

/*=========================== 
Team
=============================*/
#team{
    padding-bottom: 0;
    background-color: #f9f9f9;
}
#team .team-card{
    margin-bottom: 10px;
}
#team .team-card .member-img{
    position: relative;
}
#team .team-card .member-img .social-links{
    position: absolute;
    right: 0;
    top: 30px;
    transition: all 0.3s ease;
    opacity: 0;
}
#team .team-card .member-img .social-links ul li{
    padding: 15px;
    margin-bottom: 15px;
}
#team .team-card:hover .social-links{
    right: 10px;
    opacity: 1;
}
#team .team-card h5{
    font-weight: 700;
}
#team .team-card p{
    font-size: 14px;
}

/*=========================== 
Contact
=============================*/



/* Info Cards */
.info-card{
    padding: 28px 0;
    background: white;
}
.info-card .icon-box{
    display: inline-block;
    margin-bottom: 20px;
}
.info-card .icon-box .icon{
    color: var(--deep-pink);
    font-size: 35px;
}
.info-card h5{
    font-weight: 700;
    margin-bottom: 10px;
}
.info-card p{
    font-size: 15px;
    margin-bottom: 5px;
}

/* Form */
#contact form{
    padding: 30px;
    background-color: white;
    border: 1px solid #aaa;
}
#contact form .form-group{
    margin-bottom: 20px;
}
#contact form input,
#contact form textarea{
    box-shadow: none;
    font-size: 14px;
    border-radius: 4px;
}
#contact form input:focus,
#contact form textarea:focus{
    border: 1px solid black;
}
#contact form textarea{
    padding: 12px 15px;
    outline: none;
    height: 10rem;
}
#contact form button{
    outline: none;
    border: none;
    background-color: transparent;
}
#contact form button .button-2 a{
    border-radius: 5px;
}

/*=========================== 
Footer
=============================*/
/* Footer Top */
.footer-top{
    padding-top: 60px;
    padding-bottom: 10px;
    background-color: #FFEAEC;
    color: #000;
    font-size: 15px;
}
.footer-top .footer-box{
    margin-bottom: 15px;
    background-color: #FFEAEC;
    padding: 20px 0;
}
.footer-top .footer-box .logo{
    margin-bottom: 15px;
}

.footer-top .title{
    color: #000;
    margin-bottom: 20px;
}
.footer-links {
    text-align: center; /* Centre le bloc de liens */
}

.footer-links ul {
    display: flex;
    justify-content: center; /* Centre horizontalement */
    align-items: center;
    gap: 20px; /* Espace entre les liens */
    padding: 0;
    list-style: none;
    flex-wrap: wrap; /* Permet le retour à la ligne sur petits écrans */
}

.footer-links ul li {
    padding: 0;
}

.footer-links ul li .links {
    text-decoration: none;
    color: #000;
    font-weight: 400;
    font-size: 14px;
    transition: color 0.3s ease-in-out;
}

.footer-links ul li .links:hover {
    color: var(--deep-pink);
}
.footer-top .footer-news-letter form input{
    padding: 3px;
}
.footer-top .footer-news-letter form button{
    padding: 5px 10px;
    background-color: var(--deep-pink);
    color: white;
    border: none;
    border-radius: 2px;
}

/* Footer Bottom */
.footer-bottom{
    background-color: #FF97A0;
}

.footer-bottom p{
    font-size: 14px;
    font-weight: 500;
    color: #fff;
    font-weight: bold;
}

