

/* header */
@media screen {
    
    header {
        width: 100%;
        height: clamp(80vh, 450px, 600px);
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        position: relative;
        background: darkorange;
        margin-top: 90px;
    }

    header::before {
        position: absolute;
        content: "";
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: #000000b5;
    }

    header img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    header div {
        position: absolute;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 15px;
    }

    header h5,
    header h6 {
        color: #fff;
        text-wrap: balance!important;
    }

    header h5 {
        font-size: clamp(40px, 13vw, 65px);
        font-weight: 700;
        margin-bottom: 0;
    }

    header h6 {
        font-size: clamp(30px, 10vw, 55px);
        font-weight: 300;
        margin: 2rem 0;
    }

    header div button {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 15px;
        width: fit-content;
        border: unset;
        background: #fff;
        border-radius: 50px;
        padding: .5rem 1.5rem;
        position: relative;
        transition: all ease-in-out .3s;
        text-decoration: none;
        color: #000;
    }

    header div button::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    header div button:hover {
        background: #50E6E6;
        box-shadow: 0 3px 0 #fff; /* Ombre réduite */
    }

    header div button svg {
        color: #000;
        width: 20px;
    }

    header div button span {
        font-size: 1.15rem;
        font-weight: 500;
    }
}

/* about */
@media screen {

    #about {
        background: #fff;
        padding: 8rem 0;
    }

    #about a {
        text-decoration: none;
        background: #000;
        padding: .5rem 1.5rem;
        display: flex;
        justify-content: center;
        align-items: center;
        width: fit-content;
        gap: 15px;
        margin-top: 1rem;
        border-radius: 25px;
        position: relative;
        transition: all .3s ease-in-out;
        color: #fff;
        box-sizing: border-box!important;
        width: 100%;
    }

    #about a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    #about a:hover {
        border: 2px solid #000;
        background: #f9f9f9;
        color: #000;
    }

    #about svg {
        width: 30px;
        /* color: #fff; */
        transition: all ease-in-out .3s;
    }

    #about span {
        font-size: 1.25rem;
        /* color: #fff; */
    }
    
    #about #images {
        height: 300px;
        width: 100%;
        position: relative;
    }

    @media (min-width:768px) {

        #about {
            background: #fff;
            padding: 12rem 0;
        }
        #about #images {
            height: 400px;
        }
    }

    

    #about #images img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        position: absolute;
        z-index: 1;
        border-radius: 25px;
    }

    #about #images img.special {
        width: 80%;
        height: 80%;
        top: -40%;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
        border: 10px solid #fff;
        border-radius: 25px;
    }

    @media (min-width:992px) {

        #about {
            background: #fff;
            padding: 5rem 0;
        }

        #about #images {
            height: 500px;
        }

        #about #images img.special {
            width: 55%;
            height: 50%;
            top: 50%;
            left: -15%;
            transform: translateY(-50%);
            z-index: 2;
            border: 10px solid #fff;
            border-radius: 25px;
        }

        #about a {
            width: 250px;
        }
    }

    #about .options .option {
        background: #031119;
        padding: 24px 16px;
        border-radius: 8px;
        text-align: center;
        box-shadow: 1px 1px 3px 0px rgb(0 0 0 / 17%);
    }

    #about .options .option .titre {
        width: fit-content;
        padding: 8px 16px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #1b262c;
        border-radius: 8px;
        color: var(--bleu);
        font-weight: 900;
        font-size: 2rem;
        margin: 0 auto .5rem;
    }

    #about .options .option span {
        font-size: 1.25rem;
        font-weight: 500;
        color: #fff;
    }
}



