/* ==========================================================
   COLOR VARIABLE MAP
   ----------------------------------------------------------
   Quick reference: which variables are used where.
   Theme stylesheets override :root values.

   --bs-dark     : nav bg, divider bg, section-dark bg, footer border
   --bs-light    : nav text, masthead heading, section-light bg, footer bg
   --bs-primary  : masthead bg, nav hover, links, btn-primary, border accents
   --bs-secondary: btn-secondary
   --bs-accent   : divider title, nav active/focus, page-views h1

   SAFE PAIRINGS:
   Background        Text/Accent Options
   ---------------   -------------------
   --bs-dark         --bs-light, --bs-accent, --bs-primary
   --bs-light        --bs-dark, --bs-primary, --bs-secondary
   --bs-primary      --bs-light, --bs-dark
   --bs-secondary    --bs-light
   ========================================================== */

:root {

    --bs-dark: #cc0033 !important;
    --bs-dark-rgb: 204, 0, 51 !important;

    --bs-primary: #000 !important;
    --bs-primary-rgb: 0, 0, 0 !important;

    /* Emerald Green (new secondary) */
    --bs-secondary: #50C878 !important;
    --bs-secondary-rgb: 80, 200, 120 !important;

    --bs-light: #fff !important;
    --bs-light-rgb: 255, 255, 255 !important;

    /* 🍋 Bright Lime for buttons / links */
    --bs-accent: #32CD32 !important;
    /* Lime */
    --bs-accent-rgb: 50, 205, 50 !important;

    --bs-link-color: var(--bs-primary) !important;
    /* Red accent */
    --bs-link-hover-color: #32CD32 !important;
    /* Lime hover */
}


