@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  /* Brand Colors - Used primarily as elegant accents */
  --color-primary: #6C2B83; /* Deep Purple */
  --color-primary-light: #8e44a8; /* Lighter elegant purple */
  --color-primary-dark: #4a195c;
  
  --color-secondary: #8DC63F; /* Vibrant Green */
  --color-secondary-light: #a4db56;
  --color-secondary-dark: #6e9f2d;
  
  /* Neutral & Background Colors - For massive breathable space */
  --color-text-dark: #1a1b1e; /* Extremely dark charcoal for elegant contrast */
  --color-text-body: #555b66; /* Softer readable grey for body */
  --color-text-light: #ffffff;
  
  --color-bg-light: #ffffff;
  --color-bg-subtle: #f9f9fb; /* Very subtle cool off-white */
  --color-bg-dark: #14151a; /* Elegant extremely dark, not quite black */
  
  --color-border: #e6e8eb; /* Very soft border */
  --color-border-light: rgba(255,255,255,0.1);

  /* Typography - Premium Pairing */
  --font-family-heading: 'Outfit', sans-serif;
  --font-family-body: 'Inter', sans-serif;
  
  /* Font Sizes - More dramatic scale for editorial feel */
  --font-size-xs: 0.75rem;
  --font-size-sm: 0.875rem;
  --font-size-base: 1.0625rem; /* Slightly larger base for readability */
  --font-size-lg: 1.25rem;
  --font-size-xl: 1.5rem;
  --font-size-2xl: 2rem;
  --font-size-3xl: 2.75rem;
  --font-size-4xl: 3.75rem;
  --font-size-5xl: 5rem; /* Massive elegant hero text */

  /* Spacing - MASSIVE increase for "breathing areas" */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 6rem;
  --space-24: 8rem;   /* 128px - Core section padding */
  --space-32: 10rem;  /* 160px - Massive spacer */

  /* Layout */
  --container-width: 1280px; /* Wider for more spacious feel */
  
  /* Border Radius */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  
  /* Shadows - Extremely soft and diffused */
  --shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.03);
  --shadow-md: 0 10px 40px rgba(0, 0, 0, 0.04);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.06);
  --shadow-floating: 0 30px 80px rgba(20, 21, 26, 0.08); /* Float effect */
  
  /* Transitions */
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
