/* ===== GENERAL TYPOGRAPHY STYLES ===== */

/* ===== BASIC STYLES ===== */
body {
  font-family: var(--font-family-primary);
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
}

/* ===== HEADERS ===== */
.H1 {
  font-size: var(--font-size-4xl);
  font-weight: var(--font-weight-semibold);
  font-family: var(--font-family-primary);
  line-height: var(--line-height-tight);
  margin-bottom: var(--spacing-4xl);
  text-shadow: var(--shadow-sm);
}

.H3 {
  font-family: var(--font-family-primary);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-medium);
  font-style: normal;
  line-height: var(--line-height-relaxed);
  color: var(--color-text-primary);
}

.hero-subtitle {
  font-size: var(--font-size-lg);
  font-weight: var(--font-weight-medium);
  font-family: var(--font-family-primary);
  text-shadow: var(--shadow-sm);
}

.section-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  font-family: var(--font-family-primary);
  margin-bottom: var(--spacing-5xl); /* From divider to content */
  text-align: center;
  position: relative;
}



.section-title::after {
  content: '';
  position: absolute;
  bottom: calc(-1 * var(--spacing-base));
  left: 50%;
  transform: translateX(-50%);
  width: var(--spacing-12xl);
  height: 6px;
  background: url('../images/divider.png') no-repeat center;
  background-size: contain;
}





/* ===== RESPONSIVENESS ===== */
@media (max-width: 768px) {
  .H1 {
    font-size: var(--font-size-2xl);
  }
  
  .hero-subtitle {
    font-size: var(--font-size-base);
  }
  
  .section-title {
    font-size: var(--font-size-2xl);
  }
  

}
