/* ============================================
   CSS Custom Properties - SkillsRepo
   ============================================ */

:root {
  /* Colors - Dark Theme with Emerald/Cyan/Blue - HIGH CONTRAST */
  --bg-primary: #050508;
  --bg-secondary: #0a0a10;
  --bg-tertiary: #12121a;
  --bg-card: rgba(8, 8, 14, 0.95);
  --bg-card-hover: rgba(14, 14, 22, 0.98);

  --text-primary: #ffffff;
  --text-secondary: #c0c0c8;
  --text-muted: #888898;

  --accent-emerald: #34d399;
  --accent-cyan: #22d3ee;
  --accent-blue: #60a5fa;

  --glow-emerald: rgba(52, 211, 153, 0.4);
  --glow-cyan: rgba(34, 211, 238, 0.4);
  --glow-blue: rgba(96, 165, 250, 0.4);

  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(16, 185, 129, 0.4);

  /* Gradients */
  --gradient-hero: linear-gradient(135deg, var(--accent-emerald), var(--accent-cyan), var(--accent-blue));
  --gradient-glow: radial-gradient(ellipse at center, var(--glow-emerald) 0%, transparent 70%);
  --gradient-card: linear-gradient(180deg, var(--bg-card) 0%, rgba(10, 10, 15, 0.9) 100%);

  /* Typography */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-mono: 'JetBrains Mono', 'Fira Code', 'SF Mono', Consolas, monospace;

  --text-xs: 0.75rem;
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;

  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.75;

  /* Spacing */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* Layout */
  --max-width: 1200px;
  --container-padding: var(--space-6);

  /* Borders */
  --radius-sm: 0.375rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px var(--glow-emerald);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-index layers */
  --z-background: -1;
  --z-base: 0;
  --z-card: 10;
  --z-header: 100;
  --z-overlay: 1000;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  :root {
    --text-5xl: 2.25rem;
    --text-6xl: 2.75rem;
    --container-padding: var(--space-4);
  }
}

@media (max-width: 480px) {
  :root {
    --text-4xl: 1.75rem;
    --text-5xl: 2rem;
    --text-6xl: 2.25rem;
  }
}
