/* ==========================================================
   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: #C36312 !important;
    --bs-dark-rgb: 195, 99, 18 !important;

     --bs-primary: #151515 !important;
    --bs-primary-rgb: 21, 21, 21 !important;

    --bs-secondary: #075E5C !important;
    --bs-secondary-rgb: 7, 94, 92 !important;

    --bs-light: #F2C7A2 !important;
    --bs-light-rgb: 242, 199, 162 !important;

    --bs-accent: #DD904F !important;
    --bs-accent-rbg: 221, 144, 79 !important;

    --bs-body-bg: #fff !important;
    --bs-body-color: #151515 !important;

    --bs-link-color: var(--bs-primary) !important;
    --bs-link-hover-color: #9a440e !important;
}

