/* ==========================================
   VARIABLES - css/variables.css
   ========================================== */

:root {
    /* Colors */
    --primary-color: #344998;
    --primary-dark: #263570;
    --primary-light: #4a5fb8;
    --primary-lighter: #6b7fc9;
    --secondary-color: #f8f9fa;
    --accent-color: #FF6B6B;
    --success-color: #4CAF50;
    --warning-color: #FFC107;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --text-lighter: #95a5a6;
    --white: #ffffff;
    --border-color: #e0e0e0;
    
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.12);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.15);
    
    /* Border Radius */
    --border-radius-sm: 8px;
    --border-radius-md: 12px;
    --border-radius-lg: 16px;
    --border-radius-xl: 24px;
    
    /* Transition */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
