/* assets/css/variables.css */
/* Next-Gen Club Brand Variables & Typography System | ALR Digital */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Montserrat:wght@700;800&family=Roboto:wght@400;500;700&display=swap');

:root {
    /* ==========================================
       A. BRAND COLOR TOKENS (Hex Only)
       ========================================== */
    --kruger-yellow: #FFC700;        /* Primary, Buttons, Accents */
    --kruger-black: #000000;         /* Headlines, Navigation, Deep Contrast UI */
    --impala-blue: #005BAC;          /* Links, Secondary Brand Accent from Logo */
    --forest-green: #0B3C26;         /* Section Backgrounds (High-Contrast Athletic Green) */
    --white: #FFFFFF;                /* High-Luminance White Canvas Space */

    /* Glassmorphic Light Navigation Backdrop */
    --color-bg-nav: rgba(255, 255, 255, 0.94); 

    /* Functional Layout Framework Mappings */
    --color-bg-main: #f8fafc;        /* Crisp, Clean Off-White Pitch Canvas */
    --color-bg-card: var(--white);
    --color-primary: var(--kruger-yellow);
    --color-secondary: var(--impala-blue);
    --color-kit-blue: var(--impala-blue);
    --color-kit-volt: var(--kruger-yellow);
    --color-text-main: var(--kruger-black);
    --color-text-muted: #64748b;     /* Slate Grey for sub-text hierarchy */
    --color-live-red: #dc2626;       /* High-Visibility Match Alert Crimson */

    /* ==========================================
       B. TYPOGRAPHY HIERARCHY SYSTEM
       ========================================== */
    --font-headline: 'Bebas Neue', sans-serif;
    --font-sub-headline: 'Montserrat', sans-serif; /* Utilizing ExtraBold (800) weight */
    --font-body: 'Roboto', sans-serif;
    --font-menu: 'Roboto', sans-serif;
    --font-numbers: 'Montserrat', sans-serif;    /* Utilizing Bold (700) weight */

    /* Legacy Variables Mapped to New Identity System */
    --font-display: var(--font-headline);
    --font-sub-display: var(--font-sub-headline);

    /* ==========================================
       C. CHISELED GEOMETRIC LAYOUT MOTIFS
       ========================================== */
    --border-brand: 1px solid rgba(0, 91, 172, 0.18);
    --border-volt-accent: 1px solid rgba(255, 199, 0, 0.3);
    --border-brand-glow: 0px 10px 30px rgba(0, 91, 172, 0.04);
    --border-volt-glow: 0px 4px 20px rgba(255, 199, 0, 0.08);
    --radius-chiseled: 0px;          /* Sharp, fast kit-stripe aesthetics */
    --transition-smooth: all 0.25s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* ==========================================
   GLOBAL BRAND TYPOGRAPHY UTILITIES
   ========================================== */

h1, h2, h3, .font-headline-class {
    font-family: var(--font-headline);
    font-weight: 400; /* Bebas Neue natively scales on size, not weight */
    text-transform: uppercase;
    letter-spacing: 2px;
}

h4, h5, h6, .font-sub-headline-class {
    font-family: var(--font-sub-headline);
    font-weight: 800; /* Maps to Montserrat ExtraBold */
}

/* ==========================================
   BASE NORMALIZATION LAYER
   ========================================== */
body {
    background-color: var(--color-bg-main);
    color: var(--color-text-main);
    font-family: var(--font-body);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

ul, ol {
    list-style: none;
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

.data-table-numbers {
    font-family: var(--font-numbers);
    font-weight: 700; /* Maps to Montserrat Bold */
}