@import url("global.css");
@import url("mobileNav.css");
@import url("header.css");
@import url("cta.css");
@import url("footer.css");

/* SECTION 1 - TOP SECTION STYLES: INCLUDES ALL SERVICES */
.section-1 {
  padding: 4rem 2.5rem;
  line-height: 1.5;
}

aside {
  height: 45rem;
  background-color: var(--dark-purple);
}

.section--title {
  font-size: 2.3rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.2rem;
  color: var(--dark-purple);
}

.about--title {
  font-size: 2.1rem;
  font-weight: 500;
  color: var(--dark-green);
}

.about--text {
  font-size: 1.8rem;
}

.about--title > span {
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--normal-green);
}

.story--title {
  font-size: 1.5rem;
  font-weight: 600;
}

.story--text {
  font-size: 1.4rem;
  line-height: 1.5;
}

@media screen and (min-width: 640px) {
  .section-1 {
    max-width: 120rem;
    margin: auto;
    display: grid;
    grid-template-columns: 1fr 2fr;
    grid-template-rows: auto;
    gap: 1.5rem;
  }

  h1 {
    grid-column: 1 / -1;
  }

  .about--title {
    margin-top: 0;
  }
}

@media screen and (min-width: 1280px) {
  .section--texts {
    margin-left: 7rem;
  }

  aside {
    height: 55rem;
  }
}
