/* =========================================================
   SCOTT PRICE MEDIA
   ACCESSIBILITY CONTROLS
   ========================================================= */


/* ---------------------------------------------------------
   CONTROL CENTER SETTINGS
   --------------------------------------------------------- */

.spm-accessibility-setting {
    padding-block: 0.25rem;
}

.spm-accessibility-controls .form-check-label {
    cursor: pointer;
}

.spm-accessibility-controls .form-check-input {
    cursor: pointer;
}



/* =========================================================
   ENHANCED CONTRAST
   ========================================================= */


/* LIGHT THEME */

html[data-bs-theme="light"].spm-high-contrast {
    --bs-body-bg: #ffffff;
    --bs-body-color: #000000;

    --bs-secondary-color: #212529;

    --bs-border-color: #000000;

    --bs-link-color: #0000ee;
    --bs-link-hover-color: #551a8b;
}


/* DARK THEME */

html[data-bs-theme="dark"].spm-high-contrast {
    --bs-body-bg: #000000;
    --bs-body-color: #ffffff;

    --bs-secondary-color: #e9ecef;

    --bs-border-color: #ffffff;

    --bs-link-color: #8ec5ff;
    --bs-link-hover-color: #ffffff;
}


/* Common high-contrast elements */

html.spm-high-contrast .card,
html.spm-high-contrast .accordion-item,
html.spm-high-contrast .offcanvas,
html.spm-high-contrast .dropdown-menu,
html.spm-high-contrast .list-group-item {
    border-color: var(--bs-border-color) !important;
}



/* =========================================================
   REDUCED MOTION
   ========================================================= */

html.spm-reduced-motion {
    scroll-behavior: auto !important;
}

html.spm-reduced-motion *,
html.spm-reduced-motion *::before,
html.spm-reduced-motion *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;

    transition-duration: 0.01ms !important;
    transition-delay: 0ms !important;

    scroll-behavior: auto !important;
}



/* =========================================================
   UNDERLINED LINKS
   ========================================================= */

html.spm-underline-links a:not(.btn):not(.nav-link):not(.dropdown-item) {
    text-decoration: underline !important;
    text-decoration-thickness: 0.08em !important;
    text-underline-offset: 0.18em !important;
}



/* =========================================================
   ACTIVE TEXT SIZE BUTTON
   ========================================================= */

.spm-text-size-option.active {
    font-weight: 600;
}



/* =========================================================
   ACCESSIBLE KEYBOARD FOCUS
   ========================================================= */

.spm-accessibility-controls button:focus-visible,
.spm-accessibility-controls input:focus-visible {
    outline: 3px solid currentColor;
    outline-offset: 3px;
}