/* Bouton "Simuler mes revenus" — hover : remplit le contour vert */
.header-btn-green {
    border: 1px solid rgb(110 236 158);
    color: rgb(110 236 158);
    border-radius: 80px;
    padding: 10px 20px;
    font-family: lexendsemibold, sans-serif;
    font-size: 15px;
    white-space: nowrap;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.header-btn-green:hover {
    background-color: rgb(110 236 158);
    color: #131314;
}

/* Bouton "Devenir un conseiller" — hover : fond noir, texte vert */
.header-content .main-menu .menu-item:last-child a {
    transition: background-color 0.3s ease, color 0.3s ease;
}
.header-content .main-menu .menu-item:last-child a:hover {
    background-color: #131314;
    color: rgb(110 236 158);
    border: 1px solid rgb(110 236 158);
}

/* Responsive : mode mobile jusqu'à 1640px */
@media (min-width: 1280px) and (max-width: 1639px) {
    .site-header .main-navigation .main-menu {
        display: none;
    }
    #burger {
        display: flex;
        align-items: center;
    }
    #mobileMenu {
        display: flex;
    }
}
