/**
 * CSS Variables - Design System
 * Shared design tokens for consistent styling
 */

:root {
    /* Colors - Primary */
    --color-primary: #32cd32;
    --color-primary-dark: #228b22;
    --color-secondary: #c855c8;

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #32cd32 0%, #c855c8 100%);
    --gradient-bg: linear-gradient(135deg, #f8fffe 0%, #fcf9ff 100%);

    /* Text colors */
    --color-text: #333;
    --color-text-secondary: #666;
    --color-text-muted: #999;
    --color-text-light: #555;

    /* Background colors */
    --bg-white: #fff;
    --bg-light: #f8f9fa;
    --bg-lighter: #f3f3f3;

    /* Status colors */
    --color-success: #32cd32;
    --color-success-bg: #d4edda;
    --color-success-text: #155724;
    --color-error: #d63031;
    --color-error-bg: #ffe6e6;
    --color-error-light: #f8d7da;
    --color-error-text: #721c24;
    --color-warning: #ff6b6b;

    /* Border colors */
    --border-color: #e0e0e0;
    --border-light: #f0f0f0;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 6px 25px rgba(0, 0, 0, 0.12);
    --shadow-primary: 0 4px 20px rgba(50, 205, 50, 0.2);
    --shadow-primary-hover: 0 6px 30px rgba(50, 205, 50, 0.3);
    --shadow-modal: 0 20px 40px rgba(0, 0, 0, 0.15);

    /* Border radius */
    --radius-xs: 8px;
    --radius-sm: 10px;
    --radius-md: 12px;
    --radius-lg: 15px;
    --radius-xl: 20px;
    --radius-2xl: 25px;
    --radius-full: 50px;

    /* Spacing */
    --space-xs: 0.3rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;

    /* Typography */
    --font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.85rem;
    --font-size-base: 0.9rem;
    --font-size-md: 0.95rem;
    --font-size-lg: 1.1rem;
    --font-size-xl: 1.2rem;
    --font-size-2xl: 1.4rem;
    --font-size-3xl: 1.8rem;
    --font-size-4xl: 2rem;
    --font-size-5xl: 2.5rem;
    --font-size-hero: 4.5rem;

    /* Font weights */
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;

    /* Line height */
    --line-height: 1.6;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;

    /* Layout */
    --max-width: 1200px;
    --max-width-sm: 600px;
    --max-width-md: 800px;
    --max-width-lg: 900px;

    /* Z-index */
    --z-modal: 1000;
}
