@charset "UTF-8";
html {
  scroll-behavior: smooth !important;
  --section-image-width: 30vw;
  --section-text-width-horizontal: 20em;
  --fade-size-horizontal: 50px;
  --fade-start-horizontal: 10px;
  --fade-size-vertical: 10px;
  --fade-start-vertical: 5px;
  --font-display: "Pacifico";
  --font-footer-display: "Roboto Slab";
  --font-body: "Roboto Slab";
  --background-color-dark: #aed792;
  --background-color-light: #d6ebc8;
  overflow-x: hidden;
  font-size: 0.8em;
}
@media (min-width:400px) {
  html {
    font-size: 1em;
  }
}

body {
  margin: 0;
  padding: 0;
  font-family: var(--font-body), serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "wdth" 100;
  display: flex;
  flex-direction: column;
  min-width: 100%;
}

a {
  color: hsl(216, 46%, 30%);
}
a:visited {
  color: hsl(275.65, 46.31%, 30%);
}

.background-image {
  display: none;
}
@supports (mix-blend-mode: lighten) and (pointer-events: none) and (z-index: 1) {
  .background-image {
    display: block !important;
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    mix-blend-mode: lighten;
    pointer-events: none;
    object-fit: cover;
  }
}
@media (forced-colors: active) or (prefers-reduced-transparency: reduce) or (prefers-contrast: more) {
  .background-image {
    display: none !important;
  }
}

.top {
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: var(--background-color-dark);
  color: black;
  padding: 1em;
}

.logo {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.logo > svg {
  z-index: 100;
  width: 40vh;
}
@media (min-width:600px) {
  .logo > svg {
    width: 20vh;
  }
}

.menu {
  display: flex !important;
  flex-direction: row;
  background-color: var(--background-color-dark);
  padding: 1em;
}
.menu > .menu-item {
  z-index: 100;
  font-family: var(--font-body);
  /* font-weight: 900; */
  font-size: 1.5em;
}
.menu > .menu-item:not(:last-of-type)::after {
  margin: 1em;
  content: "—";
}
.menu > .menu-item a {
  text-decoration: none;
  color: #333;
}
.menu > .menu-item a:hover {
  text-decoration: underline;
}

.section {
  display: grid;
  grid-template-rows: max-content;
  grid-template-columns: 1fr;
  grid-template-areas: "content" "image";
}
.section h1 {
  margin-bottom: 0.5em;
}
.section > .image {
  position: relative;
  height: 20em;
}
.section > .image > img {
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
@media (min-width:600px) {
  .section > .image {
    height: auto;
  }
}
.section > .section-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 1em;
  justify-content: center;
}
.section:nth-child(2n of .section) {
  background-color: var(--background-color-dark);
  color: black;
}
.section:nth-child(2n+1 of .section) {
  background-color: var(--background-color-light);
  color: black;
}
.section .image {
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) var(--fade-start-vertical), rgb(0, 0, 0) var(--fade-size-vertical));
}
@media (min-width:600px) {
  .section {
    text-align: var(--alignment-side);
  }
  .section:nth-child(2n of .section) {
    grid-template-columns: 1fr var(--section-image-width);
    grid-template-areas: "content image";
    --alignment-side: center;
    --alignment-side-flex: center;
  }
  .section:nth-child(2n of .section) .image {
    mask-image: linear-gradient(to right, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) var(--fade-start-horizontal), rgb(0, 0, 0) var(--fade-size-horizontal));
  }
  .section:nth-child(2n+1 of .section) {
    grid-template-columns: var(--section-image-width) 1fr;
    grid-template-areas: "image content";
    --alignment-side: center;
    --alignment-side-flex: center;
  }
  .section:nth-child(2n+1 of .section) .image {
    mask-image: linear-gradient(to left, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0) var(--fade-start-horizontal), rgb(0, 0, 0) var(--fade-size-horizontal));
  }
  .section .section-content {
    align-content: var(--alignment-side);
    justify-content: var(--alignment-side);
  }
  .section .section-content .paragraphs {
    align-self: var(--alignment-side-flex);
    max-width: var(--section-text-width-horizontal);
  }
}

.section-divider {
  height: 2px;
  background-color: #333;
  z-index: 100;
}
.section-divider-muted {
  height: 1px;
}

.section-full-width {
  display: flex !important;
  text-align: center;
}
.section-full-width h1 {
  align-self: center;
  flex: 1;
  padding: 0.5em;
}

h1 {
  margin: 0;
  color: #333;
  font-family: var(--font-display), serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}

.paragraphs {
  z-index: 100;
  margin-top: -1em;
  line-height: 2;
  font-size: 1.25rem;
}
.paragraphs p {
  margin-top: 1.25em;
  margin-bottom: 1.25em;
}

.image {
  grid-area: image;
}

.section-content {
  grid-area: content;
}

.footer {
  display: flex;
  flex: 1;
  flex-direction: column;
  font-family: var(--font-body), serif;
  justify-content: space-between;
  font-size: 0.9em;
  text-align: left !important;
}
@media (min-width:600px) {
  .footer {
    flex-direction: row;
  }
}
.footer .footer-subsection {
  margin-left: 2em;
  margin-right: 2em;
  margin-top: 2em;
  margin-bottom: 2em;
  z-index: 100;
}
.footer .footer-subsection h1, .footer .footer-subsection h2, .footer .footer-subsection .display {
  font-family: var(--font-footer-display), serif;
}
.footer .footer-subsection h1 {
  font-size: 1em;
  font-weight: bold;
  text-transform: uppercase;
}
.footer .footer-subsection h2 {
  font-size: 1em;
  font-weight: initial;
  text-transform: uppercase;
}

.section.gallery {
  display: grid !important;
  grid-template-columns: 1fr 1fr 1fr 1fr !important;
}
.section.gallery .gallery-item {
  z-index: 100;
  height: 25vw;
}
.section.gallery .gallery-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  margin: 0;
  padding: 0;
}

script {
  display: none;
}