/* Styles pour la barre de navigation (optionnel, si vous en ajoutez une) */
#navbar {
    /* Fixe la barre de navigation en haut */
    width: 100%;
    /* Dégradé horizontal bleu vers blanc */
    background: linear-gradient(160deg, #f6ede3 0%, #ead4bc 100%);
    /* Fallback pour anciens navigateurs */
    background-color: #f0e1d0;
    padding: 0.5rem 0;
    text-align: center;
    z-index: 1000;
    /* Assure que la barre de navigation est au-dessus du contenu */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    opacity: 0.9;
}

#navbar ul {
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    padding: 0;
}

#navbar ul li {
    display: block;
    margin: 0;
}

#navbar ul li a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
    font-variant: small-caps;
    transition: color 0.3s ease;
}

#navbar ul li a.active {
    color: #92a37d;
    border-bottom: 0.2rem solid #92a37d;
}

#navbar ul li a:hover {
    color: #92a37d;
}