.page-header {
  position: relative;
  width: 100%;
  min-height: 80vh;

  display: flex;
  align-items: flex-end;

  overflow: hidden;
}

.page-header__image {
  position: absolute;
  inset: -80px 0;

  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;

  transform: translateY(0) scale(1.12);
  will-change: transform;

  z-index: 0;
}

.page-header__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  /*Der war mir viel zu dunkel*/
 /* background: linear-gradient(  
    to top,
    rgba(0, 0, 0, 0.65) 0%,
    rgba(0, 0, 0, 0.2) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );*/

  background: linear-gradient(
    to bottom,
    rgba(0, 0, 0, 0.2) 0%,
    rgba(0, 0, 0, 0.1) 30%,
    rgba(0, 0, 0, 0.04) 60%,
    rgba(0, 0, 0, 0.00) 100%
);
}



.page-header__content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 1400px;

  margin: 0 auto;
  padding: 0 0 3rem 6rem;
}

.page-header h1 {
  margin: 0;
  color: #fff;
  font-size: clamp(2.5rem, 6vw, 5.5rem);
  line-height: 1.05;
  font-weight: 400;
  max-width: 1200px;
  /*text-transform: uppercase;*/
}

.hero-subtitle {
  margin: 0.75rem 0 -0.75rem;
  color: #fff;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 500;
  max-width: 780px;
  letter-spacing: 1px;
}

@media (max-width: 980px) {
  .page-header {
    min-height: 45vh;
  }

  .page-header__content {
    padding: 0 1.5rem 2rem;
  }
}

@media (max-width: 767px) {
  .page-header {
    min-height: 35vh;
  }

  .page-header__content {
    padding: 0 1rem 1.5rem;
  }

  .page-header h1 {
    font-size: clamp(2rem, 8vw, 3rem);
  }
}
