/* CSS Variables - Color Palette & Design Tokens */

:root {
    /* Color Palette */
    --color-white: #FFFFFF;
    --color-purple: #A315CE;
    --color-pink: #FF0AD2;
    --color-green: #00A889;
    --color-cyan: #31DAE6;
    --color-light-gray: #E6E6E6;
    --color-dark: #0F0E0E;
    
    /* Primary Colors (Interchangeable) */
    --color-primary-cyan: var(--color-cyan);
    --color-primary-pink: var(--color-pink);
    
    /* Gradients */
    --gradient-purple-pink: linear-gradient(135deg, var(--color-purple) 0%, var(--color-pink) 100%);
    --gradient-green-cyan: linear-gradient(135deg, var(--color-green) 0%, var(--color-cyan) 100%);
    --gradient-pink-purple: linear-gradient(135deg, var(--color-pink) 0%, var(--color-purple) 100%);
    --gradient-cyan-green: linear-gradient(135deg, var(--color-cyan) 0%, var(--color-green) 100%);
    
    /* Typography */
    --font-family-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-family: var(--font-family-body);
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    
    /* Font Sizes */
    --font-size-xs: 0.75rem;      /* 12px */
    --font-size-sm: 0.875rem;     /* 14px */
    --font-size-base: 1rem;       /* 16px */
    --font-size-lg: 1.125rem;     /* 18px */
    --font-size-xl: 1.25rem;      /* 20px */
    --font-size-2xl: 1.5rem;      /* 24px */
    --font-size-3xl: 1.875rem;    /* 30px */
    --font-size-4xl: 2.25rem;     /* 36px */
    --font-size-5xl: 3rem;        /* 48px */
    --font-size-6xl: 3.75rem;     /* 60px */
    --font-size-7xl: 4.5rem;      /* 72px */
    
    /* Spacing */
    --spacing-xs: 0.25rem;   /* 4px */
    --spacing-sm: 0.5rem;    /* 8px */
    --spacing-md: 1rem;      /* 16px */
    --spacing-lg: 1.5rem;    /* 24px */
    --spacing-xl: 2rem;      /* 32px */
    --spacing-2xl: 3rem;     /* 48px */
    --spacing-3xl: 4rem;     /* 64px */
    --spacing-4xl: 6rem;     /* 96px */
    --spacing-5xl: 8rem;     /* 128px */
    
    /* Border Radius */
    --radius-sm: 0.25rem;    /* 4px */
    --radius-md: 0.5rem;     /* 8px */
    --radius-lg: 0.75rem;    /* 12px */
    --radius-xl: 1rem;       /* 16px */
    --radius-2xl: 1.5rem;    /* 24px */
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 350ms ease;
    --transition-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-Index */
    --z-base: 1;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal: 400;
    --z-popover: 500;
    --z-tooltip: 600;
}

/* Dark Theme (Default) */
[data-theme="dark"] {
    --bg-primary: #0F0E0E;
    --bg-secondary: #1A1919;
    --bg-tertiary: #252424;
    --bg-hover: #2F2E2E;
    --bg-overlay: rgba(15, 14, 14, 0.9);
    
    --text-primary: #FFFFFF;
    --text-secondary: #E6E6E6;
    --text-tertiary: #B3B3B3;
    --text-muted: #808080;
    
    --border-primary: rgba(230, 230, 230, 0.1);
    --border-secondary: rgba(230, 230, 230, 0.05);
    
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.4);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.6);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.7);
    
    --glow-purple: 0 0 20px rgba(163, 21, 206, 0.3);
    --glow-pink: 0 0 20px rgba(255, 10, 210, 0.3);
    --glow-cyan: 0 0 20px rgba(49, 218, 230, 0.3);
    --glow-green: 0 0 20px rgba(0, 168, 137, 0.3);
}

/* Light Theme */
[data-theme="light"] {
    --bg-primary: #F0EEEE;
    --bg-secondary: #E6E4E4;
    --bg-tertiary: #D8D6D6;
    --bg-hover: #CCCACA;
    --bg-overlay: rgba(240, 238, 238, 0.95);

    --text-primary: #111010;
    --text-secondary: #2A2929;
    --text-tertiary: #4A4848;
    --text-muted: #6E6C6C;

    --border-primary: rgba(15, 14, 14, 0.12);
    --border-secondary: rgba(15, 14, 14, 0.06);

    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.13);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.16);

    --glow-purple: 0 0 20px rgba(163, 21, 206, 0.15);
    --glow-pink: 0 0 20px rgba(255, 10, 210, 0.15);
    --glow-cyan: 0 0 20px rgba(49, 218, 230, 0.15);
    --glow-green: 0 0 20px rgba(0, 168, 137, 0.15);
}
