/*
 * Typography System
 * Defines all text styles and type scales
 */

.text-h1 {
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--theme-text-primary);
}

.text-h2 {
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: var(--theme-text-primary);
}

.text-h3 {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
  color: var(--theme-text-primary);
}

.text-h4 {
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--theme-text-primary);
}

.text-body {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  color: var(--theme-text-primary);
}

.text-body-small {
  font-size: 0.875rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--theme-text-secondary);
}

.text-caption {
  font-size: 0.75rem;
  font-weight: 400;
  line-height: 1.4;
  color: var(--theme-text-secondary);
}

.text-mono {
  font-family: var(--font-family-mono);
  font-size: 0.875rem;
  line-height: 1.5;
}

.text-link {
  color: var(--theme-accent);
  text-decoration: none;
  transition: opacity var(--transition-speed);
}

.text-link:hover {
  opacity: 0.8;
  text-decoration: underline;
}

.text-muted {
  color: var(--theme-text-secondary);
}

.text-primary {
  color: var(--theme-text-primary);
}

.text-accent {
  color: var(--theme-accent);
}

.text-highlight {
  color: var(--theme-highlight);
}