/* ─────────────────────────────────────────────────────────────
   Malcolm GMR — Architecture overrides
   Correctifs mobiles + personnalisations globales
───────────────────────────────────────────────────────────── */

/* ── Navbar : fond sombre forcé sur mobile ──────────────────
   Sur mobile (< 992px) le header transparent affiche un fond
   blanc par défaut. On force le fond sombre #1a1a1a dès le
   chargement, avant tout scroll.
──────────────────────────────────────────────────────────── */
@media (max-width: 991px) {
    /* Ciblage large pour couvrir toutes les sources possibles */
    header,
    header nav,
    nav.navbar,
    nav.navbar.bg-transparent,
    nav.navbar.header-transparent,
    .sticky-header {
        background:       #1a1a1a !important;
        background-color: #1a1a1a !important;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    /* ── Hamburger : lignes blanches sur fond sombre ─────── */
    .header-push-button .push-button span {
        background: #ffffff !important;
    }
}
