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

:root {
  /* Colors - Light Mode */
  --color-primary: #7C3AED;
  --color-primary-hover: #6D28D9;
  --color-accent: #D97706;
  --color-accent-hover: #B45309;
  --color-background: #FEFBFF;
  --color-backgroundAlt: #F5F0FF;
  --color-text: #1E1B4B;
  --color-textMuted: #4F46E5;
  --color-textLight: #818CF8;
  --color-border: #E0E7FF;
  --color-success: #059669;
  --color-error: #DC2626;
  
  /* RGB values for opacity utilities */
  --color-primary-rgb: 124 58 237;
  --color-accent-rgb: 217 119 6;
  
  /* Typography */
  --font-family: Libre Baskerville, Georgia, serif;
  --font-display: Cormorant Garamond, Georgia, serif;
  --font-weight-heading: 600;
  --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(124, 58, 237, 0.25);
  --shadow-button: 0 10px 30px -10px rgba(124, 58, 237, 0.5);
  --shadow-hover: 0 20px 50px -15px rgba(217, 119, 6, 0.3);
  
  /* Button Style */
  --button-radius: 9999px;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #A78BFA;
  --color-primary-hover: #C4B5FD;
  --color-accent: #FCD34D;
  --color-accent-hover: #FDE68A;
  --color-background: #0C0A1D;
  --color-backgroundAlt: #1A1533;
  --color-text: #F5F3FF;
  --color-textMuted: #C4B5FD;
  --color-textLight: #A5B4FC;
  --color-border: #312E81;
  --color-success: #34D399;
  --color-error: #F87171;
  
  /* RGB values for dark mode */
  --color-primary-rgb: 167 139 250;
  --color-accent-rgb: 252 211 77;
}
