/* ── WP Municipal Portal — Accessibility CSS ─────────────────────────────────── */

/* Focus rings */
:focus-visible {
    outline: 3px solid var(--wmp-primary, #2563EB);
    outline-offset: 2px;
    border-radius: 4px;
}

/* Skip to content */
.wmp-skip-link {
    position: absolute;
    top: -40px;
    left: 0;
    background: var(--wmp-primary, #2563EB);
    color: white;
    padding: 8px 16px;
    border-radius: 0 0 8px 0;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    z-index: 999;
    transition: top 0.2s;
}
.wmp-skip-link:focus { top: 0; }

/* High contrast mode */
body.wmp-high-contrast {
    --wmp-primary:  #0000CC;
    --wmp-text:     #000000;
    --wmp-muted:    #333333;
    --wmp-border:   #000000;
    --wmp-bg:       #FFFFFF;
    --wmp-white:    #FFFFFF;
}
body.wmp-high-contrast .wmp-topbar-access { background: #000000; }
body.wmp-high-contrast .wmp-navbar { border-bottom: 2px solid #000000; }
body.wmp-high-contrast .wmp-news-card,
body.wmp-high-contrast .wmp-dept-card,
body.wmp-high-contrast .wmp-doc-item { border: 2px solid #000000; }
body.wmp-high-contrast .wmp-hero-title,
body.wmp-high-contrast .wmp-hero-subtitle { text-shadow: 1px 1px 0 #000; }
body.wmp-high-contrast a { text-decoration: underline; }
body.wmp-high-contrast .wmp-footer-top { background: #000000; }

/* Font scale */
:root { --wmp-font-scale: 1; }
html { font-size: calc(16px * var(--wmp-font-scale)); }

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}
