/* 
   LordsSoftware - CSS Variables 
   Ultra-modern, light-theme only, massive whitespace
*/

:root {
  /* Colors - Pure Light Theme */
  --color-primary: #099DCC;
  /* Primary Blue - used sparingly for accents */
  --color-primary-hover: #0587B0;

  --color-text-main: #111827;
  /* Near black for maximum contrast */
  --color-text-muted: #6B7280;
  /* Soft gray for secondary text */
  --color-text-light: #9CA3AF;

  --color-bg-main: #FFFFFF;
  /* Pure white background */
  --color-bg-alt: #F8FAFC;
  /* Very subtle off-white for section breaks */
  --color-bg-card: #FFFFFF;

  --color-border: #E2E8F0;
  /* Very soft border color */
  --color-border-light: #F1F5F9;

  /* Typography */
  /* Using Space Grotesk for headings for character, Inter for highly legible body */
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  --font-display: 'Space Grotesk', var(--font-sans);

  /* Typography - Consistent Sizes */
  --text-sm: 0.875rem;
  --text-base: 1rem;
  --text-lg: 1.125rem;
  --text-xl: 1.25rem;
  --text-2xl: 1.5rem;
  --text-3xl: 2rem;
  --text-4xl: 3rem;
  --text-5xl: 3.5rem;

  /* Spacing - Expanded scale for massive whitespace */
  --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;
  --space-40: 10rem;
  --space-48: 12rem;
  --space-64: 16rem;

  /* Shadows - Ultra subtle, modern look */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.02);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.03), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.03), 0 4px 6px -2px rgba(0, 0, 0, 0.01);
  --shadow-xl: 0 20px 40px -5px rgba(0, 0, 0, 0.04), 0 10px 10px -5px rgba(0, 0, 0, 0.01);

  /* Border Radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1.5rem;
  --radius-2xl: 2rem;
  --radius-full: 9999px;

  /* Transitions */
  --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 400ms cubic-bezier(0.16, 1, 0.3, 1);
  /* Smoother, Apple-like easing */
  --transition-slow: 700ms cubic-bezier(0.16, 1, 0.3, 1);
}

@media (max-width: 768px) {
  :root {
    --text-lg: 1rem;
    --text-xl: 1.125rem;
    --text-2xl: 1.25rem;
    --text-3xl: 1.5rem;
    --text-4xl: 2rem;
    --text-5xl: 2.5rem;
  }
}