.hero-heading {
  font-family: "Sen";
  font-size: 2.5rem;
  color: var(--deepblue);
  font-weight: bold;
  margin: 1.5rem 0;
}

#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow-x: clip;
  background-image: url("../images/ui/tile-background.avif");
  background-size: contain;
  background-color: var(--starlight);
  z-index: -2;
}

.hero-text {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 16rem 0;
  text-align: center;
  margin: 0 8rem;
}

.hero-decor {
  position: absolute;
  top: 0;
  height: 100%;
  z-index: -1;
}

.hero-decor-left {
  left: 0;
}

.hero-decor-right {
  right: 0;
  transform: scaleX(-1);
}

#programs {
  background-color: var(--burnt-orange);
  height: 100vh;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.programs-content {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 33%;
}

.programs-subtitle {
  font-family: "Sen";
  font-size: 2.5rem;
  margin: 0 0 1rem 0;
  color: var(--starlight);
}

.programs-intro {
  font-family: "Catamaran";
  font-size: 2rem;
  color: var(--starlight);
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 8rem;
}

.programs-text {
  font-family: "Catamaran";
  font-size: 1.75rem;
  color: var(--starlight);
  line-height: 1.5;
  margin-bottom: 6rem;
}

.programs-decor {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 100%;
  width: auto;
  z-index: 1;
}

.programs-decor-left {
  left: 0;
  transform: translateY(-50%) scaleX(-1);
}

.programs-decor-right {
  right: 0;
}

.btn {
  display: inline-block;
  padding: 1.5rem 2.5rem;
  font-family: "Sen";
  font-size: 1.5rem;
  color: var(--burnt-orange);
  background-color: var(--starlight);
  text-decoration: none;
}

.btn:hover {
  filter: brightness(95%);
}

#quote {
  position: relative;
  min-height: 65vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  overflow: hidden;
  background-color: var(--bright-orange);
  background-image:
    var(--noise-texture),
    radial-gradient(
      circle at bottom center,
      var(--deepblue) 0%,
      var(--burnt-orange) 40%,
      var(--bright-orange) 65%,
      transparent 85%
    );
  background-position:
    left top,
    center bottom;
  background-repeat: repeat, no-repeat;
}

.quote-content {
  padding-top: 10rem;
  position: relative;
  z-index: 10;
  text-align: center;
  margin: 0 2rem;
}

.quote-text {
  font-family: "Sen";
  font-size: 3rem;
  font-weight: 700;
  color: var(--deepblue);
  margin: 0 0 2rem 0;
  line-height: 1.3;
}

.quote-attribution {
  font-family: "Sen";
  font-size: 1.25rem;
  color: var(--deepblue);
  margin: 0;
  line-height: 1.5;
}

.quote-decor {
  position: absolute;
  bottom: 0;
  width: 90%;
  z-index: 1;
}

@media (max-width: 768px) {
  .quote-content {
    padding-top: 4rem;
    padding-bottom: 50vw;
  }

  .hero-text {
    padding: 0;
  }

  .hero-decor {
    width: 50%;
    top: 50%;
    height: 50%;
    transform: translateY(-50%);
  }

  .hero-decor-right {
    transform: translateY(-50%) scaleX(-1);
  }

  .hero-text .hero-heading:first-child {
    margin: 0;
    padding-top: 9rem;
    padding-bottom: 14rem;
  }

  .hero-text .hero-heading:nth-child(2) {
    margin: 0;
    padding-top: 4rem;
    padding-bottom: 4rem;
  }

  .hero-text .hero-heading:last-child {
    margin: 0;
    padding-bottom: 5rem;
  }

  #programs {
    height: auto;
  }

  .programs-content {
    max-width: 80%;
  }

  .programs-subtitle {
    padding-top: 5rem;
  }

  .programs-intro {
    margin-bottom: 5rem;
  }

  .programs-text {
    margin-bottom: 5rem;
  }

  .programs-decor {
    width: 100%;
    height: 100%;
    opacity: 0.05;
  }

  .btn {
    margin-bottom: 5rem;
  }
}
