/* Page Header - for non-homepage pages */
.page-header {
  position: relative;
  padding: 80px 0 40px; /* Reduced padding */
  background-color: rgba(10, 10, 41, 0.95);

  color: var(--text-light, #ffffff);
  overflow: hidden;
  /* Much shorter than hero-modern's 100vh */
  min-height: auto;
}

/* .page-header::before styles moved to hero-base.css */

/* .hero-particles styles moved to hero-base.css */



.page-header-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 700;
  margin: 0;
  color: var(--text-light, #ffffff);
}

.page-description {
  font-size: 1.2rem;
  line-height: 1.6;
  opacity: 0.9;
  margin: 0;
}

.page-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: 1rem;
}

.page-actions .btn {
  margin: 0 0.5rem;
}



.shape-divider {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.shape-divider svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 50px;
}

.shape-divider .shape-fill {
  fill: var(--background-color, #ffffff);
}

/* .hero-particles canvas styles moved to hero-base.css */

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-header {
    padding: 80px 0 40px;
  }
  
  .page-title {
    font-size: 2rem;
  }
  
  .page-description {
    font-size: 1rem;
  }
}
