/* NQ Tenpin Booking System - CSS Variables
   Dark Theme with Neon Bowling Alley Vibes */

:root {
    /* Primary Colors - Neon Cyan */
    --primary: #00d4ff;
    --primary-light: #5ce1ff;
    --primary-dark: #00a8cc;
    --primary-glow: rgba(0, 212, 255, 0.4);
    
    /* Secondary - Electric Purple */
    --secondary: #bd00ff;
    --secondary-light: #d44fff;
    --secondary-dark: #9500cc;
    --secondary-glow: rgba(189, 0, 255, 0.4);
    
    /* Accent - Hot Pink */
    --accent: #ff0066;
    --accent-light: #ff4d94;
    --accent-dark: #cc0052;
    --accent-glow: rgba(255, 0, 102, 0.4);
    
    /* Status Colors */
    --success: #00ff88;
    --success-light: #4dffa8;
    --success-dark: #00cc6a;
    --success-glow: rgba(0, 255, 136, 0.3);
    
    --warning: #ffaa00;
    --warning-light: #ffcc4d;
    --warning-dark: #cc8800;
    --warning-glow: rgba(255, 170, 0, 0.3);
    
    --error: #ff3366;
    --error-light: #ff6690;
    --error-dark: #cc2952;
    --error-glow: rgba(255, 51, 102, 0.3);
    
    --info: #00d4ff;
    --info-glow: rgba(0, 212, 255, 0.3);
    
    /* Dark Backgrounds */
    --bg-darkest: #0a0a0f;
    --bg-darker: #0f0f18;
    --bg-dark: #151520;
    --bg-card: #1a1a28;
    --bg-card-hover: #222235;
    --bg-elevated: #252538;
    --bg-input: #12121c;
    
    /* Text Colors */
    --text-primary: #ffffff;
    --text-secondary: #b8b8c8;
    --text-muted: #6b6b80;
    --text-disabled: #45455a;
    --text-inverse: #0a0a0f;
    
    /* Border Colors */
    --border-subtle: rgba(255, 255, 255, 0.06);
    --border-light: rgba(255, 255, 255, 0.1);
    --border-medium: rgba(255, 255, 255, 0.15);
    --border-focus: var(--primary);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--secondary) 100%);
    --gradient-dark: linear-gradient(180deg, var(--bg-darker) 0%, var(--bg-darkest) 100%);
    --gradient-card: linear-gradient(145deg, var(--bg-card) 0%, var(--bg-darker) 100%);
    --gradient-glow: linear-gradient(135deg, var(--primary-glow) 0%, var(--secondary-glow) 100%);
    --gradient-success: linear-gradient(135deg, var(--success) 0%, #00cc88 100%);
    
    /* Shadows */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.2);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
    --shadow-glow-primary: 0 0 30px var(--primary-glow);
    --shadow-glow-secondary: 0 0 30px var(--secondary-glow);
    --shadow-glow-accent: 0 0 30px var(--accent-glow);
    --shadow-glow-success: 0 0 30px var(--success-glow);
    
    /* Typography */
    --font-display: 'Bebas Neue', 'Impact', sans-serif;
    --font-heading: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-body: 'Inter', 'Segoe UI', 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: 2rem;
    --text-4xl: 2.5rem;
    --text-5xl: 3.5rem;
    --text-6xl: 4.5rem;
    --text-7xl: 6rem;
    
    /* Font Weights */
    --font-light: 300;
    --font-normal: 400;
    --font-medium: 500;
    --font-semibold: 600;
    --font-bold: 700;
    --font-extrabold: 800;
    
    /* Line Heights */
    --leading-none: 1;
    --leading-tight: 1.2;
    --leading-snug: 1.375;
    --leading-normal: 1.5;
    --leading-relaxed: 1.625;
    --leading-loose: 2;
    
    /* Letter Spacing */
    --tracking-tight: -0.02em;
    --tracking-normal: 0;
    --tracking-wide: 0.05em;
    --tracking-wider: 0.1em;
    --tracking-widest: 0.2em;
    
    /* Spacing Scale */
    --space-0: 0;
    --space-1: 0.25rem;
    --space-2: 0.5rem;
    --space-3: 0.75rem;
    --space-4: 1rem;
    --space-5: 1.25rem;
    --space-6: 1.5rem;
    --space-8: 2rem;
    --space-10: 2.5rem;
    --space-12: 3rem;
    --space-16: 4rem;
    --space-20: 5rem;
    --space-24: 6rem;
    --space-32: 8rem;
    --space-40: 10rem;
    --space-48: 12rem;
    --space-64: 16rem;
    
    /* Border Radius */
    --radius-none: 0;
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --radius-3xl: 32px;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-base: 250ms ease;
    --transition-slow: 400ms ease;
    --transition-slower: 600ms ease;
    --transition-bounce: 500ms cubic-bezier(0.68, -0.55, 0.265, 1.55);
    --transition-smooth: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index Scale */
    --z-behind: -1;
    --z-base: 0;
    --z-dropdown: 100;
    --z-sticky: 200;
    --z-fixed: 300;
    --z-modal-backdrop: 400;
    --z-modal: 500;
    --z-popover: 600;
    --z-tooltip: 700;
    --z-toast: 800;
    --z-max: 9999;
    
    /* Container Widths */
    --container-xs: 480px;
    --container-sm: 640px;
    --container-md: 768px;
    --container-lg: 1024px;
    --container-xl: 1280px;
    --container-2xl: 1440px;
    --container-full: 100%;
    
    /* Breakpoints (for reference) */
    --breakpoint-sm: 640px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
    
    /* Component Specific */
    --header-height: 80px;
    --sidebar-width: 280px;
    --sidebar-collapsed: 80px;
    --footer-height: 60px;
    --input-height: 48px;
    --input-height-sm: 36px;
    --input-height-lg: 56px;
    --button-height: 48px;
    --button-height-sm: 36px;
    --button-height-lg: 56px;
}
