/* RESET MINIMAL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* FOND GLOBAL */
body {
    background-color: #A69481;
    font-family: "Segoe UI", Roboto, Arial, sans-serif;
}

/* BARRE DE NAVIGATION */
.navbar {
    background-color: #4E453C;
    padding: 16px 0;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.25);
}

/* LISTE DU MENU */
.navbar-list {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    gap: 32px;
}

/* LIENS */
.navbar-list a {
    color: #F2EFEA;
    text-decoration: none;
    font-size: 1.05rem;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 6px;
    transition: background-color 0.25s ease, color 0.25s ease;
}

/* HOVER */
.navbar-list a:hover {
    background-color: #A69481;
    color: #2E2A25;
}

/* LIEN ACTIF (optionnel) */
.navbar-list .active {
    background-color: #D8CFC4;
    color: #2E2A25;
}
