/* ======== FOND DU MENU ======== */
.menu-header {
    width: 100%;
    background: url("menu-background.avif") center/cover no-repeat;
    padding: 25px 0; /* marge verticale identique à l’image */
}

/* ======== BARRE DE MENU ======== */
.menu-bar ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: center;
    gap: 25px; /* espacement entre les boutons */
}

/* ======== BOUTONS ======== */
.menu-bar a {
    display: block;
    padding: 12px 25px;
    background: rgba(255, 255, 255, 0.85); /* couleur claire comme sur l’image */
    border-radius: 20px; /* arrondi identique */
    color: #1a3a78; /* bleu foncé du texte */
    font-weight: bold;
    font-size: 16px;
    text-decoration: none;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15); /* léger relief */
    transition: 0.2s ease;
}

/* ======== EFFET HOVER ======== */
.menu-bar a:hover {
    background: rgba(255, 255, 255, 1);
    transform: translateY(-2px);
}
