/* CSS Variables - Design System */

:root {
  /* Primary Colors */
  --purple-dark: #2B1A3D;
  --purple-medium: #4A1B5C;
  --purple-light: #6B2E85;
  
  --black-true: #0D0D0D;
  --black-soft: #1A1A1D;
  --black-charcoal: #2D2D30;
  
  --gold-classic: #D4AF37;
  --gold-bright: #F4D03F;
  --gold-dark: #9C7A2F;
  
  --red-dark: #8B0000;
  --red-ruby: #C41E3A;
  --red-burgundy: #5C0A0A;
  
  /* Neutral Colors */
  --cream: #F5F5DC;
  --cream-warm: #E8E8D0;
  --cream-muted: #D3D3C8;
  
  --brown-dark: #4E3629;
  --brown-medium: #6B4E3D;
  
  /* Functional Colors */
  --success: #2E7D32;
  --warning: #F57C00;
  --error: #C62828;
  --info: #1565C0;
  
  /* Font Families */
  --font-heading: 'Cinzel', serif;
  --font-body: 'Roboto', sans-serif;
  --font-accent: 'Great Vibes', cursive;
  
  /* 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: 1.875rem;
  --text-4xl: 2.25rem;
  --text-5xl: 3rem;
  --text-6xl: 3.75rem;
  
  /* Font Weights */
  --weight-light: 300;
  --weight-normal: 400;
  --weight-medium: 500;
  --weight-semibold: 600;
  --weight-bold: 700;
  --weight-black: 900;
  
  /* Line Heights */
  --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.5rem;
  --space-6: 2rem;
  --space-8: 3rem;
  --space-10: 4rem;
  --space-12: 6rem;
  --space-16: 8rem;
  
  /* Shadows */
  --shadow-sm: 0 2px 4px rgba(0,0,0,0.2);
  --shadow-md: 0 4px 8px rgba(0,0,0,0.3);
  --shadow-lg: 0 8px 16px rgba(0,0,0,0.4);
  --shadow-xl: 0 12px 24px rgba(0,0,0,0.5);
  
  --glow-purple: 0 0 20px rgba(107,46,133,0.6);
  --glow-gold: 0 0 20px rgba(212,175,55,0.6);
  
  /* Transitions */
  --transition-fast: 0.15s ease;
  --transition-base: 0.3s ease;
  --transition-slow: 0.5s ease;
  
  /* Breakpoints (for JS) */
  --mobile: 320px;
  --tablet: 768px;
  --desktop: 1024px;
  --wide: 1280px;
}
