/* =============================================================================
   WLTH Accessibility Stylesheet — P11
   WCAG 2.1 AA compliance helpers
   ============================================================================= */

/* ── Focus indicators ──────────────────────────────────────────────────────── */
*:focus-visible {
    outline: 2px solid #C8A96E;
    outline-offset: 2px;
}

/* ── 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;
    }
}

/* ── Screen-reader-only (fallback if Tailwind sr-only missing) ─────────── */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* ── Skip-to-content link ──────────────────────────────────────────────────── */
.skip-to-content {
    position: absolute;
    top: -100%;
    left: 0.5rem;
    z-index: 100;
    padding: 0.5rem 1rem;
    background: #C8A96E;
    color: #1C1022;
    font-weight: 700;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: top 0.15s ease;
}

.skip-to-content:focus {
    top: 0.5rem;
}

/* ── High-contrast text helpers ────────────────────────────────────────────── */
/* Ensure minimum 4.5:1 contrast for normal text, 3:1 for large text */
/* Primary text (#F0EBE6) on dark bg (#1C1022) = ~13:1 — passes AA & AAA */
/* Muted text (rgba(240,235,230,0.65)) on #1C1022 = ~7.5:1 — passes AA */
/* Gold (#C8A96E) on #1C1022 = ~6.5:1 — passes AA */
/* Gold (#C8A96E) on white text = ~2.4:1 — use for large text only or as bg */

/* ── Forced colors / high contrast mode ────────────────────────────────────── */
@media (forced-colors: active) {
    .btn-primary,
    [class*="bg-gold"],
    [class*="bg-\\[\\#C8A96E\\]"] {
        border: 2px solid ButtonText;
    }
}
