/**
 * CSS Custom Properties (Variables)
 * NorCal EVs - Modern Glassmorphic Theme
 *
 * This file contains all color schemes, spacing, and design tokens
 * used throughout the website.
 */

:root {
    /* Brand Colors */
    --primary: #00ff88;
    --secondary: #0088ff;
    --dark: #0a0e27;
    --light: #ffffff;

    /* Glassmorphic Effects */
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.1);

    /* Typography */
    --font-primary: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;

    /* Border Radius */
    --radius-sm: 12px;
    --radius-md: 20px;
    --radius-lg: 50px;

    /* Transitions */
    --transition-fast: 0.3s ease;
    --transition-medium: 0.4s ease;
    --transition-slow: 0.8s ease;

    /* Shadows */
    --shadow-sm: 0 10px 30px rgba(0, 255, 136, 0.3);
    --shadow-md: 0 15px 40px rgba(0, 255, 136, 0.4);
    --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.3);

    /* Z-Index Layers */
    --z-background: -1;
    --z-content: 1;
    --z-navbar: 1000;
}
