/* ===========================
   MOBILE MENU OVERRIDES
   =========================== */

/* ===== Desktop : burger caché ===== */
.burger {
    display: none;
}


/* MOBILE ONLY */
@media (max-width: 768px) {
    
    header {
        height: 85px;
    }

    .logo {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        height: 100px;      /* taille idéale mobile */
        max-height: 120%;
        width: auto;
    }

    .burger {
        display: block;
        background: none;
        border: none;
        font-size: 1.8rem;
        color: #fff;
        cursor: pointer;
        z-index: 1002;
    }

    .nav-links {
        position: fixed;
        top: 64px;                /* JUSTE SOUS LE HEADER */
        left: 0;
        width: 100%;
        height: calc(100vh - 64px);
        background: #0a0a0a;
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;

        transform: translateY(-120%);
        transition: transform 0.35s ease;
        z-index: 999;
    }

    .nav-links.active {
        transform: translateY(0);
    }
    
 
    /* cache CTA dans le menu desktop */
    .cta-button {
        display: none;
    }
}

