/* Portfolio Now - Shared CSS Variables
 * This file contains the core design tokens used across
 * dashboard, landing page, and template systems.
 */

:root {
    /* === SHARED COLOR PALETTE === */
    
    /* Primary Colors - Used across dashboard and components */
    --primary: #086E92;
    --primary-dark: #065778;
    --primary-light: #0a8cb8;
    
    /* Status Colors - Consistent across all systems */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    
    /* Business-Friendly Colors - Goedly Branding */
    --business-primary: #086E92;      /* Goedly blue */
    --business-secondary: #E4E264;    /* Goedly yellow */
    --business-accent: #58B748;       /* Goedly green */
    --business-success: #58B748;      /* Growth green (same as accent) */
    --business-neutral: #6b7280;      /* Professional gray */
    --business-light: #f8fafc;        /* Clean, soft background */
    --business-white: #ffffff;        /* Pure white */
    
    /* Text Colors */
    --text: #111827;
    --text-secondary: #6b7280;
    --text-muted: #9ca3af;
    --text-light: #ffffff;
    
    /* Background Colors */
    --bg: #ffffff;
    --bg-card: #f9fafb;
    --bg-secondary: #f3f4f6;
    --bg-soft: #f8fafc;
    --bg-gradient: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    
    /* Border Colors */
    --border-color: #e5e7eb;
    --border-light: #f1f5f9;
    --border-soft: rgba(0, 0, 0, 0.08);
    
    /* === CYBERPUNK THEME COLORS === */
    /* Used primarily for landing page but available system-wide */
    --electric-blue: #00d4ff;
    --cyber-purple: #7c3aed;
    --neon-green: #00ff88;
    --plasma-pink: #ff0080;
    --quantum-gold: #ffd700;
    --void-black: #0a0a0f;
    --space-gray: #1a1a2e;
    --neural-white: #ffffff;
    --glass-white: rgba(255, 255, 255, 0.1);
    
    /* === SPACING SCALE === */
    --space-xs: 0.25rem;     /* 4px */
    --space-sm: 0.5rem;      /* 8px */
    --space-md: 1rem;        /* 16px */
    --space-lg: 1.5rem;      /* 24px */
    --space-xl: 2rem;        /* 32px */
    --space-2xl: 3rem;       /* 48px */
    
    /* === BORDER RADIUS === */
    --radius: 2px;
    --radius-sm: 4px;
    --radius-md: 6px;
    --radius-lg: 8px;
    --radius-xl: 12px;
    --radius-2xl: 16px;
    --radius-round: 50%;
    
    /* === SHADOWS === */
    --shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.07);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    --glow-shadow: 0 0 40px;
    
    /* === TYPOGRAPHY === */
    --font-family: -apple-system, BlinkMacSystemFont, 'SF Pro Display', sans-serif;
    --font-family-mono: 'JetBrains Mono', monospace;
    --font-family-space: 'Space Grotesk', sans-serif;
    
    /* Font Sizes */
    --text-xs: 0.75rem;      /* 12px */
    --text-sm: 0.875rem;     /* 14px */
    --text-base: 1rem;       /* 16px */
    --text-lg: 1.125rem;     /* 18px */
    --text-xl: 1.25rem;      /* 20px */
    --text-2xl: 1.5rem;      /* 24px */
    --text-3xl: 1.875rem;    /* 30px */
    --text-4xl: 2.25rem;     /* 36px */
    
    /* Font Weights */
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    
    /* Line Heights */
    --line-height-tight: 1.25;
    --line-height-normal: 1.5;
    --line-height-relaxed: 1.75;
    
    /* === LAYOUT === */
    --sidebar-width: 280px;
    --header-height: 60px;
    --max-width: 1400px;
    
    /* === BREAKPOINTS === */
    --breakpoint-sm: 480px;
    --breakpoint-md: 768px;
    --breakpoint-lg: 1024px;
    --breakpoint-xl: 1280px;
    --breakpoint-2xl: 1536px;
    
    /* === TRANSITIONS === */
    --transition-fast: 0.15s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* === Z-INDEX SCALE === */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
    --z-toast: 1080;
}

/* === SEMANTIC COLOR ALIASES === */
/* These create meaningful names for commonly used colors */
:root {
    /* Dashboard specific semantic colors */
    --dashboard-bg: var(--bg);
    --dashboard-text: var(--text);
    --dashboard-border: var(--border-color);
    --dashboard-sidebar-bg: #f8fafc;
    --dashboard-sidebar-border: #e2e8f0;
    
    /* Landing page specific semantic colors */
    --landing-primary: var(--business-primary);
    --landing-secondary: var(--business-secondary);
    --landing-accent: var(--business-accent);
    --landing-bg: var(--business-white);
    --landing-text: var(--text);
    
    /* Landing page cyberpunk theme (fallback) */
    --landing-cyber-primary: var(--electric-blue);
    --landing-cyber-secondary: var(--neon-green);
    --landing-cyber-accent: var(--plasma-pink);
    --landing-cyber-bg: var(--void-black);
    --landing-cyber-text: var(--neural-white);
    
    /* Component semantic colors */
    --button-primary-bg: var(--primary);
    --button-primary-text: var(--neural-white);
    --button-secondary-bg: rgba(0, 0, 0, 0.04);
    --button-secondary-text: var(--text);
    
    /* Form semantic colors */
    --input-bg: rgba(255, 255, 255, 0.1);
    --input-border: 2px solid rgba(0, 0, 0, 0.1);
    --input-focus-border: var(--primary);
    
    /* Status semantic colors */
    --status-success-bg: var(--success);
    --status-warning-bg: var(--warning);
    --status-error-bg: var(--error);
}