/* ---------- THEME VARIABLES - CENTRAL CONFIGURATION ---------- */
:root {
    /* ===== COLORS ===== */
    --color-primary: #03b9c8;
    --color-primary-dark: #059eaa;
    --color-primary-light: #5ed4df;
    
    --color-dark: #231f1e;
    --color-dark-soft: #3a3634;
    
    --color-light: #ffffff;
    --color-light-gray: #f8f8f8;
    
    --color-accent: #84cc16;
    --color-accent-hover: #a3e635;
    --color-accent-dark: #65a30d;
    
    --color-gray-text: #5a5a5a;
    --color-gray-light: #eef2f6;
    --color-footer-text: #e0e0e0;
    --color-footer-link: #c0c0c0;
    
    /* ===== FONTS ===== */
    --font-heading: 'Anton', 'Impact', sans-serif;
    --font-nav: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-body: 'Roboto Condensed', 'Arial', sans-serif;
    --font-secondary: 'Inter', sans-serif;
    
    /* ===== FONT WEIGHTS ===== */
    --font-weight-light: 300;
    --font-weight-regular: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    
    /* ===== SPACING ===== */
    --spacing-xs: 0.5rem;
    --spacing-sm: 0.75rem;
    --spacing-md: 1rem;
    --spacing-lg: 1.5rem;
    --spacing-xl: 2rem;
    --spacing-2xl: 3rem;
    --spacing-3xl: 5rem;
    
    /* ===== BORDER RADIUS ===== */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 24px;
    --radius-xl: 40px;
    
    /* ===== SHADOWS ===== */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 20px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 12px 24px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 35px rgba(0, 0, 0, 0.1);
    
    /* ===== TRANSITIONS ===== */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* ===== HEADER ===== */
    --header-height-desktop: 80px;
    --header-height-mobile: 60px;
    
    /* ===== Z-INDEX ===== */
    --z-header: 1000;
    --z-modal: 2000;
    --z-dropdown: 1500;
}

/* Dark mode variables (optional - can be toggled) */
[data-theme="dark"] {
    --color-light: #1a1a1a;
    --color-dark: #ffffff;
    --color-light-gray: #2a2a2a;
    --color-gray-light: #333333;
    --color-footer-text: #cccccc;
}