/* Design Tokens & Theme Variables - Purple & Blue Modern */
:root {
  /* Primary Colors - Purple & Blue Theme */
  --navy-dark: #0f0a1e;
  --navy-medium: #1a1530;

  /* Vibrant Accent Colors */
  --primary-purple: #8B5CF6;
  --primary-blue: #3B82F6;
  --electric-blue: #0EA5E9;
  --purple-glow: #A855F7;
  --deep-purple: #7C3AED;
  --gold: #FFB800;

  /* Neutral Colors */
  --beige: #EFE6DE;
  --grey-light: #F8FAFC;
  --grey-medium: #E2E8F0;
  --grey-dark: #475569;
  --white: #FFFFFF;

  /* Semantic Colors */
  --success: #00875A;
  --error: #DE350B;
  --warning: #FF991F;

  /* Text Colors */
  --text-primary: #1E2A38;
  --text-secondary: #4A4A4A;
  --text-light: #FFFFFF;

  /* Typography Scale */
  --font-base: 16px;
  --font-small: 14px;
  --font-large: 18px;
  --font-xlarge: 24px;
  --font-xxlarge: 32px;

  /* Spacing Scale */
  --space-xs: 4px;
  --space-sm: 8px;
  --space-md: 16px;
  --space-lg: 24px;
  --space-xl: 32px;
  --space-xxl: 48px;

  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 12px;
  --radius-xl: 16px;

  /* Shadows */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 20px rgba(0, 0, 0, 0.15);

  /* Touch Targets (WCAG 2.1 AA Compliance) */
  --touch-target: 44px;

  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.2s ease;
  --transition-slow: 0.3s ease;

  /* Container */
  --container-max: 1400px;
}

/* Font Family */
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Helvetica', sans-serif;
}
