/* ---------- Main page core elements ---------- */

#pierWindow {
  display: flex;
  gap: 0;
}

@media (orientation: landscape) {
  #pierWindow {
    flex-direction: row;
  }
}

@media (orientation: portrait) {
  #pierWindow {
    flex-direction: column;
  }
}

/* Hero */

@media (orientation: landscape) {
  #heroArea {
    width: 50%;
    height: 100%;
    background-color: #AD2C3E;
  }
}

@media (orientation: portrait) {
  #heroArea {
    width: 100%;
    height: 30%;
  }
}

#heroImage {
  object-position: 50% 18%;
}

/* Content */

#contentArea {
  display: flex;
  flex-direction: column;
  align-items: center;

  scrollbar-width: thin;
  scrollbar-color: #CC344A transparent;
  scrollbar-arrow-color: white;
}

@media (orientation: landscape) {
  #contentArea {
    width: 50%;
    overflow-y: scroll;
    overflow-x: hidden;
  }
}

@media (orientation: portrait) {
  #contentArea {
    /* width: 100%; */
    background-color: white;
  }
}



/* ---------- Main page elements ---------- */

#landingWordmarkContainer {
  width: 95%;
  height: 10vh;
  display: flex;
  align-items: center;
  margin-bottom: 4%;

  order: 1;
}

@media (orientation: landscape) {
  #landingWordmarkContainer {
    justify-content: left;
  }
}

@media (orientation: portrait) {
  #landingWordmarkContainer {
    justify-content: center;
  }
}

/* ----- Intro paragraphs ----- */

#introParagraph {
  font-weight: 500;
  font-size: larger;
  width: 95%;
  margin-bottom: 5%;
}

@media (orientation: landscape) {
  #introParagraph {
    order: 2;
  }
  #socialButtonsLauncher {
    order: 3;
    max-height: 50vh;
  }
}

@media (orientation: portrait) {
  #introParagraph {
    order: 3;
  }
  #socialButtonsLauncher {
    order: 2;
    justify-content: end;
  }
}