/**
 * Xperto Media - Shared CSS Variables
 * Brand colors and design tokens used across all pages
 */

:root {
    /* Brand Colors */
    --color-bg: #0a0f14;
    --color-bg-card: #0f1a20;
    --color-primary: #84bd00;
    --color-primary-dark: #425500;
    --color-secondary: #003473;
    --color-golden: #FFD700;

    /* Accent Colors (Infographics) */
    --neon-green: #00ff88;
    --neon-red: #ff4444;
    --neon-blue: #00d4ff;
    --neon-purple: #bf5fff;
    --neon-orange: #ff9500;

    /* Text Colors */
    --color-text: #e8e8e8;
    --color-text-muted: #a0a0a0;

    /* Gradients */
    --gradient-brand: linear-gradient(135deg, #84bd00 0%, #425500 100%);

    /* Shadows */
    --shadow-glow: 0 0 40px rgba(132, 189, 0, 0.15);
    --shadow-card: 0 4px 20px rgba(0, 0, 0, 0.3);

    /* Borders */
    --border-subtle: 1px solid rgba(132, 189, 0, 0.2);
    --border-card: 1px solid rgba(132, 189, 0, 0.1);

    /* Spacing */
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-xxl: 3rem;

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

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Typography */
    --font-heading: 'Rokkitt', serif;
    --font-body: 'Open Sans', sans-serif;

    /* Z-index layers */
    --z-base: 1;
    --z-dropdown: 50;
    --z-sticky: 80;
    --z-overlay: 90;
    --z-modal: 100;
    --z-toast: 110;
}
