/*
Theme Name: The7 Child - FACHC Accessibility
Theme URI: 
Description: Child theme for dt-the7, created to isolate WCAG 2.1 AA remediation CSS/overrides from the parent theme so they survive future The7 updates.
Author: Brian Joseph Studios
Author URI: https://brianjosephstudios.com/
Template: dt-the7
Version: 1.0.0
Text Domain: the7-child-fachc
*/

/* ==========================================================================
   FACHC.org — WCAG 2.1 AA Accessibility Remediation Stylesheet
   Managed by Brian Joseph Studios. Do not edit the parent dt-the7 theme.
   All contrast, focus-state, and layout accessibility fixes live here.
   ========================================================================== */

/* --- Color contrast fixes ------------------------------------------------ */
/* Mega-menu hover/active gradients fade into #eeee22, which fails contrast
   against white menu text (~1.24:1). Replaced with a WCAG AA-safe gradient. */
.header-mega-menu .menu-item.active > a,
.header-mega-menu .menu-item:hover > a {
    background-image: linear-gradient(90deg, #1e73be 30%, #0076be 100%) !important;
}

/* --- Visible focus states ------------------------------------------------- */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
.ubtn:focus-visible {
    outline: 3px solid #0076be;
    outline-offset: 2px;
}

/* --- Skip link ------------------------------------------------------------ */
.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    z-index: 100000;
    background: #00035B;
    color: #ffffff;
    padding: 10px 16px;
}
.skip-link:focus {
    left: 8px;
    top: 8px;
}
