/* Page Header Component for Blog, About, Contact Pages
 * Smaller hero section for faster content access
 */

/* Empty header bar for visual separation */
.page-header-bar {
  background-color: #1a1a1a;
  height: 120px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* Page title header - no background image, just title below nav */
.page-title-header {
  background-color: #1a1a1a;
  padding: 2rem 0 1.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.page-title-header h1 {
  font-family: "Abril Fatface", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.2;
}

/* Compact hero section with title (for about/contact) */
.page-header-compact {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  height: 20vh;
  min-height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.page-header-compact.overlay:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.5) 100%);
  z-index: 1;
}

.page-header-compact .page-header-inner {
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  align-items: center;
}

.page-header-compact h1 {
  font-family: "Abril Fatface", serif;
  font-size: 3rem;
  font-weight: 400;
  color: #fff;
  margin-bottom: 0;
  line-height: 1.2;
}

/* Mobile responsive */
@media (max-width: 991.98px) {
  .page-title-header {
    padding: 1.5rem 0 1rem;
  }

  .page-title-header h1 {
    font-size: 2.5rem;
  }

  .page-header-compact {
    height: 18vh;
    min-height: 150px;
  }

  .page-header-compact h1 {
    font-size: 2.5rem;
  }
}

@media (max-width: 576px) {
  .page-title-header {
    padding: 1.25rem 0 0.75rem;
  }

  .page-title-header h1 {
    font-size: 2rem;
  }

  .page-header-compact {
    height: 15vh;
    min-height: 120px;
  }

  .page-header-compact h1 {
    font-size: 2rem;
  }
}
