/**
 * CSS Variables - Design Tokens
 * All global design tokens and CSS custom properties
 */

:root {
    /* Colors */
    --color-primary: #ED1C25;
    --color-primary-dark: #c91820;
    --color-primary-hover: #d61620;
    --color-white: #ffffff;
    --color-black: #000000;
    --color-text-dark: #1a1a1a;
    --color-text-light: #666;
    --color-text-muted: #999;
    --color-border-light: #f0f0f0;
    --color-background-light: #fafafa;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 50%;
    
    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 15px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 8px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 12px 35px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-fixed: 1010;
    --z-header: 1011;
    --z-modal: 1020;
    --z-tooltip: 1030;
    
    /* Typography */
    --font-family-primary: 'Mukta', sans-serif;
    --font-family-heading: 'Khand', sans-serif;
    --font-family-accent: 'Kalam', cursive;
    
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
}
