/**
 * CSS Variables - Design Tokens
 * 
 * @package Artur_Developer
 */

:root {
    /* ==========================================================================
       Colors - Figma Design System
       ========================================================================== */
    
    /* Primary Colors */
    --color-primary: #C9A227;
    --color-primary-light: #D4B23D;
    --color-primary-dark: #A88B1F;
    
    /* Background Colors */
    --color-bg-primary: #0A0A0A;
    --color-bg-secondary: #111111;
    --color-bg-tertiary: #1A1A1A;
    --color-bg-card: #141414;
    
    /* Text Colors */
    --color-text-primary: #FFFFFF;
    --color-text-secondary: #A0A0A0;
    --color-text-muted: #666666;
    
    /* Accent Colors */
    --color-accent-gold: #C9A227;
    --color-accent-gold-light: #E5C54D;
    --color-border: #2A2A2A;
    --color-border-gold: rgba(201, 162, 39, 0.3);
    
    /* ==========================================================================
       Gradients & Shadows
       ========================================================================== */
    
    --gradient-primary: linear-gradient(135deg, var(--color-primary) 0%, var(--color-primary-light) 100%);
    --gradient-hero: linear-gradient(180deg, var(--color-bg-primary) 0%, var(--color-bg-secondary) 100%);
    
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.4), 0 2px 4px -1px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.4), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --shadow-glow: 0 0 40px rgba(201, 162, 39, 0.2);
    
    /* ==========================================================================
       Typography
       ========================================================================== */
    
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-mono: 'JetBrains Mono', 'Fira Code', monospace;
    
    /* Font Sizes */
    --text-xs: 0.75rem;
    --text-sm: 0.875rem;
    --text-base: 1rem;
    --text-lg: 1.125rem;
    --text-xl: 1.25rem;
    --text-2xl: 1.5rem;
    --text-3xl: 1.875rem;
    --text-4xl: 2.25rem;
    --text-5xl: 3rem;
    --text-6xl: 3.75rem;
    
    /* ==========================================================================
       Spacing
       ========================================================================== */
    
    --spacing-xs: 0.25rem;
    --spacing-sm: 0.5rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 4rem;
    
    /* ==========================================================================
       Border Radius
       ========================================================================== */
    
    --radius-sm: 0.25rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* ==========================================================================
       Transitions
       ========================================================================== */
    
    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* ==========================================================================
       Layout
       ========================================================================== */
    
    --container-max: 1200px;
    --container-padding: 1.5rem;
    --header-height: 72px;
}

/* Light theme (not used in current design) */
[data-theme="light"] {
    --color-bg-primary: #FFFFFF;
    --color-bg-secondary: #F5F5F5;
    --color-bg-tertiary: #E5E5E5;
    --color-bg-card: #FFFFFF;
    --color-text-primary: #0A0A0A;
    --color-text-secondary: #4A4A4A;
    --color-text-muted: #888888;
}
