/* ============================================
   Theme: Voyagist
   
   Customize colors, typography, and spacing below.
   Changes here affect all pages automatically.
   ============================================ */

:root {
  /* Colors - Light Mode */
  --color-primary: #4F46E5;
  --color-primary-hover: #4338CA;
  --color-accent: #0E7490;
  --color-accent-hover: #155E75;
  --color-background: #F9FAFB;
  --color-backgroundAlt: #FFFFFF;
  --color-text: #111827;
  --color-textMuted: #6B7280;
  --color-textLight: #6B7280;
  --color-border: #E5E7EB;
  --color-success: #10B981;
  --color-error: #EF4444;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 79 70 229;
  --color-accent-rgb: 14 116 144;
  
  /* Typography */
  --font-family: Plus Jakarta Sans, system-ui, sans-serif;
  --font-display: Sora, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;
  
  /* Spacing */
  --radius: 1rem;
  --radius-small: 0.5rem;
  --radius-large: 1.5rem;
  --radius-full: 9999px;
  
  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(99, 102, 241, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(99, 102, 241, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(99, 102, 241, 0.25);
  
  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #818CF8;
  --color-primary-hover: #6366F1;
  --color-accent: #22D3EE;
  --color-accent-hover: #0891B2;
  --color-background: #0F172A;
  --color-backgroundAlt: #1E293B;
  --color-text: #F8FAFC;
  --color-textMuted: #94A3B8;
  --color-textLight: #94A3B8;
  --color-border: #334155;
  --color-success: #34D399;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 129 140 248;
  --color-accent-rgb: 34 211 238;
}
