/* =====================================================
   MENU MOBILE – SLIDE GAUCHE 80%
   Date : 2026-01-06 11:22
   ===================================================== */

@media (min-width: 993px) {
    .al-burger,
    .al-mobile-menu,
    .al-mobile-overlay {
        display: none !important;
    }
}
.al-burger {
    pointer-events: auto;
    z-index: 10001;
    cursor: pointer;
}
/* Bouton MENU */
.al-burger {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    background: none;
    border: none;
    font-family: "din-2014", sans-serif;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #003366;
    cursor: pointer;
}

/* Overlay */
.al-mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    z-index: 10000;
}

/* Menu */
.al-mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 80vw;
    max-width: 80%;
    height: 100vh;
    background: #fff;
    transform: translateX(-100%);
    transition: transform 0.35s ease;
    z-index: 10001;
    overflow-y: auto;
}

/* État ouvert */
body.al-mobile-open .al-mobile-menu {
    transform: translateX(0);
}

body.al-mobile-open .al-mobile-overlay {
    opacity: 1;
    pointer-events: auto;
}

/* Contenu */
.al-mobile-inner {
    padding: 30px 25px;
}

.al-mobile-title {
    font-family: "din-2014", sans-serif;
    font-weight: 700;
    font-size: 20px;
    display: block;
    margin-bottom: 30px;
    color: #003366;
}

.al-mobile-group {
    margin-bottom: 25px;
}

.al-mobile-group-title {
    display: block;
    font-weight: 700;
    margin-bottom: 10px;
    color: #003366;
}

.al-mobile-links a {
    display: block;
    margin-bottom: 8px;
    text-decoration: none;
    color: #003366;
    font-family: "din-2014", sans-serif;
    font-size: 16px;
}

.al-mobile-main-link {
    margin-top: 20px;
    font-weight: 700;
}
