/* Mind Nav Therapy - Base Styles */

:root {
  /* Colors */
  --navy: #1a3347;
  --slate: #3d5a6c;
  --slate-light: #5a7f99;
  --sage: #7a9e87;
  --sage-dark: #5a8066;
  --sage-light: #a1c4ab;
  --sage-pale: #e8f3ed;
  --coral: #e07856;
  --coral-pale: #fef5f1;
  --cream: #faf8f5;
  --gray-50: #f9fafb;
  --gray-100: #f3f4f6;
  --gray-200: #e5e7eb;
  --gray-300: #d1d5db;
  --text: #1f2937;
  --text-light: #6b7280;

  /* Typography */
  --font-serif: Georgia, 'Times New Roman', serif;
  --font-sans: -apple-system, BlinkMacSystemFont, 'Segoe UI', system-ui, sans-serif;

  /* Spacing */
  --radius: 6px;
  --radius-xl: 12px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font-family: inherit;
}
