/* ================================
   CSS VARIABLES (Design Tokens)
   ================================
   
   Purpose: Central location for all design values
   Benefits: Change colors/fonts globally from one place
   Usage: var(--primary-color)
*/

:root {
    /* Color Palette */
    --primary-color: #76FF03;

    /* 2. Darker version for Hover effects (Text darker on hover) */
    --primary-dark: #64DD17;

    /* 3. Secondary Color - A rich Emerald Green 
       (Replaces the old Orange #f7931e) */
    --secondary-color: #00C853;

    /* 4. The Gradient - Flows from Bright Lime to Rich Emerald 
       (Replaces the Orange-to-Orange gradient) */
    --primary-gradient: linear-gradient(135deg, #76FF03 0%, #00C853 100%);

    --dark-bg: #1a1a1a;
    --darker-bg: #0a0a0a;
    --light-bg: #f5f5f5;
    --white: #ffffff;

    --text-dark: #333333;
    --text-light: #666666;
    --text-white: #ffffff;

    /* Typography */
    --font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    --font-size-base: 16px;
    --font-size-large: 1.1rem;
    --font-size-xlarge: 1.5rem;
    --font-size-hero: 3.5rem;
    --line-height: 1.6;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 3rem;
    --spacing-xl: 4rem;

    /* Layout */
    --container-width: 1200px;
    --border-radius: 10px;
    --border-radius-sm: 5px;
    --border-radius-lg: 50px;

    /* Shadows */
    --shadow-sm: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 5px 15px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 15px 30px rgba(0, 0, 0, 0.3);

    /* Transitions */
    --transition-speed: 0.3s;
    --transition-ease: ease;
}