/* Services */
@media screen {

    #services {
        /* padding: 5rem 0; */
        background: #fff;
    }

    #services .service {
        background: #000;
        margin-bottom: 2rem;
        border-radius: 32px;
        border-bottom-left-radius: 32px;
        border-bottom-right-radius: 32px;
        cursor: pointer;
        transition: all .3s ease;
        /* box-shadow: 5px 5px 0px 0px rgba(0, 0, 0, 0.175); */
        /* box-shadow: 3px 2px 2px 2px rgb(131 125 125 / 33%); */
        cursor: not-allowed;
    }

    #services .service:hover {
        border-top: 5px solid #000;
        border-bottom: 5px solid #000;
        background: #fff;
        transform: translateY(-12px);
        box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.175);
    }

    #services .service:hover .icone { background: #FF4500; }
    #services .service:hover .icone svg { color: #fff; }

    #services .service:hover h6 {
        color: #000;
    }

    #services .service .icone {
        background: #fff;
        width: 85px;
        height: 85px;
        border-radius: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-bottom: 1rem;
    }

    #services .service .icone svg {
        width: 45px;
        color: #000;
    }

    #services .service h6 {
        font-size: 1.30rem;
        font-weight: 600;
        color: #fff;
        margin-bottom: 1rem;
    }

    /*  */

    #services .lignes {
        display: flex;
        flex-direction: column;
        justify-content: start;
    }

    #services .lignes .ligne {
        margin-bottom: .5rem;
        display: flex;
        align-items: center;
        gap: .5rem;
    }

    #services .lignes .ligne svg {
        width: 22px;
        color: #fff;
    }

    #services .service:hover .ligne svg {
        color: #000;
    }

    #services .lignes .ligne span {
        font-size: 1.15rem;
        font-weight: 400;
        margin-bottom: 0;
        text-wrap: balance;
        color: #fff;
    }

    #services .service:hover .ligne span {
        color: #000;
    }

    /*  */
    
    #services .service a {
        display: block;
        margin-top: .5rem;
        width: 100%;
        text-align: center;
        text-decoration: none;
        background: #fff;
        color: #000;
        font-size: 1.25rem;
        border-radius: 8px;
        padding: 4px;
        border: 2px solid transparent;
        transition: all .3s ease;
    }    

    #services .service:hover a {
        background: #000;
        color: #fff;
    }

    #services .service a:hover {
        border: 2px solid transparent;
        background: var(--bleu);
        color: #000;
    }
}


/* how */
@media screen {
    
    #how {
        background: #031119;
    }

    #how .header h4 {
        color: #fff;
        text-align: center;
        position: relative;
    }

    #how .header span {
        display: block;
        color: #ffffffaf;
        text-align: center;
        font-size: 1.25rem;
        margin-bottom: 2.5rem;
        position: relative;
        text-transform: uppercase;
    }

    #how .header span::before,
    #how .header span::after {
        content: "";
        width: 24px;
        height: 3px;
        display: inline-block;
        background: var(--bleu);
        margin: 4px 10px;
        border-radius: 50px;
    }

    #how .step {
        display: flex;
        align-items: center;
        margin-bottom: 3rem;
        flex-direction: column;
    }

    #how .step .icone {
        width: 88px;
        height: 88px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #1b262c;
        border-radius: 50px;
        border: 2px solid #ffffff9d;
        box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
        transition: all 0.3s ease-in-out;
    }

    #how .step .icone svg {
        width: 32px;
        color: #fff;
    }

    #how .step .desc {
        padding: 1.5rem;
        background:#1b262c;
        border-bottom: 5px solid var(--orange);
        border-radius: 16px;
        transition: all .2s ease-in-out;
    }

    #how .step .desc:hover {
        scale: 1.01;
    }


    @media (min-width:768px) {

        #how .step .desc {
            width: 80%;
        }

        #how .step {
            flex-direction: row;
        }

        #how .steps .step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
    }

    @media (min-width:992px) {

        #how .step .desc {
            width: 70%;
        }

        #how .step {
            flex-direction: row;
        }

        #how .steps .step:nth-child(even) {
            flex-direction: row-reverse;
        }
        
    }

    #how .step .desc span {
        font-size: 1.15rem;
        color: var(--bleu);
    }

    #how .step .desc h5 {
        color: #fff;
        margin-top: 1rem;
        font-size: 1.35rem;
        font-weight: 600;
    }

    #how .step .desc p {
        margin-bottom: 0;
        color: #fff;
        font-size: 1.15rem;
    }






}


