/* assets/css/variables.css */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800&display=swap');

:root {
    /* Color Palette - Premium Navy and Vibrant Indigo */
    --primary: #4F46E5;          /* Indigo */
    --primary-hover: #4338CA;
    --primary-light: #EEF2F6;
    --primary-glow: rgba(79, 70, 229, 0.15);
    
    --secondary: #0F172A;        /* Slate / Dark Navy */
    --secondary-hover: #1E293B;
    
    --success: #10B981;          /* Emerald Green */
    --success-hover: #059669;
    --success-light: #ECFDF5;
    
    --warning: #F59E0B;          /* Amber */
    --warning-hover: #D97706;
    --warning-light: #FEF3C7;
    
    --danger: #EF4444;           /* Red */
    --danger-hover: #DC2626;
    --danger-light: #FEF2F2;
    
    --info: #06B6D4;             /* Cyan */
    --info-light: #ECFEFF;
    
    /* Grays & Neutrals */
    --bg-light: #F8FAFC;
    --bg-dark: #090D1A;
    --bg-card: #FFFFFF;
    --bg-card-dark: #121829;
    
    --text-main: #0F172A;
    --text-muted: #64748B;
    --text-light: #94A3B8;
    --text-white: #FFFFFF;
    
    --border: #E2E8F0;
    --border-dark: #1E293B;
    --border-hover: #CBD5E1;
    
    /* Typography */
    --font-heading: 'Outfit', 'Inter', -apple-system, sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.08), 0 4px 6px -2px rgba(0, 0, 0, 0.04);
    --shadow-premium: 0 20px 25px -5px rgba(15, 23, 42, 0.1), 0 10px 10px -5px rgba(15, 23, 42, 0.04);
    --shadow-glow: 0 0 30px rgba(79, 70, 229, 0.2);
    
    /* Border Radius */
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}
