/* ==========================================================================
   Barre de Navigation & Styles de l'Avatar
   ========================================================================== */

:root {
    --rust-orange: #d97706; /* À ajuster selon votre palette de couleur existante */
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    background-color: #111; /* Couleur d'arrière-plan exemple */
}

.brand {
    font-weight: bold;
    font-size: 1.5rem;
    color: #fff;
}

.brand span {
    color: var(--rust-orange);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-btn {
    text-decoration: none;
    color: #ccc;
    padding: 8px 16px;
    transition: all 0.3s ease;
}

.nav-btn:hover, .nav-btn.active {
    color: #fff;
}

.btn-accent {
    background-color: var(--rust-orange);
    color: #fff;
    border-radius: 4px;
}

/* Styles spécifiques ajoutés pour la photo de profil */
.nav-btn-profile {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
}

.nav-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--rust-orange);
}