/* ================================
   Menu Mobile Dropdown
   ================================ */

.fev-menu-mobile-dropdown {
    width: 100%;
    background: transparent;
}

.fev-menu-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.fev-menu-item {
    margin-bottom: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.fev-menu-item:last-child {
    border-bottom: none;
}

.fev-menu-item-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

.fev-menu-link {
    flex: 1;
    color: white;
    font-family: "Rockwell", Sans-serif;
    font-size: 24px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    display: block;
    transition: color 0.3s ease;
    padding: 5px 10px;
}

.fev-menu-link:hover,
.fev-menu-link:focus,
.fev-menu-link.active {
    color: #E32485;
}

.fev-dropdown-toggle {
    background: transparent;
    border: none;
    color: white;
    cursor: pointer;
    padding: 5px 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    margin-left: 10px;
}

.fev-dropdown-toggle:hover,
.fev-dropdown-toggle:focus {
    color: #E32485;
}

.fev-dropdown-toggle svg {
    transition: transform 0.3s ease;
}

.fev-dropdown-toggle[aria-expanded="true"] svg {
    transform: rotate(180deg);
}

.fev-submenu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, opacity 0.3s ease;
    opacity: 0;
    background: rgba(0, 0, 0, 0.1);
}

.fev-submenu.open {
    max-height: 1000px;
    opacity: 1;
    padding: 10px 0;
}

.fev-submenu-item {
    margin: 0;
    padding: 0;
}

.fev-submenu-link {
    display: block;
    color: white;
    font-family: "Rockwell", Sans-serif;
    font-size: 20px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
    padding: 12px 20px;
    transition: color 0.3s ease, background 0.3s ease;
}

.fev-submenu-link:hover,
.fev-submenu-link:focus,
.fev-submenu-link.active {
    color: #E32485;
    background: rgba(227, 36, 133, 0.1);
}

/* États actifs */
.fev-menu-item.active > .fev-menu-item-wrapper > .fev-menu-link {
    color: #E32485;
}

.fev-submenu-item.active .fev-submenu-link {
    color: #E32485;
}

/* Accessibilité */
.fev-menu-link:focus,
.fev-submenu-link:focus,
.fev-dropdown-toggle:focus {
    outline: 2px solid #E32485;
    outline-offset: 2px;
}

/* Responsive pour petits écrans */
@media (max-width: 480px) {
    .fev-menu-link {
        font-size: 20px;
    }

    .fev-submenu-link {
        font-size: 18px;
    }
}