/*
 * ============================================================
 * Crown Gen Enterprises — Brand CSS
 * Version: 1.0.0
 *
 * Brand Palette:
 *   Primary   : #04401d  (dark green)
 *   Secondary : #f6c424  (golden yellow)
 *   Secondary : #f72e33  (red)
 *
 * Changes from original (base colour was #122655 dark blue):
 *   - #122655 → #04401d  on header, footer, scrollbar thumb
 *   - #000000 → #f6c424  on scrollbar track (per client)
 *   - progress-bar gets a gradient #04401d → #f6c424
 *     to make use of both primary and yellow secondary
 
 * by Jackisa Daniel Barack
 * info@jackisa.com || barack@jolis.net
 * ============================================================
 */

/* ── Page header menu ──
   Changed: background #122655 (blue) → #04401d (brand green) */
.page-header .page-header-menu {
    background: #04401d;
}

/* ── Page footer ──
   Changed: background #122655 (blue) → #04401d (brand green)
   Text colour #FFF retained — good contrast on dark green */
.page-footer {
  background: #04401d;
  color: #FFF;
}

/* ── Progress bar ──
   Changed: flat #122655 → gradient #04401d to #f6c424
   Gradient brings in the yellow secondary as a natural accent,
   giving a sense of progression from brand green to gold */
.progress-bar {
  background: linear-gradient(90deg, #04401d 0%, #f6c424 100%);
}

/* ── Custom Scrollbars ──
   Track  : changed #000000 → #f6c424 (brand yellow, per client choice)
   Thumb  : changed #122655 (blue) → #04401d (brand green)
   The dark green thumb over the yellow track keeps clear contrast */
::-webkit-scrollbar { width: 20px; background: #f6c424; }
::-webkit-scrollbar-thumb { background: #04401d; }