/* STYLES FOR ABOVE THE FOLD */
/*-- -------------------------- -->
<---           hero             -->
<--- -------------------------- -*/
/* Mobile - 360px */
@media only screen and (min-width: 0rem) {
  #hero {
    padding: var(--sectionPadding);
    background-color: var(--secondary);
    padding-top: clamp(6rem, 18vw, 10rem);
    padding-bottom: 0;
    position: relative;
  }
  #hero .cs-wave {
    width: 110%;
    position: absolute;
    overflow: hidden;
    top: 0px;
    transform: translateX(-20px) rotate(180deg);
    transition: filter 0.3s;
  }
  #hero .cs-container {
    width: 100%;
    max-width: 80rem;
    margin: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    /* 48px - 64px */
    gap: clamp(3rem, 6vw, 4rem);
    position: relative;
  }
  #hero .cs-content {
    /* set text align to left if content needs to be left aligned */
    text-align: center;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: clamp(1rem, 2vw, 2rem);
    /* centers content horizontally, set to flex-start to left align */
    align-items: center;
  }
  #hero .cs-title {
    font-size: clamp(2rem, 8vw, 3.5rem);
    font-weight: 900;
    line-height: 1.2em;
    text-align: inherit;
    max-width: 68.5rem;
    /* 8px - 16px */
    margin: 0 0 clamp(0.5rem, 2vw, 1rem) 0;
    color: var(--bodyTextColorWhite);
    position: relative;
    z-index: 2;
    text-transform: none;
  }
  #hero .cs-content-group {
    z-index: 2;
  }
  #hero .cs-text {
    font-size: clamp(14px, 8vw, 18px);
    line-height: 1.5em;
    text-align: inherit;
    width: 100%;
    max-width: 40.625rem;
    margin: 0 auto 1.75rem auto;
    color: var(--bodyTextColorWhite);
  }
  #hero .body.dark-mode .cs-text,
  #hero .body.dark-mode .cs-title {
    color: white;
    text-shadow: 0.02px 0 black, 0 0.02px black, -0.02px 0 black, 0 -0.02px black, -0.02px -0.02px black, -0.02px 0.02px black, 0.02px -0.02px black, 0.02px 0.02px black;
  }
  #hero .cs-picture {
    width: 100%;
    height: auto;
    max-height: 37.375rem;
    display: flex;
    align-items: flex-end;
    margin-top: clamp(3rem, 6vw, 4rem);
  }
  #hero .cs-picture img {
    width: 100%;
    height: auto;
    filter: drop-shadow(10px 10px 10px #242424);
  }
}
body.dark-mode .cs-wave {
  filter: grayscale(1) brightness(10%);
}
body.dark-mode #hero .cs-title,
body.dark-mode #hero .cs-text {
  color: white;
}
