/* ===================================
   CSS Variables - The Chatbot Genius
   =================================== */

:root {
    /* Brand Colors - Van Gogh Inspired */
    --primary-dark: #1a1f71;
    --primary-blue: #4c5fd5;
    --accent-gold: #f9c74f;
    --accent-orange: #f39c12;
    --accent-orange-bright: #ff8c42;
    
    /* Text Colors */
    --text-dark: #333;
    --text-light: #666;
    --text-white: #ffffff;
    
    /* Background Colors */
    --bg-light: #f8f9fa;
    --bg-white: #ffffff;
    --bg-gray: #f0f0f0;
    --bg-dark-blue: #0a0f51;
    
    /* Typography */
    --font-family-base: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-size-base: 16px;
    --line-height-base: 1.6;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-md: 0.95rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 2rem;
    --font-size-4xl: 2.5rem;
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* Spacing */
    --spacing-xs: 4px;
    --spacing-sm: 8px;
    --spacing-md: 12px;
    --spacing-lg: 20px;
    --spacing-xl: 30px;
    --spacing-2xl: 40px;
    --spacing-3xl: 60px;
    
    /* Layout */
    --container-max-width: 1200px;
    --nav-height: 70px;
    
    /* Border Radius */
    --border-radius-sm: 4px;
    --border-radius-md: 5px;
    --border-radius-lg: 8px;
    --border-radius-xl: 12px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 8px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 16px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 12px 24px rgba(0, 0, 0, 0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Z-index Scale */
    --z-dropdown: 1001;
    --z-sticky: 1000;
    --z-modal: 2000;
    --z-tooltip: 3000;
}