.section-image {
  position: absolute;
  top: 0;
  bottom: 0;
  height: 100%;
}

.left-image {
  left: 0;
}

.right-image {
  right: 0;
}

.section-content {
  padding-left: 5rem;
  padding-right: 5rem;
  display: flex;
  flex-direction: column;
}

.section-title {
  margin: 0;
  padding-top: 2rem;
  padding-bottom: 2rem;
  font-size: 2.5rem;
  font-family: "Sen";
}

.section-subtitle {
  margin: 0;
  padding-bottom: 2rem;
  font-size: 2rem;
  font-family: "Catamaran";
  font-weight: 800;
  display: flex;
  align-items: center;
}

.section-paragraph {
  margin: 0;
  padding-bottom: 2rem;
  max-width: 55%;
  line-height: 1.25;
  font-size: 1.5rem;
  font-family: "Catamaran";
  font-weight: 800;
}

.section-paragraph-small {
  margin: 0;
  padding-top: 2rem;
  max-width: 30%;
  line-height: 1.25;
  font-size: 1.5rem;
  font-family: "Catamaran";
  font-weight: 400;
}

.star-container {
  display: flex;
  flex-direction: row;
  flex: 1;
  gap: 2rem;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.single-star {
  position: relative;
  width: 15%;
  aspect-ratio: 1 / 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.star-white {
  background-image: url('../img/decor/WhiteSun.avif');
}

.star-blue {
  background-image: url('../img/decor/BlueSun.avif');
}

.star-text {
  text-align: center;
  font-size: 1rem;
  font-family: "Catamaran";
  color: var(--deepblue);
  font-weight: 700;
  margin: 0;
  padding: 0% 35%;
  line-height: 1.5;
}

/* Section 1 Specifics */
#section1 {
  display: flex;
  justify-content: flex-start;
  position: relative;
  min-height: 100vh;
  background-color: var(--deepblue);
  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 right, var(--starlight) 0%, var(--deepblue) 50%);
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-position: left top, center;
  color: white;
}

/* Section 2 Specifics */
#section2 {
  display: flex;
  justify-content: flex-end;
  position: relative;
  min-height: 100vh;
  background-color: var(--starlight);
  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 left, var(--deepblue) 0%, var(--starlight) 50%);
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-position: left top, center;
  color: var(--deepblue);
}

#section2 .section-subtitle {
  padding-top: 8rem;
  padding-left: 35%;
}

#section2 .section-paragraph {
  max-width: 100%;
  padding-left: 35%;
}

#section2 .section-paragraph-small {
  max-width: 35%;
  padding-left: 35%;
}

#section2 .star-container {
  justify-content: flex-end;
}

/* Section 3 Specifics */
#section3 {
  display: flex;
  justify-content: flex-start;
  position: relative;
  min-height: 100vh;
  background-color: var(--deepblue);
  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 right, var(--starlight) 0%, var(--deepblue) 50%);
  background-size: auto, cover;
  background-repeat: repeat, no-repeat;
  background-position: left top, center;
  color: white;
}

#section3 .section-subtitle {
  padding-top: 8rem;
}

/* Utilities */
.white-text {
  color: white !important;
}

.subtitle-decor {
  height: 1em;
  width: auto;
  margin: 0 0.5rem;
}