/* Theme Variables */

:root {
    /* Colors - Muted Professional Palette */
    --color-primary: #2d3748;
    --color-primary-dark: #1a202c;
    --color-primary-light: #4a5568;
    --color-secondary: #718096;
    --color-secondary-dark: #4a5568;
    --color-accent: #48bb78;
    --color-text: #2d3748;
    --color-text-light: #718096;
    --color-text-lighter: #a0aec0;
    --color-bg: #ffffff;
    --color-bg-light: #f7fafc;
    --color-bg-dark: #1a202c;
    --color-border: #e2e8f0;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-xxl: 4rem;
    
    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --font-heading: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    
    /* Breakpoints */
    --breakpoint-sm: 576px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 992px;
    --breakpoint-xl: 1200px;
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.12);
}

