

/* ============================================
   HERBOUW 2026 - TOEGANKELIJKHEID (WCAG 2.1 AA, H20)
   ============================================ */
.skip-link {
    position: absolute;
    top: -100px;
    left: 1rem;
    background: #0891b2;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0 0 0.75rem 0.75rem;
    font-weight: 700;
    text-decoration: none;
    z-index: 10001;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}

:focus-visible {
    outline: 3px solid #0891b2;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Mega menu toegankelijk via toetsenbord */
.menu-item:focus-within .mega-menu {
    display: flex;
}


/* Herbouw 2026 - H15/BRANDBOOK: nooit emoji als icoon.
   Overschrijft de emoji-watermerken uit de oude landing-hero styling. */
.landing-hero::before {
    content: none !important;
}
