@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


*{
    box-sizing:border-box;
    font-family: "Montserrat", sans-serif;
    color: white;
    transition: all 0.4s ease;
    scroll-behavior: smooth;

}


nav{
    display: flex;
}

nav ul{
    display: flex;
    gap: 30px;
}

nav ul li{
    list-style: none;
    text-decoration: underline;
}


.burger{
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    overflow: hidden;
}

header.open .burger{
    height: 10px;
    top: 35px;
}

.burger div{
    height: 6px;
    width: 100%;
    background-color: white;
    border-radius: 10px;

}

@media screen and (max-width: 1000px){

    html{
        font-size: 12px;
    }



    .burger{
        display: flex;
        position: fixed;
        right: 40px;
        top: 22px;
        height: 36px;
        width: 46px;
    }
    .header-container{
        overflow: hidden;
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }

    .header-name{
        flex-shrink: 0 !important;
        height: 80px !important;
        margin-top: 0px !important;

    }


    header.open{
        height: 100vh;
    }

    nav ul{
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        height: 100%;
        width: 100%;
        gap: 50px;

    }

    nav ul li{
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: max-content;
        padding: 30px;
        font-size: 1.6rem;
        text-align: center !important;
    }
    nav{
        height: 100%;
        width: 100%;
    }
}


body{
    margin: 0px;
    padding: 0px;
    width: 100vw;
    background-color: #141414;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    overflow-x: hidden;

}

header{
    height: 80px;
    background-color: #761B70;
    width: 100%;
    margin: auto;
    margin-top: 0px;
    padding: 0px 50px;
    position: fixed;
}

footer{
    margin: auto;
    margin-bottom: 0px;
    height: 320px;
    background-color: #761B70;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 30px;
    overflow: hidden;
}

.footer-container{
    display: flex;
    height: 100%;
    width: 100%;
    max-width: 1400px;
    align-items: center;
    justify-content: space-evenly;
    gap: 40px;

}

@media screen and (max-width: 900px){
    footer{
        height: max-content !important;
    }
    .footer-container{
        flex-direction: column !important;
        justify-content: flex-start !important;
        align-items: center !important;
    }
}


.footer-container div{
    display: flex;
    flex-direction: column;
    height: 100%;
    width: max-content;

    gap: 10px;
    justify-content: flex-start;
    align-items: flex-start;


}

.footer-container div ul{
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    justify-content: flex-start;
    gap: 6px;
    align-items: flex-start;
    margin: 0;
}

.footer-info{
    gap: 5px !important;
}

h3{
    font-size: 1.2rem;
    font-weight: 500;
    width: 100%;
    text-align: center;
    text-decoration: underline;
    text-underline-offset: 30%;
    text-decoration-thickness: 10%;
}


.header-container{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1600px;
    height: 100%;
    margin: auto;
}


.header-name{
    display: flex;
    font-size: 2rem;
    height: 100%;
    gap: 15px;
    align-items: center;
}

.header-name2{
    display: flex;
    font-size: 1.5rem;
    color: #FFF200;
    height: 100%;
    align-items: center;

}


main{
    width: 100%;
    max-width: 1800px;
    margin: auto;
    min-height: calc(100vh - 280px);
    margin-top: 80px;

}

.hero-section{
    height: calc(100vh - 80px);
    width: 100%;
    display: flex;
    flex-direction: row;
    background: url("assets/background.jpg") no-repeat center center fixed;
    background-size: cover;
    padding-bottom: 0px;

}


@media screen and (max-width: 1000px){
    .hero-section{
        flex-direction: column-reverse;
        height: max-content;
    }

    .pp-container{
        width: 100vw !important;
        height: 350px !important;
        padding: 0px !important;
        margin-bottom: -40px !important;
    }
    .pp-container img{
        height: 100% !important;
        width: auto !important;
        padding: 0 !important;
        margin: auto !important;
    }

    .intro{
        width: 100vw !important;
        padding: 0 !important;
        gap: 30px !important;
    }

    .intro-name, .intro-name2, .intro-description-title, .intro-description{
        max-width: 88% !important;
        padding: 0 !important;
    }

    .cta-container{
        flex-direction: column !important;
        width: 90% !important;
        max-width: 600px !important;
        margin: auto !important;
        height: auto !important;
        margin-top: 0px !important;
    }
}


@media screen and (max-width: 1300px){
    .cta-container{
        flex-direction: column !important;
        width: 90% !important;
        max-width: 600px !important;
        margin: auto !important;
        height: auto !important;
        margin-top: 0px !important;

        align-items: initial !important;
        justify-content: initial !important;
    }
}




.pp-container{
    display: flex;
    height: calc(100vh - 80px);
    width: 40vw;
    align-items: center;
    justify-content: center;

}

.pp-container img{
    width: 90%;
    padding-bottom: 10%;
    margin: auto auto auto 0%;

}

.intro{
    display: flex;
    flex-direction: column;
    width: 60vw;
    height: calc(100vh - 80px);
    align-items: center;
    justify-content: flex-start;
    padding: 8% 4%;
    gap: 50px;

}

.intro-name{
    font-size: 4.2rem;
    font-weight: 500;
    display: flex;
    flex-direction: column;
    max-width: 530px;
    width: 100%;

}
.intro-name2{
    font-size: 2rem;
    color: #FFF200;
}

.intro-description{
    display: flex;
    flex-direction: column;
    font-size: 1.5rem;
    color: white;
    max-width: 530px;
    gap: 15px;
}

.intro-description-title{
    font-size: 1.9rem;
    font-weight: 500;
}


.cta-container{
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 3rem;

    gap: 30px;
    margin-top: 10%;


    align-items: center;
    justify-content: center;
}

