/* CSS Custom Properties — VRC Prospects Design System */

:root {
    /* Primary palette — derived from logo (#0082BA) */
    --primary: #0082BA;
    --primary-dark: #006694;
    --primary-light: #d0ebf7;
    --primary-ghost: #e8f5fb;

    /* Neutral tones */
    --text-dark: #1a1a1a;
    --text-body: #333333;
    --text-muted: #555555;
    --text-light: #ffffff;

    /* Backgrounds */
    --bg-page: #ffffff;
    --bg-white: #ffffff;
    --bg-dark: #1a1a1a;

    /* Borders & dividers */
    --border: #d0ebf7;
    --border-strong: #b0dcef;

    /* Accent */
    --accent-gold: #f39c12;
    --success: #28a745;
    --error: #dc3545;

    /* Typography */
    --font-family: 'Exo', sans-serif;
    --font-regular: 400;
    --font-semibold: 600;
    --font-bold: 700;

    --text-xs: 0.75rem;     /* 12px */
    --text-sm: 0.875rem;    /* 14px */
    --text-base: 1rem;      /* 16px */
    --text-lg: 1.125rem;    /* 18px */
    --text-xl: 1.25rem;     /* 20px */
    --text-2xl: 1.5rem;     /* 24px */
    --text-3xl: 2rem;       /* 32px */
    --text-4xl: 2.5rem;     /* 40px */
    --text-5xl: 3rem;       /* 48px */

    /* Spacing scale */
    --space-1: 0.25rem;   /* 4px */
    --space-2: 0.5rem;    /* 8px */
    --space-3: 0.75rem;   /* 12px */
    --space-4: 1rem;      /* 16px */
    --space-5: 1.5rem;    /* 24px */
    --space-6: 2rem;      /* 32px */
    --space-8: 3rem;      /* 48px */
    --space-10: 4rem;     /* 64px */
    --space-12: 6rem;     /* 96px */

    /* Layout */
    --container-max: 1200px;
    --container-padding: var(--space-4);

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.12);

    /* Border radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Z-index scale */
    --z-nav: 100;
    --z-header: 200;
    --z-modal: 300;
    --z-toast: 400;
}
