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

:root {
  /* Colors - Light Mode */
  --color-primary: #1e3a5f;
  --color-primary-hover: #172e4d;
  --color-accent: #b8860b;
  --color-accent-hover: #996515;
  --color-background: #f8fafc;
  --color-backgroundAlt: #ffffff;
  --color-text: #0f172a;
  --color-textMuted: #475569;
  --color-textLight: #64748b;
  --color-border: #e2e8f0;
  --color-success: #059669;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 30 58 95;
  --color-accent-rgb: 184 134 11;

  /* Typography */
  --font-family: Lato, system-ui, sans-serif;
  --font-display: Libre Baskerville, Georgia, serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 0.5rem;
  --radius-small: 0.25rem;
  --radius-large: 1rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(30, 58, 95, 0.15);
  --shadow-button: 0 10px 30px -10px rgba(30, 58, 95, 0.4);
  --shadow-hover: 0 20px 50px -15px rgba(30, 58, 95, 0.25);

  /* Button Style */
  --button-radius: 0.75rem;
}

/* Colors - Dark Mode */
html.dark {
  --color-primary: #60a5fa;
  --color-primary-hover: #93c5fd;
  --color-accent: #ffd700;
  --color-accent-hover: #ffe44d;
  --color-background: #0f172a;
  --color-backgroundAlt: #1e293b;
  --color-text: #f1f5f9;
  --color-textMuted: #94a3b8;
  --color-textLight: #64748b;
  --color-border: #334155;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 96 165 250;
  --color-accent-rgb: 255 215 0;
}
