/**
 * CSS Variables for tradingsoft.ai
 * Design: YourPropFirm dark purple theme
 */

:root {
    /* Primary Colors */
    --color-primary: #535ee0;
    --color-primary-dark: #404ac8;
    --color-primary-light: #7984ff;
    --color-primary-rgb: 83, 94, 224;

    /* Secondary Colors */
    --color-secondary: #7984ff;
    --color-secondary-dark: #5a65fe;
    --color-secondary-light: #bab8ff;
    --color-secondary-rgb: 121, 132, 255;

    /* Accent Colors */
    --color-accent: #bab8ff;
    --color-accent-dark: #9996ee;
    --color-accent-light: #d2d1ff;
    --color-accent-rgb: 186, 184, 255;

    /* Background Colors */
    --color-bg: #000000;
    --color-bg-dark: #000000;
    --color-bg-light: #0a0a0a;
    --color-bg-card: rgba(255, 255, 255, 0.04);
    --color-bg-header: #000000;
    --color-bg-footer: #000000;

    /* Text Colors */
    --color-text: #cccccc;
    --color-text-light: #999999;
    --color-text-muted: #666666;
    --color-text-white: #ffffff;
    --color-text-on-primary: #ffffff;
    --color-text-on-secondary: #ffffff;

    /* Border Colors */
    --color-border: #474747;
    --color-border-light: #333333;

    /* Semantic Colors */
    --color-success: #28A745;
    --color-error: #DC3545;
    --color-warning: #FFC107;
    --color-info: #17A2B8;

    /* Gradients */
    --gradient-primary: linear-gradient(155deg, #bab8ff 33.12%, #7984ff 64.09%);
    --gradient-hero: linear-gradient(135deg, #000000 0%, #0a0a14 100%);
    --gradient-card-hover: linear-gradient(135deg, rgba(83, 94, 224, 0.15) 0%, rgba(121, 132, 255, 0.15) 100%);
    --gradient-button: linear-gradient(135deg, #535ee0 0%, #7984ff 100%);

    /* Typography */
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    --font-mono: "SF Mono", Monaco, "Cascadia Code", "Segoe UI Mono", monospace;

    /* Font Sizes - Fluid Typography */
    --text-xs: clamp(0.75rem, 0.7rem + 0.25vw, 0.875rem);
    --text-sm: clamp(0.875rem, 0.8rem + 0.4vw, 1rem);
    --text-base: clamp(1rem, 0.95rem + 0.25vw, 1.125rem);
    --text-lg: clamp(1.125rem, 1rem + 0.5vw, 1.25rem);
    --text-xl: clamp(1.25rem, 1.1rem + 0.75vw, 1.5rem);
    --text-2xl: clamp(1.5rem, 1.25rem + 1.25vw, 2rem);
    --text-3xl: clamp(1.875rem, 1.5rem + 1.875vw, 2.5rem);
    --text-4xl: clamp(2.25rem, 1.75rem + 2.5vw, 3.5rem);

    /* Line Heights */
    --leading-tight: 1.2;
    --leading-normal: 1.5;
    --leading-relaxed: 1.75;

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

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

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;

    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
    --shadow-card: 0 40px 50px -30px rgba(255, 255, 255, 0.08);
    --shadow-card-hover: 0 40px 50px -30px rgba(255, 255, 255, 0.18);
    --shadow-glow-primary: 0 0 40px rgba(83, 94, 224, 0.4);
    --shadow-glow-accent: 0 0 30px rgba(121, 132, 255, 0.3);

    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;

    /* Layout */
    --container-max: 1200px;
    --container-padding: 1rem;
    --header-height: 70px;
    --footer-min-height: 200px;

    /* Z-Index Scale */
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-tooltip: 600;

    /* Carousel Animation */
    --carousel-speed-row1: 240s;
    --carousel-speed-row2: 250s;
    --carousel-speed-row3: 260s;
}
