h1 {
  font-family: "Sen";
  font-size: 2.5rem;
  color: var(--deepblue);
}

#hero {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  overflow-x: clip;
  background-image: url("../img/background/TileBackground.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;
  max-width: 40%;
}

.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;
  color: var(--starlight);
  margin-bottom: 1rem;
}

.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-text strong {
  font-weight: 700;
}

.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;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover {
  filter: brightness(95%);
}

/* Quote Section */
#quote {
  position: relative;
  min-height: 65vw;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding-top: 10rem;
  overflow: hidden;
  background-color: var(--bright-orange);
  background-image:
    url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='1.50' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.15'/%3E%3C/svg%3E"),
    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 {
  position: relative;
  z-index: 10;
  text-align: center;
  max-width: 700px;
}

.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;
}