/* Color Palette and Variables */
:root {
    /* Colors - Sleek Premium Dark Theme */
    --clr-bg-main: #050505;
    --clr-bg-alt: #0a0b0e;
    --clr-bg-glass: rgba(15, 15, 20, 0.6);
    
    --clr-text-primary: #ffffff;
    --clr-text-secondary: #94a3ba;
    
    /* Solid accents */
    --clr-accent-1: #19abc5; /* Azure */
    --clr-accent-2: #148ea3; /* Darker Azure */
    --clr-accent-gradient: linear-gradient(135deg, #19abc5 0%, #3b82f6 100%);
    
    /* Structural Borders and Shadows */
    --border-color: rgba(255, 255, 255, 0.08);
    --shadow-soft: 0 10px 30px -10px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 20px rgba(25, 171, 197, 0.3);
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-pill: 50px;
    
    /* Typography */
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;
    
    /* Layout */
    --container-width: 1400px;
    --nav-height: 90px;
    
    /* Animations */
    --transition-fast: 0.2s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-base: 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    --transition-slow: 0.8s cubic-bezier(0.25, 0.8, 0.25, 1);
}
