/* =========================
   Page d’accueil (/index.html)
   ========================= */

/* NAVBAR : tout sur une seule ligne, comme about/properties */

.home-page .topbar .nav {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 32px;
    flex-wrap: nowrap !important;
    /* jamais 2 lignes */
}

/* Bloc des liens au centre */
.home-page .topbar .links {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 22px;
    margin: 0 !important;
    padding: 0 !important;

    flex-wrap: nowrap !important;
    /* empêche un lien de descendre */
    white-space: nowrap;
    /* pas de retour dans les boutons */
}

/* Chaque élément du menu reste sur 1 ligne */
.home-page .topbar .links>* {
    flex: 0 0 auto;
}

/* Zone actions : bouton + badge user */
.home-page .nav-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 10px;
    margin: 0 !important;
    padding: 0 !important;
    white-space: nowrap;
}

/* Conteneur rempli par auth.js */
.home-page #userMenu {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* ❌ IMPORTANT : on NE touche PAS au panneau dropdown ici !
   Donc on supprime complètement l'ancien bloc :
   .home-page #userMenu * { ... }
*/