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

:root {
  /* Colors - Light Mode */
  --color-primary: #0369a1;
  --color-primary-hover: #075985;
  --color-accent: #0e7490;
  --color-accent-hover: #155e75;
  --color-background: #f0f9ff;
  --color-backgroundAlt: #ffffff;
  --color-text: #0c4a6e;
  --color-textMuted: #0369a1;
  --color-textLight: #334155;
  --color-border: #bae6fd;
  --color-success: #059669;
  --color-error: #dc2626;

  /* RGB values for opacity utilities */
  --color-primary-rgb: 3 105 161;
  --color-accent-rgb: 14 116 144;

  /* Typography */
  --font-family: Quicksand, system-ui, sans-serif;
  --font-display: Nunito, system-ui, sans-serif;
  --font-weight-heading: 700;
  --font-weight-body: 400;

  /* Spacing */
  --radius: 1.25rem;
  --radius-small: 0.75rem;
  --radius-large: 2rem;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-card: 0 10px 40px -10px rgba(14, 165, 233, 0.2);
  --shadow-button: 0 10px 30px -10px rgba(14, 165, 233, 0.5);
  --shadow-hover: 0 20px 50px -15px rgba(14, 165, 233, 0.3);

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

/* Colors - Dark Mode */
html.dark {
  --color-primary: #38bdf8;
  --color-primary-hover: #7dd3fc;
  --color-accent: #22d3ee;
  --color-accent-hover: #67e8f9;
  --color-background: #082f49;
  --color-backgroundAlt: #0c4a6e;
  --color-text: #e0f2fe;
  --color-textMuted: #7dd3fc;
  --color-textLight: #94a3b8;
  --color-border: #155e75;
  --color-success: #34d399;
  --color-error: #f87171;

  /* RGB values for dark mode */
  --color-primary-rgb: 56 189 248;
  --color-accent-rgb: 34 211 238;
}
