/* Typography */

body {
  font-family: var(--font-family-base);
  font-size: var(--font-size-base);
  color: var(--color-text);
  line-height: 1.5;
  background-color: var(--color-background);
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 0.5rem;
  color: var(--color-text-dark);
}

h1 { font-size: 1.875rem; }
h2 { font-size: 1.5rem; }
h3 { font-size: 1.25rem; }
h4 { font-size: 1.125rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

p {
  margin-bottom: 1rem;
}

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color var(--transition-speed) var(--transition-timing);
}

a:hover {
  color: var(--color-primary-dark);
  text-decoration: underline;
}

strong {
  font-weight: 600;
}

small {
  font-size: var(--font-size-sm);
  color: var(--color-text-light);
}

code {
  font-family: 'Courier New', monospace;
  font-size: 0.9em;
  padding: 0.125rem 0.25rem;
  background-color: var(--color-gray-100);
  border-radius: var(--border-radius-sm);
}

.text-center  { text-align: center; }
.text-right   { text-align: right; }
.text-left    { text-align: left; }
.text-muted   { color: var(--color-text-light); }
.text-error   { color: var(--color-error); }
.text-success { color: var(--color-success); }
.text-sm      { font-size: var(--font-size-sm); }
.text-xs      { font-size: var(--font-size-xs); }
