/* 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
{
    font-size: 3em;
}

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

.blueFontP
{
    color: var(--Blue);
    font-size: 1.5em;
    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 .logoMixed
{
    height: 40em;
    width: 40em;
}

.mainContent
{
    height: 1800px;
    margin-top: 10%;
    padding: 30px 0;
}

.mainContent .plumeContent
{
    width: 100%;
    height: 100%;
}

.mainContent .plumeImg
{
    height: 42em;
    width: 42em;
}

/* Footer */

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

h1
{
    color: var(--Blue);
    font-weight: 200;
}

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;
}

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

#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;
}

/*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 : 1000px) and (max-width : 1399px)
{
    .mainContent
    {
        height: 2000px;
    }
}

@media only screen and (min-width : 800px) and (max-width : 999px)
{
    .mainContent
    {
        height: 2100px;
    }
}

@media only screen and (min-width : 600px) and (max-width : 799px)
{
    .mainContent
    {
        height: 2200px;
    }
}

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


@media only screen and (min-width : 992px) and (max-width : 1399px)
{
    .plumeContent
    {
        margin-left: 25% !important;
    }
}

@media only screen and (min-width : 414px) and (max-width : 699px)
{
    .mainContent .plumeImg
    {
        height: 30em;
        width: 30em;
    }
}

@media only screen and (min-width : 0px) and (max-width : 415px)
{
    .mainContent .plumeImg
    {
        height: 22em;
        width: 22em;
    }
}

@media only screen and (min-width : 0px) and (max-width : 472px)
{
    .mainContent .plumeContent
    {
        margin-left: 0% !important;
    }
}

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

    .mainContent p li
    {
        font-size: 1.3rem;
    }
}
/* Footer */
@media only screen and (min-width : 0px) and (max-width : 800px)
{
    footer
    {
        height: 1100px;
    }
}