/* Testimonials */
@media screen {

    #testimonials .gauche {
        text-align: center;
        margin-bottom: 2rem;
    }

    #testimonials .gauche p {
        text-wrap: balance;
    }

    #testimonials .gauche a {
        text-decoration: none;
        background: #000;
        color: #fff;
        font-size: 1.25rem;
        font-style: italic;
        border-radius: 25px;
        padding: .5rem 1rem;
        transition: all ease-in-out .3s;
    }

    #testimonials .gauche a:hover {
        background: #fff;
        background: var(--bleu);
        color: #000;
    }

    /* #divRetours {
        position: relative;
        width: 100%;
        margin: auto;
    } */

    #listeRetours {
        --items: 1;
        --gap: 1rem;
        display: flex;
        gap: var(--gap);
        overflow-x: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 0;
        scroll-behavior: smooth;
        position: relative;
        margin: .5rem;
        padding: .5rem;
    }

    #listeRetours .retour {
        width: 100%;
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        background: #fff;
        border-radius: 15px;
        position: relative;
        border: 1px solid #00000026;
        flex: 0 0 auto;
        scroll-snap-align: center;
        padding: 1rem;
    }

    #listeRetours .retour .temoin {
        width: 120px;
        height: 120px;
        border-radius: 50%;
        overflow: hidden;
        /* position: absolute;
        top: -25%; */
        box-shadow: 0px 0px 5px 2px rgba(0, 0, 0, 0.175);
        margin-bottom: 1rem;
    }

    #listeRetours .retour .info h5 {
        font-size: 1.5rem;
        font-weight: 400;
        color: #000;
    }

    #listeRetours .retour .info h6 {
        font-size: 1.3rem;
        font-weight: 400;
        color: gray;
    }

    #listeRetours .retour .info .quote svg {
        width: 40px;
        color: var(--bleu);
    }

    #listeRetours .retour .info p {
        font-size: 1.20rem;
        margin-bottom: 0;
        color: #000;
    }

    #listeRetours .retour .stars {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 1rem;
    }

    #listeRetours .retour .stars svg {
        width: 20px;
        color: var(--orange);
    }
   
    #listeRetours .retour .temoin img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    #divRetours .btnNav {
        margin: 0 auto;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }

    #divRetours .btnNav button {
        width: 40px;
        height: 40px;
        background-color: #50E6E6;
        border: unset;
        border-radius: 50px;
        transition: all .2s ease-in-out;
    }

    #divRetours .btnNav button:hover {
        background: var(--orange);
        transform: scale(1.1);
    }

    #divRetours .btnNav button svg {
        width: 18px;
        color: #fff;
    }

    #divRetours .btnNav button.next svg {
        margin-left: 2px;
    }

    #divRetours .btnNav button.prev svg {
        margin-right: 2px;
    }
}



/* Senses */
@media screen {

    #senses #pills-tab {
        display: flex;
        justify-content: space-around;
        align-items: center;
        max-width: 700px;
        margin: 2rem auto 0;
    }

    #senses #pills-tab button {
        width: 50px;
        height: 50px;
        position: relative;
        border: unset;
        background: unset;
        font-size: 1.3rem;
        transition: all .3s ease-in;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    #senses #pills-tab button::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    #senses #pills-tab button:hover {
        transform: translateY(-3px);
    }

    #senses #pills-tab button svg {
        width: 24px;
    }


    #senses #pills-tab button:not(:active) {
        background: var(--bleu);
        border-radius: 40px;
    }

    #senses #pills-tab button.active {
        background: var(--orange);
        color: #fff;
    }

    #senses .mainContent {
        max-width: 900px;
        margin-bottom: 3rem;
        border-bottom: 5px solid var(--orange);
        border-radius: 30px;
        box-shadow: 0 3px 6px 0 rgba(0,0,0,.1);
    }

     @media (min-width:576px) {

        #senses #pills-tab button {
            width: fit-content;
            padding: .5rem 1.5rem;
            line-height: 1.5rem;
            height: fit-content;
            flex-direction: column;
        }
    }

    @media (min-width:768px) {

        #senses #pills-tab button {
            width: fit-content;
            height: 50px;
            padding: 0 1rem;
            line-height: 0;
            /* padding: 0; */
            flex-direction: row;
            gap: .5rem;
        }
    }

    #senses .mainContent .col-md-8 {
        text-align: center;
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 30px;
    }

    #senses .mainContent .texte h5 {
        font-size: 1.5rem;
        font-weight: 600;
    }

    #senses .mainContent .texte p {
        font-size: 1.15rem;
        margin-bottom: 0;
    }

    #senses .icone {
        width: 100%;
        height: 250px;
        overflow: hidden;
    }

    #senses .icone.img-bas {
        border-radius: 0 25px 25px 0;
    }

    #senses .icone.img-haut {
        border-radius: 25px 0 0 25px;
    }

    @media (max-width: 768px) {
        #senses .icone.img-bas,
        #senses .icone.img-haut {
            border-radius: 15px 15px 0 0;
        }
    }

    #senses .icone img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
}



