/* ==========================================================================
   CSS Variables / Design Tokens
   ========================================================================== */

:root {
    /* Colors - Primary */
    --color-primary: #FFED00;
    --color-primary-dark: #E5D500;
    
    /* Colors - Neutrals */
    --color-black: #0C0C0D;
    --color-dark: #1E1E1E;
    --color-gray-dark: #2C2C2C;
    --color-gray: #777777;
    --color-gray-light: #F5F5F5;
    --color-white: #FFFFFF;
    
    /* Typography - Font Families */
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Typography - Font Sizes */
    --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: 4rem;      /* 64px */
    
    /* Typography - Font Weights */
    --font-regular: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Typography - Line Heights */
    --leading-none: 1;
    --leading-tight: 1.1;
    --leading-snug: 1.32;
    --leading-normal: 1.5;
    
    /* Spacing */
    --space-1: 0.25rem;    /* 4px */
    --space-2: 0.5rem;     /* 8px */
    --space-3: 0.625rem;   /* 10px */
    --space-4: 1rem;       /* 16px */
    --space-6: 1.5rem;     /* 24px */
    --space-8: 2rem;       /* 32px */
    --space-12: 3rem;      /* 48px */
    --space-16: 4rem;      /* 64px */
    --space-20: 5rem;      /* 80px */
    
    /* Container */
    --container-max: 1920px;
    --container-padding: 320px;
    --container-padding-md: 80px;
    --container-padding-sm: 24px;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 32px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    
    /* Z-index */
    --z-dropdown: 100;
    --z-navbar: 1000;
    --z-modal: 2000;
}
