/* --- NAVBAR GÉNÉRALE --- */
.navbar {
    display: flex;
    justify-content: center; /* Centre le contenu horizontalement */
    align-items: center;
    padding: 15px 0;
    background-color: #1e3a5f; /* Bleu nuit */
    width: 100%;
    position: relative;
    z-index: 1000;
    /* AJOUT DE LA LIGNE DE SÉPARATION */
    border-bottom: 1px solid rgba(255, 255, 255, 0.1); 
}

/* --- LE CONTENEUR D'ESPACEMENT --- */
.nav-container {
    display: flex;
    justify-content: space-between; /* LOGO À GAUCHE <---> BOUTONS À DROITE */
    align-items: center;
    width: 90%; 
    max-width: 1200px; /* Largeur optimale pour aérer */
}

/* --- LOGO --- */
.logo {
    font-family: 'Fredoka', cursive;
    font-size: 1.8rem;
    font-weight: 700;
    color: white;
    text-decoration: none !important;
}

.logo span {
    color: #fcd34d; /* Jaune Citoyenne */
}

/* --- BLOC BOUTONS + BURGER --- */
.nav-btns {
    display: flex;
    gap: 20px; /* Espace entre les boutons */
    align-items: center;
}

/* --- STYLE DES BOUTONS --- */
.btn-yellow-sm, .btn-pink-sm {
    padding: 12px 25px;
    border-radius: 12px;
    text-decoration: none !important;
    font-weight: 800;
    font-size: 0.95rem;
    white-space: nowrap;
    transition: transform 0.2s;
}

.btn-yellow-sm { background: #fcd34d; color: #1e3a5f; }
.btn-pink-sm { background: #ef4444; color: white; }

/* --- BURGER --- */
.menu-burger {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-left: 10px; /* Décale légèrement la croix des boutons */
}

.menu-burger .bar {
    width: 30px;
    height: 4px;
    background-color: white;
    border-radius: 4px;
}