/* Style général des bandeaux */
header, footer {
    background-color: #FF8C00; /* Orange */
    color: white;
    padding: 15px 0;
    text-align: center;
}

/* Navigation */
header nav ul {
    list-style: none; /* Enlève les puces */
    padding: 0;
    margin: 0;
    display: flex; /* Active Flexbox */
    justify-content: center; /* Centre horizontalement */
    gap: 20px; /* Espace entre les boutons */
}

/* Style des liens comme des boutons */
header nav ul li a {
    display: block;
    background-color: #E07B00; /* Un orange légèrement plus sombre pour le bouton */
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 4px; /* Un léger arrondi ou 0 pour un carré parfait */
    font-weight: bold;
    transition: background 0.3s;
}

header nav ul li a:hover {
    background-color: #CC6A00; /* Couleur au survol */
}

footer {
    position: fixed; /* Optionnel : colle au bas de l'écran */
    bottom: 0;
    width: 100%;
}

footer p {
    margin: 0;
    font-size: 0.9em;
}