/* ========================================
   CSS VARIABLES & CUSTOM PROPERTIES
   ======================================== */

:root {
    /* New 'Sensual & Sophisticated' Palette */
    --color-charcoal: #222222;
    --color-burgundy: #991C39;
    --color-accent-red: #BD160E;
    --color-off-white: #F7F7F7;
    --text-color: var(--color-charcoal);
    --text-muted: #6c757d;
    --font-primary: 'GCBargain', sans-serif;
    --font-heading: 'GCBargain', sans-serif;
    
    /* Background Colors */
    --bg-soft: #F0F0F0;
    --bg-light: #E8E8E8;
    --bg-pure: #FFFFFF;

    /* Layout */
    --header-height: 65px; /* Matches .home .navbar:not(.scrolled) min-height */
    
    /* Hero Logo Path (configurable - can be overridden via data-hero-logo-path on .hero element) */
    --hero-logo-path: 'Pictures/Home/header/BPClogoText.png';
}
