.header {
    position: relative;
    z-index: 10;
}

.hover-bold {
    font-weight: 700;
    opacity: 1;
    transition: opacity 0.15s ease;
}

.hover-bold:hover {
    opacity: 0.65;
}

/* Bouton menu burger */
.btn-logout, .btn-user {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 0.2rem 0.9rem !important;
    border-radius: 4px !important;
    transition: background 0.3s, color 0.3s !important;
    text-decoration: none !important;
    color: white !important;
    font-size: 1.5rem !important;
}

.btn-logout,
.btn-logout:focus,
.btn-logout:active {
    background-color: #E83B0E !important;
    border-radius: 4px !important;
    color: white !important;
}

.btn-logout:hover {
    background-color: #004680 !important;
    color: #E83B0E !important;
}

/* Responsive pour mobile */
@media (max-width: 700px) {
    .navbar {
        padding: 0.25rem 1rem !important;
    }

    .desktop-nav {
        gap: 1rem !important;
        margin: 0.25rem 0 !important;
    }

    .navbar-nav .nav-link {
        font-size: 1rem;
        padding: 0.25rem 0.5rem;
    }

    .btn-burger {
        padding: 0.2rem 0.4rem;
    }
}
