/**
 * Design Tokens - CSS Variables
 * Portfolio Website by Amr Farag
 * All colors, spacing, typography, and design constants
 */

:root {
  /* ============================================
     COLORS
     ============================================ */
  
  /* Primary Brand Colors */
  --primary: #FF8C00;                    /* Orange - Main brand color */
  --primary-hover: #FFA500;              /* Gold - Hover state */
  
  /* Background Colors */
  --dark: #0a0e27;                       /* Navy - Main background */
  --dark-light: #151b3d;                 /* Light navy - Card backgrounds */
  --pure-black: #000000;                 /* Black - Overlays */
  
  /* Text Colors */
  --text: #FFFFFF;                       /* White - Headings */
  --text-light: #E2E8F0;                 /* Light gray - Body text */
  --text-gray: #9ca3af;                  /* Mid gray - Secondary text */
  --text-dark: #64748b;                  /* Dark gray - Disabled text */
  
  /* UI Colors */
  --border: rgba(255, 255, 255, 0.1);    /* Default borders */
  --border-primary: rgba(255, 140, 0, 0.3);  /* Primary borders */
  
  /* Status Colors */
  --success: #10b981;                    /* Green - Success messages */
  --error: #ef4444;                      /* Red - Error messages */
  --warning: #f59e0b;                    /* Amber - Warning messages */
  --info: #3b82f6;                       /* Blue - Info messages */
  
  /* ============================================
     SPACING
     ============================================ */
  
  --space-xs: 0.5rem;      /* 8px */
  --space-sm: 0.75rem;     /* 12px */
  --space-md: 1rem;        /* 16px */
  --space-lg: 1.5rem;      /* 24px */
  --space-xl: 2rem;        /* 32px */
  --space-2xl: 3rem;       /* 48px */
  --space-3xl: 4rem;       /* 64px */
  --space-4xl: 6rem;       /* 96px */
  
  /* ============================================
     TYPOGRAPHY
     ============================================ */
  
  /* 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 */
  --text-5xl: 3rem;        /* 48px */
  --text-6xl: 3.75rem;     /* 60px */
  --text-7xl: 4.5rem;      /* 72px */
  
  /* Font Weights */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  --font-extrabold: 800;
  
  /* Line Heights */
  --leading-tight: 1.2;
  --leading-normal: 1.5;
  --leading-relaxed: 1.7;
  --leading-loose: 2;
  
  /* ============================================
     BORDERS & SHADOWS
     ============================================ */
  
  /* Border Radius */
  --radius-sm: 0.375rem;   /* 6px */
  --radius: 0.5rem;        /* 8px */
  --radius-md: 0.75rem;    /* 12px */
  --radius-lg: 1rem;       /* 16px */
  --radius-xl: 1.5rem;     /* 24px */
  --radius-2xl: 2rem;      /* 32px */
  --radius-full: 9999px;   /* Fully rounded */
  
  /* Shadows */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.4);
  --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 10px 40px rgba(255, 140, 0, 0.3);
  --shadow-glow-strong: 0 0 60px rgba(255, 140, 0, 0.5);
  
  /* ============================================
     TRANSITIONS & ANIMATIONS
     ============================================ */
  
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* ============================================
     Z-INDEX LAYERS
     ============================================ */
  
  --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;
  
  /* ============================================
     BREAKPOINTS (for reference)
     ============================================ */
  
  /* Mobile: 0-640px */
  /* Tablet: 641-1024px */
  /* Desktop: 1025px+ */
  
  /* ============================================
     CONTAINER WIDTHS
     ============================================ */
  
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  --container-2xl: 1400px;
}