/* ==========================================================================
   TITLES COMPONENT
   Reusable title patterns for pages and sections
   Used in: about.html, trajectory.html, blog.html, contact.html, and all sections
   ========================================================================== */

/* Page Header (Hero Title Pattern)
   ========================================================================== */

.page-header {
  text-align: center;
  padding: 5rem 1.5rem;
}

.page-header__container {
  padding: 0 1.5rem;
  max-width: 56rem;
  margin: 0 auto;
}

.page-header__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--color-primary-40);
  margin-bottom: 1rem;
}

.page-header__title {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 400;
  margin-bottom: 1.5rem;
  color: var(--color-primary);
  line-height: 1.2;
}

.page-header__title--large {
  font-size: 3rem;
}

.page-header__title-highlight {
  font-style: italic;
}

.page-header__description {
  font-size: 1rem;
  line-height: 1.625;
  color: var(--color-primary-70);
  max-width: 42rem;
  margin: 0 auto;
}

/* Section Header (Section Title Pattern)
   ========================================================================== */

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.section-header__label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  font-weight: 700;
  color: var(--color-primary-40);
  margin-bottom: 1rem;
}

.section-header__title {
  font-family: var(--font-serif);
  font-size: 2.25rem;
  font-weight: 400;
  color: var(--color-primary);
  line-height: 1.2;
}

.section-header__title-highlight {
  font-style: italic;
}

.section-header__description {
  font-size: 0.875rem;
  line-height: 1.625;
  color: var(--color-primary-60);
  margin-top: 1rem;
  max-width: 48rem;
  margin-left: auto;
  margin-right: auto;
}

/* Responsive Adjustments
   ========================================================================== */

@media (min-width: 768px) {
  .page-header__title {
    font-size: 3.5rem;
  }
  
  .page-header__title--large {
    font-size: 4.5rem;
  }
  
  .section-header__title {
    font-size: 2.75rem;
  }
}

@media (min-width: 1024px) {
  .page-header__title {
    font-size: 4rem;
  }
  
  .page-header__title--large {
    font-size: 5rem;
  }
  
  .section-header__title {
    font-size: 3rem;
  }
}
