* {
  font-family: Lato, sans-serif;
  /* background-color: #fafafa; */
}

/* ---Text--- */

h1 {
  margin: 0;
  padding: 0;
}

h2 {
  margin: 0;
  padding: 0;
  font-weight: 300;
  font-size: 22px;
  line-height: 1.4;
}

body {
  margin: 0;
  padding: 0;
  color: #000;
  font-weight: 300;
}

.meta {
  font-size: 14px;
}

.text--light {
  color: grey;
}

a {
  color: #000;
  text-decoration: none;
}

@media (max-width: 768px) {
  h1 {
    font-size: 26px;
  }

  h2 {
    font-size: 18px;
  }

  .meta {
    font-size: 12px;
  }
}

/* ---Spacing--- */

.mt--xs {
  margin-top: 4px;
}

.mt--sm {
  margin-top: 8px;
}

.mt--md {
  margin-top: 12px;
}

.mt--lg {
  margin-top: 16px;
}

.mt--xl {
  margin-top: 24px;
}

.mt--xxl {
  margin-top: 32px;
}

.mt--xxxl {
  margin-top: 64px;
}

.mb--xs {
  margin-bottom: 4px;
}

.mb--sm {
  margin-bottom: 8px;
}

.mb--md {
  margin-bottom: 12px;
}

.mb--lg {
  margin-bottom: 16px;
}

.mb--xl {
  margin-bottom: 24px;
}

.mb--xxl {
  margin-bottom: 32px;
}

.mb--xxxl {
  margin-bottom: 64px;
}

/* ---Animation--- */

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes wave-animation {
  0% {
    transform: rotate(0deg);
  }
  10% {
    transform: rotate(14deg);
  }
  20% {
    transform: rotate(-8deg);
  }
  30% {
    transform: rotate(14deg);
  }
  40% {
    transform: rotate(-4deg);
  }
  50% {
    transform: rotate(10deg);
  }
  60% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(0deg);
  }
}

/* ---Header--- */

.header-wrapper {
  background-color: #fafafa;
  position: sticky;
  top: 0;
  z-index: 1;
}

.header-content {
  display: flex;
  padding: 2vw 4vw;
  animation: fade-in 2s ease;
}

.header-logo {
  width: auto;
  max-width: 100%;
  max-height: 20px;
  transition: transform 0.2s ease;
  display: block;
}

.header-logo-sm {
  width: auto;
  max-width: 100%;
  max-height: 24px;
  transition: transform 0.2s ease;
  display: none;
}

.header-logo:hover {
  transform: scale(1.1);
  transition: transform 0.2s ease;
}

.header-nav-wrapper {
  text-align: right;
  margin-left: auto;
  padding-left: 2vw;
}

.header-nav-list-wrapper {
  display: inline-flex;
  height: 100%;
  align-items: center;
  flex-wrap: wrap;
}

.header-nav-item {
  display: inline-flex;
  margin-left: 16px;
  position: relative;
  color: #000;
}

#header-nav-icon {
  display: none;
}

.header-nav-item::after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: -4px;
  left: 0;
  background-color: #000;
  transform-origin: bottom right;
  transition: transform 0.3s ease-out;
}

.header-nav-item:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}

@media (max-width: 768px) {
  .header-content {
    padding: 6vw;
  }

  .header-logo {
    display: none;
  }

  .header-logo-sm {
    display: block;
  }

  #header-nav-icon {
    display: block;
    align-items: center;
    height: 24px;
    width: 24px;
  }

  #nav-icon:hover {
    transform: scale(1.1);
    transition: transform 0.2s ease;
  }
}

/* ---Content--- */

.content-wrapper--lg {
  display: flex;
  padding-top: calc(40vmax / 5);
  padding-bottom: calc(40vmax / 5);
  padding-inline: 4vw;
  justify-content: center;
  animation: fade-in 3s ease;
}

.content-wrapper--md {
  display: flex;
  padding-top: calc(40vmax / 15);
  padding-bottom: calc(40vmax / 15);
  padding-inline: 4vw;
  justify-content: center;
  animation: fade-in 3s ease;
}

.content {
  width: 60%;
}

.wave-animation {
  display: inline-block;
  animation: wave-animation 2.5s infinite;
}

.column-layout {
  display: flex;
}

.col-3 {
  width: 30%;
}

.col-7 {
  width: 70%;
}

.parallax-container {
  position: relative;
  color: white;
}

.text-centered {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

@media (max-width: 768px) {
  .content-wrapper {
    padding-inline: 6vw;
  }

  .content {
    width: 100%;
  }

  .column-layout {
    display: block;
  }

  .col-3 {
    width: 100%;
    margin-bottom: 32px;
  }

  .col-7 {
    width: 100%;
    margin-bottom: 32px;
  }
}

/* ---Images--- */

.image-container {
  width: 100%;
  object-fit: cover;
}

.gallery {
  display: block;
  width: 100%;
  animation: fade-in 3s ease;
}

.gallery-row-wrapper {
  width: 100%;
  display: flex;
}

.gallery-column {
  width: 50%;
  display: flex;
}

.gallery-container--sm {
  object-fit: cover;
  width: calc(100% / 3);
  height: 100%;
  cursor: pointer;
}

.gallery-container--md {
  display: block;
  object-fit: cover;
  width: calc(100% / 3 * 2);
  height: 100%;
  cursor: pointer;
}

.gallery-container--lg {
  object-fit: cover;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

@media (max-width: 768px) {
  .gallery-column {
    width: 100%;
  }

  .gallery-row-wrapper {
    flex-wrap: wrap;
  }
}

/* ---Lightbox--- */

.lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  opacity: 0;
  transition: opacity 0.3s ease-in;
}

.lightbox img {
  max-width: 90%;
  max-height: 90%;
  margin: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lightbox .close-button {
  position: absolute;
  width: 24px;
  top: 10px;
  right: 10px;
  cursor: pointer;
  color: white;
  background-color: grey;
  padding: 8px;
}

.lightbox .prev-button {
  position: absolute;
  width: 24px;
  top: 50%;
  left: 10px;
  cursor: pointer;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 8px;
}

.lightbox .next-button {
  position: absolute;
  width: 24px;
  top: 50%;
  right: 10px;
  cursor: pointer;
  color: white;
  background-color: rgba(0, 0, 0, 0.2);
  padding: 8px;
}
