/**
 * FindCoach - CSS Custom Properties (Variables)
 * Design System Foundation
 */

:root {
    /* ============================================
       Colors
       ============================================ */
    
    /* Primary Colors */
    --color-primary: #1a1a1a;
    --color-primary-light: #333333;
    --color-primary-dark: #000000;
    
    /* Accent Colors */
    --color-accent: #3a5a7c;
    --color-accent-light: #4a7a9c;
    --color-accent-dark: #2a4a6c;
    
    /* Neutral Colors */
    --color-white: #ffffff;
    --color-gray-50: #f8f8f8;
    --color-gray-100: #f0f0f0;
    --color-gray-200: #e8e8e8;
    --color-gray-300: #ddd;
    --color-gray-400: #ccc;
    --color-gray-500: #888;
    --color-gray-600: #666;
    --color-gray-700: #555;
    --color-gray-800: #333;
    --color-gray-900: #1a1a1a;
    
    /* Semantic Colors */
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --color-info: #3b82f6;
    
    /* Rating Color */
    --color-star: #f5a623;
    
    /* ============================================
       Typography
       ============================================ */
    
    /* Font Families */
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.8125rem;    /* 13px */
    --text-base: 0.875rem;   /* 14px */
    --text-md: 0.9375rem;    /* 15px */
    --text-lg: 1rem;         /* 16px */
    --text-xl: 1.0625rem;    /* 17px */
    --text-2xl: 1.125rem;    /* 18px */
    --text-3xl: 1.25rem;     /* 20px */
    --text-4xl: 1.5rem;      /* 24px */
    --text-5xl: 1.75rem;     /* 28px */
    --text-6xl: 2rem;        /* 32px */
    --text-7xl: 2.25rem;     /* 36px */
    --text-8xl: 2.5rem;      /* 40px */
    --text-9xl: 3rem;        /* 48px */
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    
    /* Line Heights */
    --leading-tight: 1.2;
    --leading-snug: 1.3;
    --leading-normal: 1.5;
    --leading-relaxed: 1.65;
    --leading-loose: 1.85;
    
    /* ============================================
       Spacing
       ============================================ */
    
    --spacing-0: 0;
    --spacing-1: 4px;
    --spacing-2: 8px;
    --spacing-3: 12px;
    --spacing-4: 16px;
    --spacing-5: 20px;
    --spacing-6: 24px;
    --spacing-8: 32px;
    --spacing-10: 40px;
    --spacing-12: 48px;
    --spacing-16: 64px;
    --spacing-20: 80px;
    
    /* ============================================
       Layout
       ============================================ */
    
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 900px;
    --container-xl: 1100px;
    --container-2xl: 1200px;
    
    /* ============================================
       Border Radius
       ============================================ */
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 20px;
    --radius-full: 9999px;
    
    /* ============================================
       Shadows
       ============================================ */
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 50px rgba(0, 0, 0, 0.15);
    
    /* ============================================
       Transitions
       ============================================ */
    
    --transition-fast: 0.15s ease;
    --transition-base: 0.2s ease;
    --transition-slow: 0.3s ease;
    --transition-slower: 0.5s ease;
    
    /* ============================================
       Z-Index Scale
       ============================================ */
    
    --z-dropdown: 100;
    --z-sticky: 500;
    --z-fixed: 1000;
    --z-modal-backdrop: 9000;
    --z-modal: 9500;
    --z-toast: 10000;
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    :root {
        /* Override colors for dark mode if needed */
    }
}
