/* 
 * CSS Variables and Theme Settings
 * Contains all global variables used throughout the site
 */

:root {
    /* Colors */
    --primary-color: #2563eb;
    --primary-dark: #1d4ed8;
    --secondary-color: #7c3aed;
    --accent-color: #06b6d4;
    --background-color: #f8fafc;
    --text-color: #1e293b;
    --text-light: #64748b;
    --text-dark: #0f172a;
    --success-color: #10b981;
    --error-color: #ef4444;
    --surface-color: #ffffff;
    --surface-hover: #f1f5f9;
    --border-color: #e2e8f0;
    
    /* Typography */
    --font-family: 'Poppins', sans-serif;
    --font-family-secondary: 'Open Sans', sans-serif;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.05), 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1), 0 4px 6px rgba(0, 0, 0, 0.05);
    
    /* Border Radius */
    --border-radius-sm: 6px;
    --border-radius: 10px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition: all 0.3s ease;
}
