/* Base Typography */
body {
  font-family: var(--font-family-base);
  font-size: var(--font-sm);
  color: var(--dark-color);
  line-height: 1.5;
}

/* Headings */
h1, h2, h3, h4, h5, h6, .navbar-brand, .nav-link {
  font-family: var(--font-family-heading);
  font-weight: 600;
  margin-bottom: var(--spacing-md);
  color: var(--dark-color);
}

h1 {
  font-size: var(--font-xl);
  line-height: 1.2;
}

h2 {
  font-size: calc(var(--font-lg) + 0.1rem);
  line-height: 1.25;
}

h3 {
  font-size: var(--font-lg);
  line-height: 1.3;
}

h4 {
  font-size: calc(var(--font-md) + 0.1rem);
  line-height: 1.35;
}

h5 {
  font-size: var(--font-md);
  line-height: 1.4;
}

h6 {
  font-size: var(--font-sm);
  line-height: 1.45;
}

/* Text utilities */
.text-primary {
  color: var(--primary-color) !important;
}

.text-danger {
  color: var(--danger-color) !important;
}

.text-success {
  color: var(--success-color) !important;
}

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

.text-small {
  font-size: var(--font-xs);
}

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

.text-uppercase {
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* Links */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: color var(--transition-fast);
}

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

/* Custom text elements */
.page-title {
  font-size: var(--font-xl);
  margin-bottom: var(--spacing-lg);
  display: inline-block;
  color: var(--dark-color);
  font-weight: 600;
}

.section-title {
  font-size: var(--font-lg);
  margin-bottom: var(--spacing-md);
  color: var(--dark-color);
  font-weight: 600;
  padding-bottom: var(--spacing-xs);
  border-bottom: 2px solid var(--border-color);
}

/* Icons */
.fas, .fa-solid, .bi {
  color: var(--primary-color);
} 