
/********************************************************* Page Hero ********************************************************/
.page-hero {
  width: 99vw;
  border-radius: 20px;
  height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  margin-top: 160px;
  margin-left: auto;
  margin-right: auto;
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 99vw;
  border-radius: 20px;
  height: 100%;
  max-height: 30vh;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: rgba(0, 0, 0, 0.3);
  color: var(--primary-color);
}

.page-hero-overlay h1 {
  padding-top: 200px;
  font-size: 2rem;
  letter-spacing: 0.5rem;
  text-transform: uppercase;
  font-weight: 700;
  margin: 0;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
  color: var(--background-color);
  position: absolute;
  bottom: 20px;
  left: 20px;
}

@media (max-width: 768px) {
  .page-hero {
    margin-top: 100px;
    height: 200px;
  }

  .page-hero-overlay {
    /* margin-top: 100px; */
    height: 200px;
    padding-left: 15px;
    align-items: flex-end;
  }

  .page-hero-overlay h1 {
    font-size: 1.5rem;
    margin-top: -20px;
  }
}

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

  .page-hero-overlay {
    /* margin-top: 100px; */
    height: 200px;
    align-items: flex-end;
  }

  .page-hero-overlay h1 {
    font-size: 1.3rem;
    margin-top: -20px;
  }
}
/********************************************************* Page Hero ********************************************************/
