/* CSS Variables - Theme Colors, Fonts, Spacing */

:root {
    /* Brand Colors */
    --brand: #1d1167;
    --brand-dark: #160d4d;
    --brand-light: #2d1a7a;
    --brand-secondary: #5c28d6;
    --brand-secondary-light: #8f3fff;
    
    /* Background Colors */
    --bg: #f6f8fc;
    --bg-white: #ffffff;
    --bg-gray: #f1f5f9;
    --bg-light: #f3f4f6;
    --bg-dark: #1e293b;
    --bg-darker: #0f172a;
    
    /* Text Colors */
    --text-primary: #2c3e50;
    --text-secondary: #6b7280;
    --text-light: #9ca3af;
    --text-dark: #1f2937;
    --text-white: #ffffff;
    --text-black: #000000;
    
    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #e9ecef;
    --border-dark: #d1d5db;
    
    /* Status Colors */
    --success: #28a745;
    --error: #dc3545;
    --warning: #ffc107;
    --info: #4285f4;
    --info-dark: #3367d6;
    
    /* Font Families */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Lora', serif;
    --font-ui: 'Lexend', sans-serif;
    --font-dashboard: 'Be Vietnam Pro', sans-serif;
    --font-display: 'Montserrat', sans-serif;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    
    /* 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: 6px;
    --radius-lg: 8px;
    --radius-xl: 10px;
    --radius-2xl: 12px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 15px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 32px rgba(0, 0, 0, 0.18);
    --shadow-brand: 0 4px 12px rgba(29, 17, 103, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index */
    --z-base: 1;
    --z-dropdown: 1000;
    --z-sticky: 10000;
    --z-modal: 10000;
    --z-overlay: 9999;
}

