/* Page Hero Component Styles */
.page-hero {
  position: relative;
  width: 100%;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.page-hero__background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.page-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.75);
  z-index: 2;
}

.page-hero__content {
  position: relative;
  z-index: 3;
  text-align: center;
  color: white;
  padding: 0 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.page-hero__title {
  font-size: 68px;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.page-hero__subtitle {
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.6;
  opacity: 0.95;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-hero {
    height: 350px;
  }

  .page-hero__title {
    font-size: 2.5rem;
  }

  .page-hero__subtitle {
    font-size: 1.125rem;
  }
}

@media (max-width: 768px) {
  .page-hero {
    height: 300px;
  }

  .page-hero__title {
    font-size: 2rem;
  }

  .page-hero__subtitle {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .page-hero {
    height: 250px;
  }

  .page-hero__title {
    font-size: 1.75rem;
  }

  .page-hero__subtitle {
    font-size: 0.875rem;
  }

  .page-hero__content {
    padding: 0 1rem;
  }
}