.cta-button{
    display: flex;
    height: 3rem;
    align-items: center;
    justify-content: center;
    padding: 0px 30px;
    border: solid 2px white;
    border-radius: 10000px;
    background-color: #DB48CF;
    box-shadow: 0px 0px 15px 0px rgb(255 242 0 / 0.3);
    font-size: 1.3rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;

}

.cta-link{
    text-decoration: underline;
    text-underline-offset: 35%;
    color: #B4B4B4;
    padding: 0px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    user-select: none;
}

.cta-button:hover, .cta-link:hover{
    opacity: 0.8;
    transform: scale(1.03);
}

.cta-button:active, .cta-link:active{
    opacity: 1;
    transform: scale(1);
}


.section-title{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    font-size: 3.6rem;
    font-weight: 400;
    padding: 30px 0px;
}

section{
    display: flex;
    flex-direction: column;
    width: 100%;
    margin: auto;
    align-items: center;
    justify-content: flex-start;
    padding-bottom: 100px;
    padding-left: 20px;
    padding-right: 20px;

}

.section-description{
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    text-align: center;
    padding-bottom: 30px;
}



.line{
    display: flex;

    height: 4px;
    width: 100%;
    max-width: 1100px;
    background-color: white;
    border-radius: 10px;
    margin-bottom: 50px;
}


.service-card{
    background-color: #761B70;
    border: 2px solid #C2C2C2;
    border-radius: 20px;
    margin-top: 20px;
    margin-bottom: 10px;



    min-height: 180px;
    width: 100%;
    max-width: 1100px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    align-items: center;
    box-shadow: 0px 0px 20px 0px rgb(255 255 255 / 0.3);
    gap: 20px;
}

.service-title{
    width: 100%;
    font-size: 2.2rem;
    font-weight: 400;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-decoration: underline;
    text-decoration-color: #DB48CF;
    text-underline-offset: 25%;
    text-decoration-thickness: 6%;
}

.service-description{
    font-size: 1.4rem;
    font-weight: 400;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    max-width: 900px;

}

.tarif-container{
    width: 100%;
    max-width: min(1100px,90vw);
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(500px, 90vw), 1fr));
    gap: 60px;
    margin-bottom: 80px;
}

.tarif-card{
    height: 560px;
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    background-color: #D9D9D9;
    border: 2px solid #C2C2C2;
    box-shadow: 0px 0px 20px 0px rgb(255 255 255 / 0.3);

    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 20px;
    align-items: center;
    margin: auto;
    gap: 15px;
    overflow: hidden;
}

.tarif-card-title{
    font-size: 2.2rem;
    font-weight: 500;
    color: #00001D;
    text-decoration: underline;
    text-underline-offset: 20%;
    text-decoration-thickness: 6%;


}

.tarif-card-price-container{
    font-size: 1.2rem;
    color: #00001D;
    font-weight: 500;

}

.tarif-card-price{
    font-size: 1.8rem;
    color: #14A000;
    margin-left: 8px;
}

.card-line{
    width: 90%;
    height: 4px;
    border-radius: 10px;
    background-color: #DB48CF;
    margin-top: 20px;
    margin-bottom: 20px;
}


.tarif-card ul{
    width: 95%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.tarif-card ul li{
    color: #00001D;
    font-weight: 500;
    font-size: 1.4rem;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    list-style: none;
    text-decoration: none;
    gap: 5%;
    height: 32px;
}

.card-text{
    color: #00001D;
    font-weight: 500;
    font-size: 1.8rem;
    width: 88%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-top: 20px;
}


.section-subtitle{
    color: white;
    font-weight: 500;
    font-size: 1.8rem;
    text-align: center;

}

.line-half{
    width: 40%;
    height: 4px;
    border-radius: 10px;
    background-color: white;
    min-width: 300px;
    max-width: 1000px;
    margin-top: 20px;
    margin-bottom: 20px;

}
.inclus-ul{
    display: flex;
    flex-direction: column;
    gap: 20px;

}


.inclus-ul li{
    display: flex;
    flex-direction: row;
    gap: 15px;
    max-width: 900px;
    height: 36px;
    align-items: center;
    justify-content: flex-start;
    list-style: none;

}


.tarif-cta-title{
    font-size: 1.1rem;
    margin-top: 10px;
    margin-bottom: 40px;
}


.tarif-cta{
    font-size: 1.4rem !important;
    width: 100% !important;
    max-width: 500px !important;
    height: 60px !important;
}



.contact-form{
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

input[name="sujet"]{
    width: 100% !important;
}

.contact-form span{
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
}

input{
    width: 32%;
    background: transparent;
    outline: none;
    border: none;
    border-bottom: 2px solid white;
    font-size: 1rem;
    color: #D9D9D9;
    padding: 5px;
}

input::placeholder, textarea::placeholder{
    color: #979797;
}



@media screen and (max-width: 800px){
    .contact-form span{
        flex-direction: column !important;
        gap: 10px;
    }

    input{
        width: 100% !important;
    }
}

textarea{
    resize: none;
    width: 100%;
    height: 220px;
    margin-top: 5px;
    background: transparent;
    outline: none;
    border: 2px solid white;
    font-size: 1rem;
    color: #D9D9D9;
    padding: 5px;

}

.submit{
    display: flex;
    height: 2rem;
    align-items: center;
    justify-content: center;
    padding: 0px 40px;
    border: solid 2px white;
    border-radius: 10000px;
    background-color: #DB48CF;
    box-shadow: 0px 0px 15px 0px rgb(255 242 0 / 0.3);
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    user-select: none;

}
