/* MENU HORIZONTAL superieur*/
/* Espace + centrage global */
.menu-wrapper {
    margin-top: 15px;          /* ← ligne d’espace avant le menu */
    display: flex;
    justify-content: center;
}

/* Menu horizontal */
.topnav-container {
    width: 80%;                /* ← largeur demandée */
    background-color: #0f5132;
    border-radius: 15px;       /* ← arrondis */
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}


.topnav-container {
    width: 80%;                /* largeur */
    margin: 1px auto 0;       /* espace au-dessus + centrage */
    background-color: #0f5132;
    border-radius: 12px;
    min-height: 40px;          /* ✅ CLÉ DU CENTRAGE VERTICAL */
    padding: 0 20px;           /* padding horizontal uniquement */

    display: flex;
    align-items: center;       /* ✅ centrage vertical */
    justify-content: center;   /* centrage horizontal */
    gap: 30px;                 /* espacement contrôlé */
    flex-wrap: wrap;
}

/* LIENS */
.topnav-container a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    font-size: 17px;
    line-height: 1;            /* ✅ évite décalage vertical */
    white-space: nowrap;
}

.topnav-container a:hover {
    color: #22C55E;
}

/* MENU ACTIVITÉS — COLLÉ AU MENU DU DESSUS */
.top-menu {
    background: #14532D;
    padding: 15px;
    margin: 0;              /* 🔥 AUCUN ESPACE */
    border-radius: 0;       /* 🔥 FUSION VISUELLE */
}

.top-menu img {
    height: 80px;          /* ajuste si besoin */
    width: auto;
    object-fit: contain;
    align-self: flex-start; /* empche ltirement */
}
.collapse {
    transition: height 0.25s ease;
}
