/* ==================================================================
   WCAG AAA (7:1) contrast overrides — site-wide.
   Selectors are prefixed with `html body` so they out-specify
   Bootstrap's single-class `.text-*` utilities (which use !important)
   REGARDLESS of stylesheet load order. Darkens colours that pass AA
   (4.5:1) but fail AAA (7:1). Only colours that are always on a light
   background are darkened globally here.
   ================================================================== */

/* --- Default (unstyled) links on light backgrounds --- */
:root {
    --bs-link-color: #0842a5;               /* full var (some builds use this, not -rgb) */
    --bs-link-color-rgb: 8, 66, 165;        /* #0842a5 ~7.3:1 on #fff (was #0d6efd 4.5) */
    --bs-link-hover-color: #062f78;
    --bs-link-hover-color-rgb: 6, 47, 120;
}

/* About-Us branch cards: the <h3> title inherits the link colour (blue #0d6efd).
   Target the card link + title directly. The description sets its own colour, so
   it's unaffected. */
html body a.about,
html body a.about .about-card-title {
    color: #0842a5 !important;   /* ~7.3:1 on #fff */
}

/* --- Error / required / danger text (always on a light background) --- */
html body .text-danger,
html body .text-danger *,
html body .field-validation-error,
html body .invalid-feedback,
html body .required {
    color: #a4161a !important;   /* ~7.8:1 on #fff (was #dc3545 4.5) */
}

/* --- Muted / secondary grey text --- */
html body .text-muted,
html body small.text-muted,
html body .text-secondary {
    color: #495057 !important;   /* ~7:1 on #fff */
}

/* --- Bootstrap primary-blue text (used as links/titles on light cards) --- */
html body .text-primary {
    color: #0842a5 !important;   /* ~7.3:1 on #fff (was #0d6efd 4.5) */
}
