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

:root {
    /* Brand Colors - CEMI Visual Identity */
    --color-bg: #0a0f14;
    --color-bg-card: #0f1a20;
    --color-primary: #a70000;
    --color-primary-dark: #700000;
    --color-secondary: #2F4F6F;
    --color-golden: #D9A441;

    /* CEMI Extended Palette */
    --color-earth-green: #4B775A;
    --color-clay-brown: #A67F5B;
    --color-neutral-sand: #E0CBA8;

    /* 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, #a70000 0%, #700000 100%);

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

    /* Borders */
    --border-subtle: 1px solid rgba(167, 0, 0, 0.2);
    --border-card: 1px solid rgba(167, 0, 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;
    --radius-full: 9999px;

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

    /* Typography - CEMI: MuseoModerno (display) + Inter (body) */
    --font-heading: 'MuseoModerno', sans-serif;
    --font-body: 'Inter', sans-serif;

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