/* newsletter */
@media screen {
    
    #newsletter {
        background: var(--bleu);
    }

    #newsletter .container {
        background: #fff;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
        border-radius: 32px;
        max-width: 1000px;
    }

    #newsletter .container .divimg {
        padding: 24px;
    }

    #newsletter .container .divimg img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /* From Uiverse.io by vinodjangid07 */ 
    #newsletter .newsletterForm {
        background-color: #292524;
        padding: 16px 12px;
        border-radius: 20px;
        display: flex;
        /* flex-direction: column; */
        justify-content: center;
        align-items: center;
        gap: .5rem;
        /*
        box-sizing: content-box;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 3%; */
    }

    #newsletter .iconeBoite {
        width: 48px;
        fill: rgb(255, 255, 255);
        transition: all 0.3s;
    }

    #newsletter .input {
        flex: auto;
        height: 100%;
        border: none;
        outline: none;
        padding-left: 15px;
        background-color: #bebebe40;
        border-radius: 8px;
        color: white;
        font-size: 1em;
        height: 40px;
        width: 100% ;
    }
    #newsletter .input:-webkit-autofill {
        -webkit-box-shadow: 0 0 0px 1000px #292524 inset;
        -webkit-text-fill-color: #ffffff;
    }
    #newsletter .Subscribe-btn {
        width: 100%;
        border: none;
        border-radius: 8px;
        color: rgb(0, 0, 0);
        cursor: pointer;
        background-color: #ffffff;
        font-weight: 500;
        overflow: hidden;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        transition: all 0.3s;
        height: 40px;
        /* margin-top: 1rem; */
        font-size: 1.15rem ;
        /* padding: .3rem 0; */
        gap: .5rem;
    }

    #newsletter .Subscribe-btn svg {
        width: 24px;
    }


    @media (min-width:572px) {

        #newsletter .iconeBoite {
            width: 56px;
            fill: rgb(255, 255, 255);
            transition: all 0.3s;
        }

        #newsletter .newsletterForm .Subscribe-btn {
            width: 200px;
        }
    }

    /* #newsletter .arrow {
    display: none;
        position: absolute;
        margin-right: 100px;
        transition: all 0.3s;
    } */
    #newsletter .newsletterForm:active .iconeBoite {
        transform: scale(1.3);
    }

    #newsletter .Subscribe-btn:hover span {
        color: white;
        display: none;
    }

    #newsletter .Subscribe-btn:hover .arrow {
        margin-right: 0;
        animation: jello-vertical 0.9s both;
        transform-origin: right;
    }

    @keyframes jello-vertical {
        0% {
            transform: scale3d(1, 1, 1);
        }
        30% {
            transform: scale3d(0.75, 1.25, 1);
        }
        40% {
            transform: scale3d(1.25, 0.75, 1);
        }
        50% {
            transform: scale3d(0.85, 1.15, 1);
        }
        65% {
            transform: scale3d(1.05, 0.95, 1);
        }
        75% {
            transform: scale3d(0.95, 1.05, 1);
        }
        100% {
            transform: scale3d(1, 1, 1);
        }
    }

    #newsletter .Subscribe-btn:active {
        transform: scale(0.9);
    }
}



