/* NAVIGATION GLOBALE nouvelle couleur bleu #002585 à voir*/
nav {
    position: fixed;
    top: 0;
    left: 0;
    box-sizing: border-box;
    width: 100%;
    height: 80px;
    background-color: #0A1E50;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    color: #fff;
}
/* LIENS GLOBAUX */
a:hover {
    color: #0A1E50 !important;
}
.container-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
}
.container-nav a {
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.5rem 1rem;
}
.contact-info {
    display: block;
    text-align: center;
    color: #f1f4f9de;
    font-size: 0.9rem;
}
.nav-right {
    display: flex;
    gap: 2rem;
    align-items: center;
}
.container-nav a:hover {
    color: #0A1E50;
    background-color: #f1f4f9;
    border-radius: 6px;
}
.container-nav a:active {
    color: #f1f4f9de;
}
.tel-link {
    color: #f1f4f9de;
    background-color: #0A1E50;
    text-decoration: none;
}
.tel-link:hover {
    color: #f1f4f9de!important;
    background-color: #0A1E50 !important;
    text-decoration: none;
}
/* BOUTON HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    margin: 20px 0;
    padding: 10px 20px 10px 20px;
    cursor: pointer;
    background: none;
    border: none;
}
.hamburger span {
    width: 25px;
    height: 3px;
    background-color: white;
    border-radius: 2px;
}
/* MENU MOBILE */
.mobile-menu {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    width: 30%;
    background-color: #0A1E50;
    flex-direction: column;
    align-items: flex-start;
    padding: 1rem;
    z-index: 999;
}
.mobile-menu a {
    padding: 1rem;
    width: 100%;
    border-bottom: 1px solid #f1f4f9;
}
@media screen and (max-width: 899px) {
    .container-nav {
        justify-content: space-between;
    }
    .nav-right {
        display: none;
    }
    a:hover {
        color: #f1f4f9 !important;
    }
    .marque-mobile {
        display: none
    }

    .hamburger {
        display: flex;
    }
    .contact-info {
        display: block;
        text-align: center;
        color: #f1f4f9de;
        font-size: 0.9rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .mobile-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 180px;
        background-color: #0A1E50;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        z-index: 999;
    }
    .mobile-menu.show {
        display: flex;
    }
}
@media screen and (max-width: 576px) {
    .mobile-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 170px;
        background-color: #0A1E50;
        flex-direction: column;
        align-items: flex-start;
        padding: 1rem;
        z-index: 999;
    }
    .contact-info {
        display: block;
        text-align: center;
        color: #f1f4f9de;
        font-size: 0.9rem;
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }

}