*{
    --primary:rgba(68, 152, 205, 1);
    --primary-dark:rgba(34, 102, 153, 1);
    --secondary:rgba(106, 17, 42, 1);
    --secondary-dark:rgba(74, 4, 30, 1);
    --box: rgba(255, 255, 255, 0.8);
    /*outline: 1px solid red !important;*/
}
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden; /* Important pour éviter le scroll horizontal */
    margin: 0;
    padding: 0;
}


body {
    margin-top: 11%; /* Gardez cette valeur */
    width: 100%;
}

nav.navbar {
    z-index: 1000;
    position: fixed;
    top: 0;
    background-color: white;
    border: white 1px solid;
    width: 100%;
}

a.navbar-brand{
    width: 20%;
    height: auto;
}

#Logo{
    max-width: 100%;
    height: auto;
}

a.navbar-brand-logo{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

div.gauche-nav{
    width: 0%;
    height: auto;
}

div.droite-nav{
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

ul.navbar-nav-droite{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

a.link-opacity-100{
    color: black;
    text-decoration: none;
    width: 100%;
}

a.link-opacity-100:hover{
    color: var(--primary);
}

.link-opacity-100-custom{
    color: var(--primary);
    text-decoration: none;
    width: auto;
    font-size: medium;
    text-transform: uppercase;
}

a.link-opacity-100-custom:hover{
    color: var(--primary-dark);
    transform: scale(1.05);
    transition: transform 0.4s;
}

ul.navbar-nav-droite a{
    margin: 1%;
}

.custom-language{
    width: 100%;
    height: auto;
    margin-top: 1%;
}

.custom-language-mobile{
    display: none;
}

.custom-link-language{
    width: 100%;
    height: auto;
    display: flex;
    align-items: flex-start;
}

.btn-secondary-custom{
    background-color: var(--primary);
    color: white;
    width: auto;
    height: min-content;
}

.btn-secondary-custom:hover{
    background-color: var(--primary-dark);
    color: white;
}

.whatsapp-desktop-container{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-top: 5%;
    width: fit-content;
}   

#whatsapp-button-desktop{
    background-color: #25d366;
    color: white;
    border-radius: 50px;
    border: none;
    font-size: 16px;
}

.whatsapp-subtitle{
    font-size: 16px;
    margin-top: 5px;
    font-weight: bold;
    color: var(--primary);
    text-align: center;
}

#whatsapp-button-mobile{
    display: none;
    background-color: #25d366;
    border-radius: 50px;
}

#whatsapp-subtitle-mobile{
    display: none;
}

#languageDropdownMenu {
    font-size: 20px; /* Taille de base */
    min-width: 200px; /* Largeur minimale */
    padding: 5px 0; /* Espacement interne */
}

.span-language-header{
    font-size: 28px;
}

#footer-container{
    width: 100%;
    height: auto;
    padding: 2%;
    margin-top: 5%;
}

.contact-icons{
    display: none;
}

#offcanvasRight{
    display: none;
}

@media only screen and (max-width: 992px) {
    body{
        margin-top: 235px;
    } 
    
    div.container-fluid {
        min-height: 180px;
    }

    ul.navbar-nav-droite{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        flex-direction: column;
        height: auto;
    }

    ul.navbar-nav-gauche{
        display: flex;
        align-items: flex-start;
        justify-content: space-between;
        width: 100%;
        flex-direction: column;
        height: auto;
    }

    ul.navbar-nav-droite a{
        margin-top: 2%;
        width: auto;
    }
    
    div.gauche-nav{
        width: 100%;
        margin-top: 2%;
        height: auto;
    }

    #navbar{
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    nav.navbar {
        min-height: 150px;
    }

    img#Logo{
        width: 100%;
        height: 100%;
    }

    a.navbar-brand{
    min-height: 100%;
    min-width: 30%;
    margin: 0;
    }

    #whatsapp-button-mobile{
        display: flex;
        width: 70%;
        border: none;
        align-items: center;
        justify-content: center;
    }

    #whatsapp-button-desktop{
        display: none;
    }

    #whatsapp-subtitle-mobile{
        display: block;
        font-size: 26px;
        margin-top: 5px;
        font-weight: bold;
        text-align: center;
    }

    .whatsapp-subtitle{
        display: none;
    }

    .whatsapp-desktop-container{
        width: 50%;
    }

    .custom-language-mobile{
        display: block;
        width: 70%;
    }

    .custom-language{
        display: none;
    }

    .span-mobile-language-header{
        font-size: 34px;
    }

    #languageDropdownMenu {
        font-size: 34px; /* Taille de base augmentée */
        min-width: 300px; /* Largeur minimale */
        padding: 10px 0; /* Espacement interne */
    }

    footer{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        justify-content: space-between;
        width: 100%;
        font-size: 3rem;
    }

    .text-footer{
        width: auto;
        margin: 5%;
    }

    .link-footer-img{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
        margin: 10%;
    }

    #lien-footer{
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        width: 100%;
    }

    .contact-icons{
    width: 60%;
    display: flex;
    justify-content: space-evenly;
    height: fit-content;
    }

    a#contact-phone-mobile{
        font-size: 50px;
        background-color: var(--primary);
        border: none;
    }

    a#contact-phone-mobile:hover{
        background-color: var(--primary-dark);
        transition: 0.4s;
    }

    #offcanvasRight{
        display: block;
        width: 60%;
        font-size: 25px;
        background-color: rgba(255, 255, 255, 0.881);
    }

    .navbar-bottom-border{
        width: 100%;
        height: auto;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-secondary-custom{
        background-color: var(--primary);
        color: white;
        width: auto;
        height: min-content;
        font-size: 30px;
        margin: 10px;
    }

    .btn-secondary-custom:hover{
        background-color: var(--primary-dark);
        color: white;
    }
    
}