/* GET STUFFED — letsgetstuffed.com */

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f2ede3;
  font-family: Inter, Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: #0a0a0a;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  vertical-align: middle;
  display: inline-block;
}

/* ---------- Layout ---------- */

.split {
  width: 100vw;
  height: 100vh;
  display: flex;
}

.split__image {
  width: 50vw;
  height: 100vh;
  background-image: url("assets/hero.jpg");
  background-position: 50% 25%;
  background-size: cover;
  background-repeat: no-repeat;
}

.split__panel {
  width: 50vw;
  height: 100vh;
  padding: 30px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f2ede3;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  align-items: center;
}

/* ---------- Header ---------- */

.header {
  width: 100%;
}

.logo {
  width: 100%;
  margin: 0 auto auto;
}

.lang {
  position: absolute;
  inset: 0% 0% auto auto;
  margin-top: 20px;
  margin-right: 20px;
  font-size: 1.15vw;
  color: #0a0a0a;
}

.lang a {
  color: #0a0a0a;
  line-height: 1.15vw;
  text-decoration: none;
}

.lang a:hover {
  text-decoration: underline;
}

/* ---------- Portrait ---------- */

.portrait {
  width: auto;
  height: 30vh;
  margin: 0;
}

/* ---------- Taglines ---------- */

.taglines {
  width: 100%;
  margin: 0;
  display: flex;
  justify-content: space-between;
}

.taglines > div {
  color: #0a0a0a;
  font-size: 1.3vw;
}

/* ---------- Contact ---------- */

.contact {
  display: flex;
  flex-flow: column;
  gap: 2vw;
  margin: 0;
}

.contact__note {
  text-align: center;
}

.contact__note p {
  margin: 0;
  color: #0a0a0a;
  font-size: 1.15vw;
  line-height: 1em;
}

.contact__buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
}

.button {
  display: inline-block;
  border: 0;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  color: #f2ede3;
  background-color: #0a0a0a;
  padding: 0.8vw 1.25vw;
  font-family: inherit;
  font-size: 1.15vw;
  line-height: inherit;
  transition: background-color 0.15s ease;
}

.button:hover {
  color: #f2ede3;
  background-color: #c40111;
}

/* ---------- Mobile ---------- */

@media screen and (max-width: 991px) {
  .split__image {
    background-position: 50%;
  }
}

@media screen and (max-width: 479px) {
  .split {
    display: block;
  }

  .split__image {
    width: 100vw;
    height: 80vw;
    background-position: 50% 45%;
    background-attachment: scroll;
    display: block;
  }

  .split__panel {
    width: 100vw;
    /* original used height: 100vh; min-height avoids clipping if text wraps */
    height: auto;
    min-height: 100vh;
    padding: 20px 15px;
    justify-content: flex-start;
  }

  .header {
    position: relative;
  }

  .lang {
    margin-top: 0;
    margin-right: 0;
    font-size: 16px;
    line-height: 16px;
  }

  .lang a {
    font-size: 14px;
    line-height: 14px;
  }

  .portrait {
    width: 50vw;
    height: auto;
    margin: 35px auto 50px;
    padding-bottom: 0;
  }

  .taglines {
    flex-flow: column;
    align-items: center;
    gap: 20px;
  }

  .taglines > div {
    width: 100%;
    font-size: 20px;
  }

  .taglines .center {
    text-align: center;
  }

  .taglines .right {
    text-align: right;
  }

  .contact {
    margin-top: 50px;
    margin-bottom: 0;
    padding-bottom: 30px;
  }

  .contact__note p {
    font-size: 14px;
    line-height: 14px;
  }

  .contact__buttons {
    flex-flow: column;
    margin-top: 25px;
  }

  .button {
    padding: 12px 14px 14px;
    font-size: 14px;
    line-height: 14px;
  }

  .button:hover {
    background-color: #0a0a0a;
  }
}