/* Contact */
@media screen {
    
    #contact {
        /* background: #f8f9fa;; */
    }

    #contact .info {
        border-top: 5px solid var(--bleu);
        border-radius: 32px;
        /* box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 25px; */
        /* box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px; */
        background: #fff;
        /* height: 500px; */
    }

    #contact .titreCarte {
        position: relative;
        margin-bottom: 1.5rem;
    
    }

    #contact .titreCarte::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -.3rem;
        background: var(--bleu);
        width: 25%;
        height: 3px;
        border-radius: 16px;
        transition: width .3s ease;
    }


    #contact .info h5 {
        font-size: 22px;
        color: #000;
    }
 
    #contact .info button {
        justify-content: flex-start;
        align-items: center;
        gap: 1rem;
        background: var(--bleu);
        width: 100%;
        border: unset;
        position: relative;
        text-align: start;
        transition: all .3s ease;
    }

    #contact .info button:hover {
        scale: 1.020;
    }

    #contact .info button:hover .icone {
        background: var(--orange);
    }

    #contact .info button:hover .icone svg {
        color: #fff;
    }

    #contact .info button::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    #contact .info button .icone {
        width: 40px;
        height: 40px;
        background: #fff;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 50px;
        transition: all .3s ease;
    }

    #contact .info button .icone svg {
        width: 20px;
        color: var(--orange);
    }

    #contact .info button span {
        font-size: 1.25rem;
    }

    #contact .info button h6 {
        font-size: 1.15rem;
        font-weight: 500;
    }


    #contact .socialMedia {
        margin-top: 1.5rem;
    }

    #contact .socialMedia .hr {
        background: var(--orange);
        width: 25%;
        height: 2px;
        margin-bottom: 1.5rem;
    }


    #contact .socialMedia .icones {
        display: flex;
        justify-content: space-between;
    }


    #contact .socialMedia a {
        width: 48px;
        height: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        border-radius: 32px;
        background: var(--bleu);
        transition: all .3s ease-in-out;
    }

    #contact .socialMedia a:hover {
        background: var(--orange);
        transform: translateY(-3px);
    }


    #contact .socialMedia a svg {
        width: 22px;
        color: #fff;
    }



    #contact .carte {
        width: 100%;
        /* height: 350px; */
        overflow: hidden;
        /* margin-bottom: 1rem; */
        border-top: 5px solid var(--bleu);
        border-radius: 32px;
        /* box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 25px; */
        /* border: 5px solid #fff; */
    }

    #contact .carte iframe {
        width: 100%;
        height: 100%;
    }


    /* From Uiverse.io by Yaya12085 */ 
    #divFormContact {
        background-color: #fff;
        border-radius: 10px;
        padding: 20px;
        width: 100%;
        /* height: 500px; */
        /* min-height: 450px; */
        display: flex;
        flex-direction: column;
        border-bottom: 5px solid var(--bleu);
        border-radius: 32px;
        /* box-shadow: rgba(0, 0, 0, 0.05) 0px 10px 25px; */

    }

    #divFormContact .title {
        font-size: 1.15rem;
        font-weight: 600;
    }

    #divFormContact .form {
        display: flex;
        flex-direction: column;
    }

    #divFormContact .group {
        position: relative;
    }

    #divFormContact .form .group label {
        font-size: 1.15rem;
        padding: 0 .5rem;
        color: rgb(99, 102, 102);
        position: absolute;
        top: -15px;
        left: 0px;
        background-color: #fff;
        transition: all .3s ease;
    }

    #divFormContact .form .group input,
    #divFormContact .form .group textarea {
        padding: 10px;
        border-radius: 5px;
        border: 1px solid rgba(0, 0, 0, 0.2);
        margin-bottom: 20px;
        outline: 0;
        width: 100%;
        background-color: transparent;
    }

    #divFormContact .form .group input:placeholder-shown+ label,
    #divFormContact .form .group textarea:placeholder-shown +label {
        top: 8px;
        background-color: transparent;
    }

    #divFormContact .form .group input:focus,
    #divFormContact .form .group textarea:focus {
        border-color: var(--bleu);
    }

    #divFormContact .form .group input:focus+ label,
    #divFormContact .form .group textarea:focus +label {
        top: -15px;
        left: 0px;
        background-color: #fff;
        color: var(--bleu);
        font-weight: 600;
    }

    #divFormContact .form .group textarea {
        resize: none;
        height: 100px;
        overflow: auto;
    }

    #divFormContact .form button {
        background: #000;
        color: #fff;
        border: none;
        border-radius: 5px;
        padding: 10px;
        font-size: 1.15rem;
        cursor: pointer;
        transition: all 0.3s ease;
    }

    #divFormContact .form button:hover {
        color: #000;
        background: var(--bleu) ;
    }

    #contact .carte {
        height: 350px;
    }

    
    #divFormContact,
    #contact .info,
    #contact .carte {
        box-shadow: 0px 0px 13px -3px #00000069;
    }



        /* #divFormContact {
            #contact .info {
    #contact .carte { */

    
    @media (min-width:768px) {

        #contact .carte,
        #contact .info {
            height: 580px;
        }       
    }

    @media (min-width:992px) {

        #contact .carte,
        #contact .info,
        #divFormContact {
            height: 500px;
        }       
    }
}

