:root {
    /* Colors */
    --color-primary: #2c3e50;
    --color-secondary: #3498db;
    --color-accent: #e74c3c;
    --color-success: #2ecc71;
    --color-warning: #f1c40f;
    --color-error: #e74c3c;
    --color-text: #333333;
    --color-text-light: #ffffff;
    --color-background: #ffffff;
    --color-background-alt: #f5f5f5;
    
    /* Typography */
    --font-family-base: 'Poppins', sans-serif;
    --font-family-heading: 'Poppins', sans-serif;
    --font-family-special: 'Poppins', sans-serif;
    --font-size-base: 16px;
    --font-size-sm: 0.875rem;
    --font-size-md: 1rem;
    --font-size-lg: 1.25rem;
    --font-size-xl: 1.5rem;
    --font-size-2xl: 2rem;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-bold: 700;
    --line-height-base: 1.5;
    --line-height-heading: 1.2;
    
    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* Layout */
    --container-width: 1200px;
    --container-padding: var(--spacing-md);
    --grid-gap: var(--spacing-md);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Shadows */
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    
    /* Z-index */
    --z-index-dropdown: 1000;
    --z-index-sticky: 1020;
    --z-index-fixed: 1030;
    --z-index-modal-backdrop: 1040;
    --z-index-modal: 1050;
    --z-index-popover: 1060;
    --z-index-tooltip: 1070;
}

/* Dark theme variables */
[data-theme="dark"] {
    --color-primary: #3498db;
    --color-secondary: #2c3e50;
    --color-text: #ffffff;
    --color-text-light: #333333;
    --color-background: #1a1a1a;
    --color-background-alt: #2d2d2d;
} 