/* Typography CSS */
h1, .h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: var(--space-md);
}

h2, .h2 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: var(--space-sm);
}

h3, .h3 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: var(--space-sm);
}

h4, .h4 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

h5, .h5 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

h6, .h6 {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: var(--space-xs);
}

p {
  margin-bottom: var(--space-sm);
  line-height: 1.6;
}

.lead {
  font-size: 1.25rem;
  font-weight: 300;
  line-height: 1.5;
}

.small {
  font-size: 0.875rem;
}

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

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

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

.text-light {
  color: var(--text-light);
}

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

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

.text-center {
  text-align: center;
}

.text-right {
  text-align: right;
}

.text-left {
  text-align: left;
}

.text-uppercase {
  text-transform: uppercase;
}

.section-title {
  margin-bottom: var(--space-xs);
  color: var(--text-primary);
  position: relative;
  display: inline-block;
}

.section-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 50px;
  height: 3px;
  background-color: var(--color-primary);
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header .section-title {
  display: inline-block;
}

.section-header .section-title::after {
  left: 50%;
  transform: translateX(-50%);
}

.section-subtitle {
  font-size: 1.25rem;
  color: var(--text-secondary);
  margin-top: var(--space-sm);
}

/* Font weights */
.fw-light {
  font-weight: 300;
}

.fw-normal {
  font-weight: 400;
}

.fw-medium {
  font-weight: 500;
}

.fw-semibold {
  font-weight: 600;
}

.fw-bold {
  font-weight: 700;
}