/* ===================================
   DESIGN TOKENS - Canva-Style Theme
   =================================== */

:root {
  /* Colors - Dark Theme */
  --color-bg-primary: #0a0a0b;
  --color-bg-secondary: #111113;
  --color-bg-tertiary: #1a1a1e;
  --color-bg-card: rgba(255, 255, 255, 0.03);
  --color-bg-glass: rgba(20, 20, 25, 0.85);

  /* Text Colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: rgba(255, 255, 255, 0.7);
  --color-text-muted: rgba(255, 255, 255, 0.5);

  /* Accent Gradients */
  --gradient-primary: linear-gradient(135deg, #8b5cf6 0%, #06b6d4 100%);
  --gradient-accent: linear-gradient(135deg, #c653f4 0%, #4e69ff 100%);
  --gradient-warm: linear-gradient(135deg, #f97316 0%, #ec4899 100%);
  --gradient-glow: linear-gradient(135deg, rgba(139, 92, 246, 0.4) 0%, rgba(6, 182, 212, 0.4) 100%);

  /* Solid Colors */
  --color-purple: #8b5cf6;
  --color-cyan: #06b6d4;
  --color-pink: #ec4899;
  --color-orange: #f97316;
  --color-green: #22c55e;

  /* Border */
  --color-border: rgba(255, 255, 255, 0.06);
  --color-border-accent: rgba(139, 92, 246, 0.3);

  /* Typography - Premium Fonts */
  --font-display: 'Playfair Display', Georgia, serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Font Sizes */
  --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: 2rem;
  --text-4xl: 2.5rem;
  --text-5xl: 3.5rem;

  /* 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;

  /* Border Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 40px rgba(139, 92, 246, 0.3);

  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 250ms ease;
  --transition-slow: 400ms ease;

  /* Z-Index */
  --z-base: 1;
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-fixed: 300;
  --z-modal: 400;

  /* Layout */
  --header-height: 64px;
  --bottom-nav-height: 72px;
  --container-max: 1400px;
}

/* Responsive Breakpoints */
@media (min-width: 640px) {
  :root {
    --text-3xl: 2.5rem;
    --text-4xl: 3rem;
    --text-5xl: 4rem;
  }
}

@media (min-width: 1024px) {
  :root {
    --bottom-nav-height: 0px;
  }
}