/* Fonts */
@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400..900;1,6..96,400..900&display=swap');

:root
{
    --Blue : #464E9F;
    --Blue2 : #2362B0;
    --Beige : #F0EAD6;
    --Violet : #C3BED0;
    --Grey : #D1D3E4;
    --Pink : #F2E6E9;
    --White : #FEF8F2;
}

html, body
{
    max-width: 100%;
    min-width: 320px;
    font-family: "Bodoni Moda", serif;
    overflow-x: hidden;
    background-color: var(--Pink);
}

*
{
    box-sizing: border-box;
}

h1
{
    color: var(--Blue);
    font-size: 3em;
    font-weight: 100;
}

.blueFont
{
    color: var(--Blue);
}

.blueFontP
{
    color: var(--Blue);
    font-size: 1.5em;
    line-height: 1.6em;
}

.blueFontPBold
{
    color: var(--Blue);
    font-size: 1.5em;
    font-weight: bold;
    line-height: 1.6em;
}

/* Header */

header
{
    width: 100%;
    z-index: 99;
}

.nav-link
{
    padding: 30px;
    color: var(--Blue);
    font-size: 1.5em;
}

.navbar-collapse.show {
    background-color: rgba(0, 0, 0, 0.8); /* Noir avec 80% d'opacité */
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    padding: 20px; /* Ajoute de l’espace pour éviter que le menu soit trop collé */
    z-index: 999; /* Assure que le fond passe au-dessus des autres éléments */
}

.navbar-collapse.show .nav-link
{
    color: var(--Beige);
}

.navbar-collapse.show .nav-link:hover
{
    color: var(--Blue);
}

.nav-link:hover
{
    color: var(--Violet);
}

.sticky
{
    background-color: #000;
    opacity: 80%;
}
/* END Header */


/* Section : mainContent */
.mainContent
{
    height: 1500px;
    margin-top: 10%;
}

.mainContent .lotusTextWrapper
{
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 15px;
}

.mainContent .lotusContent
{
    width: 100px;
    height: 100px;
}

.Mixed
{
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.mainContent .blocFormation
{
    text-align: start;
}

.mainContent .blocFormation ul
{
    padding-left: 0;
}

.mainContent .blocFormation li
{
    display: flex;
    align-items: flex-start;
    margin-bottom: 10px;
}

.mainContent .blocFormation li span 
{
    margin-right: 10px;
}

.titleWithIcon
{
    display: flex;
    align-items: center;
    justify-content: center;
}

.diplomeContainer
{
    margin-right: 15px;
}

.formationIcon
{
    width: 120px;
    height: auto;
}



/* Animation */
.diplomeContainer
{
    text-align: center;
    margin-top: -3%; /*Espace au dépard*/
}

#diplome
{
    width: 100px;
    height: auto;
    position: relative;
}
/* Section : mainContent END */


/* Footer */

footer
{
    height: 450px;
    background-color: var(--Violet);
}

h4
{
    color: var(--Blue);
    font-size: 1.5rem;
}

.txtFooter
{
    color: var(--Blue);
    font-size: 1rem;
}

footer .picto:hover
{
    transform: scale(1.3);
    transition: transform 330ms ease-in;
}

footer .pictoFacebook:hover
{
    transform: scale(1.3);
    transition: transform 330ms ease-in;
}

#mapid
{
    height: 200px;
    border-radius: 10px;
}

.picto
{
    height: 5rem;
    width: 5rem;
}

.pictoFacebook
{
    height: 4.5rem;
    width: 4.5rem;
}

footer .webMasterLink
{
    text-decoration: none;
    font-weight: bold;
    color: var(--Blue);
}

/*Media Queries*/

/*  NavBar  */
@media only screen and (min-width : 992px) and (max-width : 1104px)
{
    .nav-link
    {
        padding: 30px;
        font-size: 1.2em;
    }
}

@media only screen and (min-width : 300px) and (max-width : 991px)
{
    .navbar-collapse    {
        background-color: black;
        opacity: 80%;
    }

    .nav-link
    {
        color: var(--White);
    }
}

/* mainContent */

@media only screen and (min-width : 0px) and (max-width : 1213px)
{
    .mainContent 
    {
        height: 1800px;
    }
}

@media only screen and (min-width : 445px) and (max-width : 819px)
{
    .mainContent 
    {
        height: 2000px;
    }
}

@media only screen and (min-width : 343px) and (max-width : 444px)
{
    .mainContent 
    {
        height: 2400px;
    }
}

@media only screen and (min-width : 0px) and (max-width : 343px)
{
    .mainContent 
    {
        height: 2600px;
    }
}

@media only screen and (min-width : 0px) and (max-width : 746px)
{
    .mainContent h1 
    {
        font-size: 2rem;
    }

    .mainContent p 
    {
        font-size: 1.3rem;
    }
}

@media only screen and (min-width : 0px) and (max-width : 746px)
{
    .blocFormation h1
    {
        font-size: 2rem;
    }

    .blocFormation ul
    {
        font-size: 1.3rem;
    }
}

/*  Global  */
@media (max-width : 768px)
{
    .Mixed 
    {
        max-width: 80%;
    }

    .lotusContent
    {
        margin-top: 20px;
    }
}

@media only screen and (min-width : 0px) and (max-width : 768px)
{
    footer
    {
        height: 1100px;
    }
}
/*  END Global  */

