/* ADA Compliance Fix — Custom Themes | Frontend Styles */

/* ── Skip Link ───────────────────────────────────────────────────────────── */
.ada-skip-link {
	position: absolute;
	left: -9999px;
	top: auto;
	width: 1px;
	height: 1px;
	overflow: hidden;
}
.ada-skip-link:focus {
	position: fixed;
	top: 0;
	left: 0;
	width: auto;
	height: auto;
	padding: 12px 24px;
	background: #000;
	color: #fff;
	font-size: 16px;
	font-weight: bold;
	z-index: 999999;
	text-decoration: none;
	outline: 3px solid #fff;
	outline-offset: 2px;
}

/* ── Focus Indicators ────────────────────────────────────────────────────── */
a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus,
[tabindex]:focus {
	outline: 3px solid #005fcc !important;
	outline-offset: 2px !important;
}

/* Remove outline only when using mouse (JS adds .ada-using-mouse to body) */
body.ada-using-mouse a:focus,
body.ada-using-mouse button:focus,
body.ada-using-mouse input:focus,
body.ada-using-mouse select:focus,
body.ada-using-mouse textarea:focus,
body.ada-using-mouse [tabindex]:focus {
	outline: none !important;
}

/* ── Placeholder Contrast ────────────────────────────────────────────────── */
::placeholder {
	color: #767676 !important;
	opacity: 1 !important;
}

/* ── 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 Utility ──────────────────────────────────────────── */
.ada-sr-only {
	position: absolute !important;
	width: 1px !important;
	height: 1px !important;
	padding: 0 !important;
	margin: -1px !important;
	overflow: hidden !important;
	clip: rect(0, 0, 0, 0) !important;
	white-space: nowrap !important;
	border: 0 !important;
}

/* ── Fix: Images without alt should be hidden from AT ───────────────────── */
img[alt=""] {
	speak: none;
}

/* ── CF7 Form Error States ───────────────────────────────────────────────── */
.wpcf7-not-valid {
	border-color: #d93025 !important;
	outline: 2px solid #d93025 !important;
}
.wpcf7-not-valid-tip {
	color: #c62828 !important;
}
