/**
 * FightPulse Brand CSS - Single Source of Truth
 *
 * This file contains all brand colors, typography, spacing, and design tokens.
 * NEVER change these values without explicit design approval.
 * All other CSS files should reference these variables.
 *
 * Primary Color: #87001b (Maroon/Wine Red)
 * Font Family: Oswald (headings), System fonts (body)
 */

:root {
    /* ==========================================================================
       BRAND COLORS - DO NOT MODIFY
       ========================================================================== */

    /* Primary Brand Colors */
    --fp-primary: #87001b;
    --fp-primary-dark: #87001b;
    --fp-primary-light: #f87171;
    --fp-primary-hover: #6d0016;

    /* Neutral Colors */
    --fp-white: #ffffff;
    --fp-black: #000000;

    /* Gray Scale */
    --fp-gray-50: #f8f9fa;
    --fp-gray-100: #e9ecef;
    --fp-gray-200: #dee2e6;
    --fp-gray-300: #ced4da;
    --fp-gray-400: #adb5bd;
    --fp-gray-500: #6c757d;
    --fp-gray-600: #495057;
    --fp-gray-700: #343a40;
    --fp-gray-800: #212529;
    --fp-gray-900: #191919;

    /* ==========================================================================
       TEXT COLORS
       ========================================================================== */
    --fp-text-primary: #212529;
    --fp-text-secondary: #495057;
    --fp-text-muted: #6c757d;
    --fp-text-light: #f8f9fa;

    /* ==========================================================================
       BACKGROUND COLORS
       ========================================================================== */
    --fp-bg-primary: #f8f9fa;
    --fp-bg-secondary: #e9ecef;
    --fp-bg-dark: #1a1a1a;
    --fp-bg-card: #ffffff;

    /* ==========================================================================
       BORDER COLORS
       ========================================================================== */
    --fp-border: #dee2e6;
    --fp-border-light: #e9ecef;
    --fp-border-dark: #ced4da;

    /* ==========================================================================
       TYPOGRAPHY - DO NOT MODIFY
       ========================================================================== */

    /* Font Families */
    --fp-font-heading: 'Oswald', sans-serif;
    --fp-font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;

    /* Font Sizes - Fluid Typography */
    --fp-text-xs: 0.75rem;      /* 12px */
    --fp-text-sm: 0.875rem;     /* 14px */
    --fp-text-base: 1rem;       /* 16px */
    --fp-text-lg: 1.125rem;     /* 18px */
    --fp-text-xl: 1.25rem;      /* 20px */
    --fp-text-2xl: 1.5rem;      /* 24px */
    --fp-text-3xl: 1.875rem;    /* 30px */
    --fp-text-4xl: 2.25rem;     /* 36px */

    /* Font Weights */
    --fp-font-normal: 400;
    --fp-font-medium: 500;
    --fp-font-semibold: 600;
    --fp-font-bold: 700;
    --fp-font-extrabold: 800;

    /* Line Heights */
    --fp-leading-tight: 1.2;
    --fp-leading-snug: 1.375;
    --fp-leading-normal: 1.5;
    --fp-leading-relaxed: 1.625;
    --fp-leading-loose: 1.8;

    /* ==========================================================================
       SPACING SYSTEM
       ========================================================================== */
    --fp-space-1: 0.25rem;      /* 4px */
    --fp-space-2: 0.5rem;       /* 8px */
    --fp-space-3: 0.75rem;      /* 12px */
    --fp-space-4: 1rem;         /* 16px */
    --fp-space-5: 1.25rem;      /* 20px */
    --fp-space-6: 1.5rem;       /* 24px */
    --fp-space-8: 2rem;         /* 32px */
    --fp-space-10: 2.5rem;      /* 40px */
    --fp-space-12: 3rem;        /* 48px */
    --fp-space-16: 4rem;        /* 64px */

    /* ==========================================================================
       LAYOUT
       ========================================================================== */
    --fp-container-max: 1200px;
    --fp-container-padding: 20px;
    --fp-content-max: 800px;

    /* ==========================================================================
       BORDER RADIUS
       ========================================================================== */
    --fp-radius-sm: 4px;
    --fp-radius: 8px;
    --fp-radius-lg: 12px;
    --fp-radius-xl: 16px;
    --fp-radius-full: 9999px;

    /* Legacy aliases */
    --fp-radius-small: 4px;

    /* ==========================================================================
       SHADOWS
       ========================================================================== */
    --fp-shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.04);
    --fp-shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06);
    --fp-shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --fp-shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --fp-shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.1);
    --fp-shadow-card: 0 2px 8px rgba(0, 0, 0, 0.06);
    --fp-shadow-card-hover: 0 8px 24px rgba(0, 0, 0, 0.12);

    /* ==========================================================================
       TRANSITIONS
       ========================================================================== */
    --fp-transition: all 0.3s ease;
    --fp-transition-fast: all 0.15s ease;
    --fp-transition-slow: all 0.5s ease;

    /* ==========================================================================
       Z-INDEX SCALE
       ========================================================================== */
    --fp-z-dropdown: 1000;
    --fp-z-sticky: 1020;
    --fp-z-fixed: 1030;
    --fp-z-modal-backdrop: 1040;
    --fp-z-modal: 1050;
    --fp-z-popover: 1060;
    --fp-z-tooltip: 1070;
}

/* ==========================================================================
   DARK MODE SUPPORT (for future use)
   ========================================================================== */
@media (prefers-color-scheme: dark) {
    :root {
        /* Dark mode overrides can be added here */
        /* Currently not implemented - site uses light mode only */
    }
}
