/* ============================================
   CIFRE ACADEMY - CSS Variables
   ============================================ */

:root {
    /* Primary Colors */
    --primary-blue: #0066FF;
    --dark-blue: #003d99;
    --accent-cyan: #00D4FF;
    
    /* Background Colors */
    --bg-dark: #0a0e27;
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    
    /* Text Colors */
    --text-white: #ffffff;
    --text-gray: #64748b;
    --text-dark: #1e293b;
    
    /* Gradients */
    --gradient-hero: linear-gradient(135deg, #0066FF 0%, #00D4FF 100%);
    --gradient-overlay: linear-gradient(180deg, rgba(0,102,255,0.1) 0%, rgba(0,212,255,0.05) 100%);
    
    /* Shadows */
    --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 102, 255, 0.3);
    --shadow-lg: 0 20px 40px rgba(0, 102, 255, 0.1);
    
    /* Border Radius - Less rounded as requested */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 25px;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Container */
    --container-max: 1400px;
}