/* Dark Theme (default) */
:root {
  /* Colors - Dark theme with Latin warmth */
  --color-bg-primary: #0f0f0f;
  --color-bg-secondary: #1a1a1a;
  --color-bg-tertiary: #242424;
  --color-bg-elevated: #2a2a2a;
  
  /* Accent colors - Coral/Orange vibrancy */
  --color-accent-primary: #ff6b4a;
  --color-accent-secondary: #ff8f73;
  --color-accent-muted: rgba(255, 107, 74, 0.15);
  --color-accent-hover: #ff8561;
  
  /* Secondary accent - Golden warmth */
  --color-gold: #ffc144;
  --color-gold-muted: rgba(255, 193, 68, 0.15);
  
  /* Text colors */
  --color-text-primary: #ffffff;
  --color-text-secondary: #a3a3a3;
  --color-text-muted: #6b6b6b;
  --color-text-inverse: #0f0f0f;
  
  /* Status colors */
  --color-success: #22c55e;
  --color-success-muted: rgba(34, 197, 94, 0.15);
  --color-warning: #fbbf24;
  --color-warning-muted: rgba(251, 191, 36, 0.15);
  --color-error: #ef4444;
  --color-error-muted: rgba(239, 68, 68, 0.15);
  --color-info: #3b82f6;
  --color-info-muted: rgba(59, 130, 246, 0.15);
  
  /* Borders */
  --color-border: #2a2a2a;
  --color-border-hover: #3a3a3a;
  --color-border-focus: var(--color-accent-primary);
  
  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 20px rgba(255, 107, 74, 0.3);
  
  /* Typography */
  --font-sans: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-display: 'Sora', var(--font-sans);
  
  /* 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 */
  --font-normal: 400;
  --font-medium: 500;
  --font-semibold: 600;
  --font-bold: 700;
  
  /* Line heights */
  --leading-tight: 1.25;
  --leading-normal: 1.5;
  --leading-relaxed: 1.625;
  
  /* 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;
  --space-20: 5rem;
  --space-24: 6rem;
  
  /* Border radius */
  --radius-sm: 0.25rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-fast: 150ms ease;
  --transition-base: 200ms ease;
  --transition-slow: 300ms ease;
  
  /* Container widths */
  --container-sm: 640px;
  --container-md: 768px;
  --container-lg: 1024px;
  --container-xl: 1280px;
  
  /* Z-index layers */
  --z-dropdown: 100;
  --z-sticky: 200;
  --z-modal: 300;
  --z-toast: 400;
}

/* Light Theme */
[data-theme="light"] {
  /* Colors - Light theme with warm accents */
  --color-bg-primary: #fafafa;
  --color-bg-secondary: #ffffff;
  --color-bg-tertiary: #f5f5f5;
  --color-bg-elevated: #ffffff;
  
  /* Accent colors - Slightly deeper for contrast on light */
  --color-accent-primary: #e85a3a;
  --color-accent-secondary: #ff6b4a;
  --color-accent-muted: rgba(232, 90, 58, 0.1);
  --color-accent-hover: #d14a2a;
  
  /* Secondary accent - Golden warmth */
  --color-gold: #d4a012;
  --color-gold-muted: rgba(212, 160, 18, 0.1);
  
  /* Text colors */
  --color-text-primary: #1a1a1a;
  --color-text-secondary: #525252;
  --color-text-muted: #a3a3a3;
  --color-text-inverse: #ffffff;
  
  /* Status colors - adjusted for light background */
  --color-success: #16a34a;
  --color-success-muted: rgba(22, 163, 74, 0.1);
  --color-warning: #ca8a04;
  --color-warning-muted: rgba(202, 138, 4, 0.1);
  --color-error: #dc2626;
  --color-error-muted: rgba(220, 38, 38, 0.1);
  --color-info: #2563eb;
  --color-info-muted: rgba(37, 99, 235, 0.1);
  
  /* Borders */
  --color-border: #e5e5e5;
  --color-border-hover: #d4d4d4;
  --color-border-focus: var(--color-accent-primary);
  
  /* Shadows - lighter for light mode */
  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
  --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.12);
  --shadow-glow: 0 0 20px rgba(232, 90, 58, 0.2);
}
