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

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a list role, which suggests default styling will be removed */
ul[role=list],
ol[role=list] {
  list-style: none;
}

/* Set core root defaults */
html:focus-within {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img,
picture {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations, transitions and smooth scroll for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
*::before,
*::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/*
Theme Name: Modern portfolio
Author: John-Halvdan
Description: Created by and for John-Halvdan Halvorsen, for use with his portfolio site.
Version: 0.1
*/
:root {
  --clr-primary-400: rgb(255, 194, 224);
  --clr-primary-500: #FF69B4;
  --clr-primary-600: #CC0066;
  --clr-primary-700: #7A003D;
  --clr-primary-800: #660033;
  --clr-neutral-300: #fff;
  --clr-neutral-400: #FFC2E0;
  --clr-neutral-900: #3D001F;
  --ff-400: "heeboRegular", sans-serif;
  --ff-500: "heeboSemibold", sans-serif;
  --ff-600: "heeboBlack", sans-serif;
  --ff-700: "fenix", sans-serif;
  --ff-800: "skandi", serif;
  --ff-num: "numbers", monospace;
  --fs-400: 1.125rem;
  --fs-500: 1.25rem;
  --fs-600: 1.75rem;
  --fs-700: 2rem;
  --fs-800: 2.5rem;
  --fs-900: 3.5rem;
  --fs-950: 5rem;
  --fw-300: 300;
  --fw-400: 400;
  --fw-500: 500;
  --fw-600: 600;
  --fw-700: 700;
  --fw-800: 800;
}
@media screen and (max-width: 1000px) {
  :root {
    --fs-400: 1rem;
    --fs-800: 2.25rem;
    --fs-900: 2.5rem;
    --fs-950: 3rem;
  }
}

.dark-mode {
  --clr-primary-800: #daf5db;
  --clr-primary-700: #daf5db;
  --clr-primary-600: #29877F;
  --clr-primary-500: #19544F;
  --clr-primary-400: #003B36;
  --clr-neutral-900: #fff;
  --clr-neutral-400: #003B36;
  --clr-neutral-300: #fff;
  transition: 700ms ease-in-out;
}

html {
  scroll-behavior: smooth;
}

body {
  background-color: var(--clr-neutral-400);
  color: var(--clr-neutral-900);
  position: relative;
  min-height: 100vh;
  max-width: 100vw;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
}

main {
  transition: 500ms cubic-bezier(0.2, 0.91, 0.77, 0.93);
}

.max-screen {
  width: 100vw;
  height: 100vh;
}

.full-width {
  width: 100vw;
}

.full-height {
  height: 100vh;
}

.min-full-height {
  min-height: 100vh;
}

.max-screen-height {
  max-height: 100vh;
}

.no-scroll {
  max-width: 100vw;
  max-height: 100vh;
  overflow: hidden;
}

.overflow-scroll {
  overflow-y: scroll;
}

.container-400 {
  width: min(100%, 1000px);
}

.container-600 {
  width: min(100%, 1200px);
}

.container-800 {
  width: min(100%, 1500px);
}

.flex {
  display: flex;
}

.column {
  flex-direction: column;
}

.row {
  flex-direction: row;
}

.justify-center {
  justify-content: center;
}

.justify-start {
  justify-content: flex-start;
}

.justify-between {
  justify-content: space-between;
}

.list-style-none {
  list-style-type: none;
}

.justify-evenly {
  justify-content: space-evenly;
}

.justify-end {
  justify-content: flex-end;
}

.align-center {
  align-items: center;
}

.grid {
  display: grid;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.top-0 {
  top: 0;
}

.left-0 {
  left: 0;
}

.bottom-0 {
  bottom: 0;
}

.right-0 {
  right: 0;
}

.inset-0 {
  inset: 0;
}

.mx-auto {
  margin: 0 auto;
}

.my-auto {
  margin: auto 0;
}

.repeat-2-even {
  grid-template-columns: 50% 50%;
}

.repeat-80-20 {
  grid-template-columns: 70% 30%;
}

.repeat-30-70 {
  grid-template-columns: 30% auto;
}
@media screen and (max-width: 1000px) {
  .repeat-30-70 {
    grid-template-columns: repeat(1, 1fr);
  }
}

aside {
  order: 0;
}
@media screen and (max-width: 1000px) {
  aside {
    order: 1;
  }
}

.repeat-1 {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 1200px) {
  .repeat-1 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .repeat-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.repeat-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 1200px) {
  .repeat-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .repeat-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.repeat-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 1200px) {
  .repeat-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .repeat-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.repeat-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 1200px) {
  .repeat-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 1000px) {
  .repeat-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.gap-1 {
  gap: 1rem;
}

.gap-2 {
  gap: 2rem;
}

.gap-3 {
  gap: 3rem;
}

.gap-4 {
  gap: 4rem;
}

.gap-5 {
  gap: 5rem;
}

.p-1 {
  padding-top: 1rem;
  padding-right: 1rem;
  padding-bottom: 1rem;
  padding-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-1 {
    padding-top: 1rem;
    padding-right: calc(1rem / 2);
    padding-bottom: 1rem;
    padding-left: calc(1rem / 2);
  }
}

.p-1-top {
  padding-top: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-1-top {
    padding-top: 1rem;
  }
}

.p-1-left {
  padding-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-1-left {
    padding-left: calc(1rem / 2);
  }
}

.p-1-right {
  padding-right: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-1-right {
    padding-right: calc(1rem / 2);
  }
}

.p-1-bottom {
  padding-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-1-bottom {
    padding-bottom: 1rem;
  }
}

.p-2 {
  padding-top: 2rem;
  padding-right: 2rem;
  padding-bottom: 2rem;
  padding-left: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-2 {
    padding-top: 2rem;
    padding-right: calc(2rem / 2);
    padding-bottom: 2rem;
    padding-left: calc(2rem / 2);
  }
}

.p-2-top {
  padding-top: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-2-top {
    padding-top: 2rem;
  }
}

.p-2-left {
  padding-left: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-2-left {
    padding-left: calc(2rem / 2);
  }
}

.p-2-right {
  padding-right: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-2-right {
    padding-right: calc(2rem / 2);
  }
}

.p-2-bottom {
  padding-bottom: 2rem;
}
@media screen and (max-width: 1000px) {
  .p-2-bottom {
    padding-bottom: 2rem;
  }
}

.p-3 {
  padding-top: 3rem;
  padding-right: 3rem;
  padding-bottom: 3rem;
  padding-left: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-3 {
    padding-top: 3rem;
    padding-right: calc(3rem / 2);
    padding-bottom: 3rem;
    padding-left: calc(3rem / 2);
  }
}

.p-3-top {
  padding-top: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-3-top {
    padding-top: 3rem;
  }
}

.p-3-left {
  padding-left: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-3-left {
    padding-left: calc(3rem / 2);
  }
}

.p-3-right {
  padding-right: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-3-right {
    padding-right: calc(3rem / 2);
  }
}

.p-3-bottom {
  padding-bottom: 3rem;
}
@media screen and (max-width: 1000px) {
  .p-3-bottom {
    padding-bottom: 3rem;
  }
}

.p-4 {
  padding-top: 4rem;
  padding-right: 4rem;
  padding-bottom: 4rem;
  padding-left: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-4 {
    padding-top: 4rem;
    padding-right: calc(4rem / 2);
    padding-bottom: 4rem;
    padding-left: calc(4rem / 2);
  }
}

.p-4-top {
  padding-top: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-4-top {
    padding-top: 4rem;
  }
}

.p-4-left {
  padding-left: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-4-left {
    padding-left: calc(4rem / 2);
  }
}

.p-4-right {
  padding-right: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-4-right {
    padding-right: calc(4rem / 2);
  }
}

.p-4-bottom {
  padding-bottom: 4rem;
}
@media screen and (max-width: 1000px) {
  .p-4-bottom {
    padding-bottom: 4rem;
  }
}

.p-5 {
  padding-top: 5rem;
  padding-right: 5rem;
  padding-bottom: 5rem;
  padding-left: 5rem;
}
@media screen and (max-width: 1000px) {
  .p-5 {
    padding-top: 5rem;
    padding-right: calc(5rem / 2);
    padding-bottom: 5rem;
    padding-left: calc(5rem / 2);
  }
}

.p-5-top {
  padding-top: 5rem;
}
@media screen and (max-width: 1000px) {
  .p-5-top {
    padding-top: 5rem;
  }
}

.p-5-left {
  padding-left: 5rem;
}
@media screen and (max-width: 1000px) {
  .p-5-left {
    padding-left: calc(5rem / 2);
  }
}

.p-5-right {
  padding-right: 5rem;
}
@media screen and (max-width: 1000px) {
  .p-5-right {
    padding-right: calc(5rem / 2);
  }
}

.p-5-bottom {
  padding-bottom: 5rem;
}
@media screen and (max-width: 1000px) {
  .p-5-bottom {
    padding-bottom: 5rem;
  }
}

.p-6 {
  padding-top: 6rem;
  padding-right: 6rem;
  padding-bottom: 6rem;
  padding-left: 6rem;
}
@media screen and (max-width: 1000px) {
  .p-6 {
    padding-top: 6rem;
    padding-right: calc(6rem / 2);
    padding-bottom: 6rem;
    padding-left: calc(6rem / 2);
  }
}

.p-6-top {
  padding-top: 6rem;
}
@media screen and (max-width: 1000px) {
  .p-6-top {
    padding-top: 6rem;
  }
}

.p-6-left {
  padding-left: 6rem;
}
@media screen and (max-width: 1000px) {
  .p-6-left {
    padding-left: calc(6rem / 2);
  }
}

.p-6-right {
  padding-right: 6rem;
}
@media screen and (max-width: 1000px) {
  .p-6-right {
    padding-right: calc(6rem / 2);
  }
}

.p-6-bottom {
  padding-bottom: 6rem;
}
@media screen and (max-width: 1000px) {
  .p-6-bottom {
    padding-bottom: 6rem;
  }
}

@media screen and (max-width: 1000px) {
  .p-6-top-mobile {
    padding-top: 6rem;
  }
}

.m-1 {
  margin-top: 1rem;
  margin-right: 1rem;
  margin-bottom: 1rem;
  margin-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .m-1 {
    margin-top: 1rem;
    margin-right: calc(1rem / 2);
    margin-bottom: 1rem;
    margin-left: calc(1rem / 2);
  }
}

.m-1-top {
  margin-top: 1rem;
}
@media screen and (max-width: 1000px) {
  .m-1-top {
    margin-top: 1rem;
  }
}

.m-1-left {
  margin-left: 1rem;
}
@media screen and (max-width: 1000px) {
  .m-1-left {
    margin-left: calc(1rem / 2);
  }
}

.m-1-right {
  margin-right: 1rem;
}
@media screen and (max-width: 1000px) {
  .m-1-right {
    margin-right: calc(1rem / 2);
  }
}

.m-1-bottom {
  margin-bottom: 1rem;
}
@media screen and (max-width: 1000px) {
  .m-1-bottom {
    margin-bottom: 1rem;
  }
}

.m-2 {
  margin-top: 2rem;
  margin-right: 2rem;
  margin-bottom: 2rem;
  margin-left: 2rem;
}
@media screen and (max-width: 1000px) {
  .m-2 {
    margin-top: 2rem;
    margin-right: calc(2rem / 2);
    margin-bottom: 2rem;
    margin-left: calc(2rem / 2);
  }
}

.m-2-top {
  margin-top: 2rem;
}
@media screen and (max-width: 1000px) {
  .m-2-top {
    margin-top: 2rem;
  }
}

.m-2-left {
  margin-left: 2rem;
}
@media screen and (max-width: 1000px) {
  .m-2-left {
    margin-left: calc(2rem / 2);
  }
}

.m-2-right {
  margin-right: 2rem;
}
@media screen and (max-width: 1000px) {
  .m-2-right {
    margin-right: calc(2rem / 2);
  }
}

.m-2-bottom {
  margin-bottom: 2rem;
}
@media screen and (max-width: 1000px) {
  .m-2-bottom {
    margin-bottom: 2rem;
  }
}

.m-3 {
  margin-top: 3rem;
  margin-right: 3rem;
  margin-bottom: 3rem;
  margin-left: 3rem;
}
@media screen and (max-width: 1000px) {
  .m-3 {
    margin-top: 3rem;
    margin-right: calc(3rem / 2);
    margin-bottom: 3rem;
    margin-left: calc(3rem / 2);
  }
}

.m-3-top {
  margin-top: 3rem;
}
@media screen and (max-width: 1000px) {
  .m-3-top {
    margin-top: 3rem;
  }
}

.m-3-left {
  margin-left: 3rem;
}
@media screen and (max-width: 1000px) {
  .m-3-left {
    margin-left: calc(3rem / 2);
  }
}

.m-3-right {
  margin-right: 3rem;
}
@media screen and (max-width: 1000px) {
  .m-3-right {
    margin-right: calc(3rem / 2);
  }
}

.m-3-bottom {
  margin-bottom: 3rem;
}
@media screen and (max-width: 1000px) {
  .m-3-bottom {
    margin-bottom: 3rem;
  }
}

.m-4 {
  margin-top: 4rem;
  margin-right: 4rem;
  margin-bottom: 4rem;
  margin-left: 4rem;
}
@media screen and (max-width: 1000px) {
  .m-4 {
    margin-top: 4rem;
    margin-right: calc(4rem / 2);
    margin-bottom: 4rem;
    margin-left: calc(4rem / 2);
  }
}

.m-4-top {
  margin-top: 4rem;
}
@media screen and (max-width: 1000px) {
  .m-4-top {
    margin-top: 4rem;
  }
}

.m-4-left {
  margin-left: 4rem;
}
@media screen and (max-width: 1000px) {
  .m-4-left {
    margin-left: calc(4rem / 2);
  }
}

.m-4-right {
  margin-right: 4rem;
}
@media screen and (max-width: 1000px) {
  .m-4-right {
    margin-right: calc(4rem / 2);
  }
}

.m-4-bottom {
  margin-bottom: 4rem;
}
@media screen and (max-width: 1000px) {
  .m-4-bottom {
    margin-bottom: 4rem;
  }
}

.m-5 {
  margin-top: 5rem;
  margin-right: 5rem;
  margin-bottom: 5rem;
  margin-left: 5rem;
}
@media screen and (max-width: 1000px) {
  .m-5 {
    margin-top: 5rem;
    margin-right: calc(5rem / 2);
    margin-bottom: 5rem;
    margin-left: calc(5rem / 2);
  }
}

.m-5-top {
  margin-top: 5rem;
}
@media screen and (max-width: 1000px) {
  .m-5-top {
    margin-top: 5rem;
  }
}

.m-5-left {
  margin-left: 5rem;
}
@media screen and (max-width: 1000px) {
  .m-5-left {
    margin-left: calc(5rem / 2);
  }
}

.m-5-right {
  margin-right: 5rem;
}
@media screen and (max-width: 1000px) {
  .m-5-right {
    margin-right: calc(5rem / 2);
  }
}

.m-5-bottom {
  margin-bottom: 5rem;
}
@media screen and (max-width: 1000px) {
  .m-5-bottom {
    margin-bottom: 5rem;
  }
}

.m-6 {
  margin-top: 6rem;
  margin-right: 6rem;
  margin-bottom: 6rem;
  margin-left: 6rem;
}
@media screen and (max-width: 1000px) {
  .m-6 {
    margin-top: 6rem;
    margin-right: calc(6rem / 2);
    margin-bottom: 6rem;
    margin-left: calc(6rem / 2);
  }
}

.m-6-top {
  margin-top: 6rem;
}
@media screen and (max-width: 1000px) {
  .m-6-top {
    margin-top: 6rem;
  }
}

.m-6-left {
  margin-left: 6rem;
}
@media screen and (max-width: 1000px) {
  .m-6-left {
    margin-left: calc(6rem / 2);
  }
}

.m-6-right {
  margin-right: 6rem;
}
@media screen and (max-width: 1000px) {
  .m-6-right {
    margin-right: calc(6rem / 2);
  }
}

.m-6-bottom {
  margin-bottom: 6rem;
}
@media screen and (max-width: 1000px) {
  .m-6-bottom {
    margin-bottom: 6rem;
  }
}

@media screen and (max-width: 1000px) {
  .m-6-top-mobile {
    margin-top: 6rem;
  }
}

.object-contain {
  object-fit: contain;
}

.object-cover {
  object-fit: cover;
}

.w-100 {
  width: 100%;
}

.w-max-content {
  width: max-content;
}

.h-50 {
  max-height: 75vh;
}

.block {
  display: block;
}

.bg-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-image: var(--bg-image-url);
}

.mobile-only {
  visibility: hidden;
}
@media screen and (max-width: 1000px) {
  .mobile-only {
    visibility: visible;
  }
}

.desktop-only {
  visibility: visible;
}
@media screen and (max-width: 1000px) {
  .desktop-only {
    display: none;
    height: 0;
  }
}

.aspect-1 {
  aspect-ratio: 1/1;
}
@supports not (aspect-ratio: 1/1) {
  .aspect-1 {
    padding-bottom: 100%;
  }
}

.aspect-16-9 {
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 16/9) {
  .aspect-16-9 {
    padding-bottom: 56.25%;
  }
}

.aspect-4-3 {
  aspect-ratio: 4/3;
}
@supports not (aspect-ratio: 4/3) {
  .aspect-4-3 {
    padding-bottom: 75%;
  }
}

.aspect-3-4 {
  aspect-ratio: 3/4;
}
@supports not (aspect-ratio: 3/4) {
  .aspect-3-4 {
    padding-bottom: 133.3333333333%;
  }
}

.has-side-menu {
  padding: 2rem 20% 2rem 2rem;
}
@media screen and (max-width: 1000px) {
  .has-side-menu {
    padding: 1rem;
  }
}

.row-min-content {
  grid-auto-flow: row;
}

.row-span-2 {
  grid-row: span 2;
}

.no-decoration {
  text-decoration: none;
}

@media screen and (max-width: 1000px) {
  .height-100-mobile {
    height: 80vh;
  }
}

.hover-scale div {
  transform: scale(1);
  transition: 200ms ease-in-out;
}
.hover-scale:hover div {
  transform: scale(1.005);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.3);
}

.hover-remove-class .hover-remove {
  opacity: 1;
  transition: 280ms ease-in-out;
}
.hover-remove-class:hover .hover-remove {
  opacity: 0;
}

.z-index-100 {
  z-index: 100;
}

.z-index-50 {
  z-index: 50;
}

.border-full {
  border-radius: 50%;
}

.border-30 {
  border-radius: 30px;
}

.has-bg-img {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

@media screen and (max-width: 1000px) {
  .center-mobile {
    place-items: center;
  }
}
.display-block {
  display: block;
}

@font-face {
  font-family: heeboRegular;
  src: url("fonts/Heebo-Regular.ttf");
}
@font-face {
  font-family: heeboSemibold;
  src: url("fonts/Heebo-SemiBold.ttf");
}
@font-face {
  font-family: heeboBlack;
  src: url("fonts/Heebo-Black.ttf");
}
@font-face {
  font-family: skandi;
  src: url("fonts/Skandi.ttf");
}
@font-face {
  font-family: Fenix;
  src: url("fonts/Fenix-Regular.ttf");
}
@font-face {
  font-family: numbers;
  src: url("fonts/B612Mono-Regular.ttf");
}
.text-100 {
  color: var(--clr-neutral-300);
}

.text-200 {
  color: var(--clr-neutral-400);
}

.text-300 {
  color: var(--clr-primary-400);
}

.text-400 {
  color: var(--clr-primary-500);
}

.text-500 {
  color: var(--clr-primary-600);
}

.text-600 {
  color: var(--clr-primary-700);
}

.text-700 {
  color: var(--clr-primary-800);
}

.text-800 {
  color: var(--clr-neutral-900);
}

.text-alt {
  color: var(--clr-secondary-400);
}

.bg-100 {
  background-color: var(--clr-neutral-300);
}

.bg-200 {
  background-color: var(--clr-neutral-400);
}

.bg-300 {
  background-color: var(--clr-primary-400);
}

.bg-400 {
  background-color: var(--clr-primary-500);
}

.bg-500 {
  background-color: var(--clr-primary-600);
}

.bg-600 {
  background-color: var(--clr-primary-700);
}

.bg-700 {
  background-color: var(--clr-primary-800);
}

.bg-800 {
  background-color: var(--clr-neutral-900);
}

.bg-alt {
  background-color: var(--clr-secondary-400);
}

.fw-300 {
  font-weight: 300;
}

.fw-400 {
  font-weight: 400;
}

.fw-500 {
  font-weight: 500;
}

.fw-600 {
  font-weight: 600;
}

.fw-700 {
  font-weight: 700;
}

.fw-800 {
  font-weight: 800;
}

.fs-400 {
  font-size: 1.125rem;
}

.fs-500 {
  font-size: 1.25rem;
}

.fs-600 {
  font-size: 1.5rem;
}

.fs-700 {
  font-size: 2rem;
}

.fs-800 {
  font-size: 2.5rem;
}

.fs-900 {
  font-size: 3.5rem;
}

@media screen and (max-width: 1000px) {
  .fs-700 {
    font-size: 1.5rem;
  }
  .fs-900 {
    font-size: 2.8rem;
  }
}
.std-text {
  font-family: var(--ff-400);
}
.std-text h2 {
  color: var(--clr-primary-800);
  font-family: var(--ff-600);
  margin-top: calc(1 * var(--fs-400));
  margin-bottom: calc(0.8 * var(--fs-400));
}
.std-text h3 {
  line-height: 1.2;
  margin-bottom: calc(0.8 * var(--fs-400));
  color: var(--clr-neutral-900);
  font-family: var(--ff-500);
}
.std-text p {
  color: var(--clr-neutral-900);
  margin-bottom: calc(1.5 * var(--fs-400));
  line-height: 2;
  font-size: var(--fs-400);
}
.std-text a {
  color: inherit;
  border-bottom: var(--clr-primary-800) 2px solid;
  transition: 100ms ease-in-out;
}
.std-text a:hover, .std-text a:active {
  border-color: transparent;
}
.std-text .hr {
  border: 0.5px dashed var(--clr-primary-700);
}
.std-text .ingress {
  font-family: var(--ff-700);
  font-size: var(--fs-600);
  line-height: 1.6;
}

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

.btn-std {
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  transition: 150ms ease-in-out;
  font-size: var(--fs-500);
  font-family: var(--ff-500);
  text-decoration: none;
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.1rem;
  text-transform: uppercase;
  border: none;
}
.btn-std:hover, .btn-std:focus {
  border-radius: 5px;
  outline: none;
}

.hyphens-auto {
  hyphens: manual;
}

.no-links a {
  border: none;
}

.text-justify {
  text-align: justify;
}

.ff-400 {
  font-family: var(--ff-400);
}

.ff-500 {
  font-family: var(--ff-500);
}

.ff-600 {
  font-family: var(--ff-600);
}

.ff-700 {
  font-family: var(--ff-700);
}

.ff-800 {
  font-family: var(--ff-800);
}

footer {
  height: 20vh;
}

.hero {
  display: grid;
  grid-template-columns: 50% 50%;
  width: 100vw;
  overflow: hidden;
  position: relative;
  background-image: url("img/main_dark.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: min(50rem, 80%);
}
.hero .image[data-status=inactive] {
  display: none;
}
.hero .image[data-status=active] {
  display: block;
}
.hero .image {
  width: 70vw;
  max-height: 70vh;
  object-fit: contain;
  height: auto;
  position: absolute;
  transform: translate(-50%, -50%);
  scale: 1;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}
.hero .image.fullsize {
  cursor: auto;
}
.hero .image.fullsize.centerH {
  top: 50% !important;
  z-index: 10000 !important;
}
.hero .image.fullsize.centerV {
  left: 50% !important;
}
.hero .image.fullsize.scale {
  transform: translate(-50%, -50%) scale(120%);
  transform-origin: center;
}
.hero .image-background {
  inset: 0;
  position: absolute;
  background: var(--clr-primary-800);
  z-index: -1;
  opacity: 0;
  transition: all 800ms ease-in-out;
  pointer-events: all;
}
.hero .image-background.active {
  opacity: 50;
  z-index: 9000;
  pointer-events: none;
}
.hero .fullscreen-link {
  padding: 1rem 1.5rem;
  font-family: var(--ff-500);
  position: absolute;
  background-color: var(--clr-primary-400);
  color: var(--clr-primary-800);
  text-decoration: none;
  border-radius: 100vw;
  border: none;
  transform: translate(-50%, 150%) scale(0);
  top: 0%;
  left: 50%;
  z-index: 90000;
  opacity: 0;
}
.hero .fullscreen-link.active {
  opacity: 1;
  transform: translate(25%, 50%) scale(1);
  transition: 150ms ease-in-out;
}
.hero .fullscreen-link.active:hover {
  color: var(--clr-primary-400);
  background-color: var(--clr-primary-800);
}
.hero .fullscreen-button {
  border: none;
  background-color: var(--clr-primary-400);
  font-family: var(--ff-400);
  padding: 1.5rem;
  border-radius: 100vw;
  color: var(--clr-primary-800);
  font-size: 1.24rem;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-25%, 150%) scale(0);
  z-index: 90000;
  cursor: pointer;
  opacity: 0;
  transition: all 100ms ease-in-out;
  border: 3px solid transparent;
}
.hero .fullscreen-button__top-bar, .hero .fullscreen-button__btm-bar {
  position: absolute;
  width: 80%;
  height: 2.5px;
  background-color: var(--clr-primary-800);
  top: 50%;
  left: 50%;
  border-radius: 100vw;
  transition: 200ms ease-in-out;
  opacity: 0;
}
.hero .fullscreen-button__top-bar {
  transform: translate(-50%, -50%) rotate(0deg);
}
.hero .fullscreen-button__btm-bar {
  transform: translate(-50%, -50%) rotate(0deg);
}
.hero .fullscreen-button.active {
  opacity: 1;
  transform: translate(-50%, 50%) scale(1);
  transition-delay: 800ms;
}
.hero .fullscreen-button.active .fullscreen-button__top-bar {
  transform: translate(-50%, -50%) rotate(45deg);
  transition-delay: 1000ms;
  opacity: 1;
}
.hero .fullscreen-button.active .fullscreen-button__btm-bar {
  transform: translate(-50%, -50%) rotate(-45deg);
  transition-delay: 1000ms;
  opacity: 1;
}
.hero .fullscreen-button.active:hover .fullscreen-button__top-bar {
  animation: topBarWiggle 0.5s;
}
.hero .fullscreen-button.active:hover .fullscreen-button__btm-bar {
  animation: btmBarWiggle 0.5s;
}

@keyframes topBarWiggle {
  0% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  13% {
    transform: translate(-50%, -50%) rotate(40deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  38% {
    transform: translate(-50%, -50%) rotate(50deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  63% {
    transform: translate(-50%, -50%) rotate(40deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  88% {
    transform: translate(-50%, -50%) rotate(50deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(45deg);
  }
}
@keyframes btmBarWiggle {
  0% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  13% {
    transform: translate(-50%, -50%) rotate(-40deg);
  }
  25% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  38% {
    transform: translate(-50%, -50%) rotate(-50deg);
  }
  50% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  63% {
    transform: translate(-50%, -50%) rotate(-40deg);
  }
  75% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
  88% {
    transform: translate(-50%, -50%) rotate(-50deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}
.rsvp-popup {
  position: fixed;
  z-index: 1000000;
  top: 50%;
  left: 50%;
  width: min(90%, 20rem);
  aspect-ratio: 1/1;
  transform: translate(-50%, -50%);
  background-color: var(--clr-primary-600);
  display: flex;
  justify-content: center;
  flex-direction: column;
  padding: 1rem 2rem;
  color: var(--clr-primary-400);
  transition: 200ms ease-in-out;
  opacity: 1;
  pointer-events: all;
}
.rsvp-popup.hidden {
  opacity: 0;
  pointer-events: none;
}
.rsvp-popup h2 {
  font-family: var(--ff-500);
}
.rsvp-popup p {
  font-family: var(--ff-400);
  margin-bottom: 1rem;
}
.rsvp-popup a {
  padding: 1rem;
  font-family: var(--ff-500);
  background-color: var(--clr-primary-400);
  color: var(--clr-primary-800);
  text-decoration: none;
  padding: 0.75rem 1.25rem;
  border-radius: 30px;
  margin: 0 auto;
}

.countdown-container {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: var(--fs-500);
  grid-template-columns: repeat(4, 1fr);
}
.countdown-container span {
  display: block;
  width: 100%;
  font-family: var(--ff-600);
}
@media screen and (max-width: 1000px) {
  .countdown-container {
    font-size: var(--fs-400);
  }
}

.countdown-time {
  color: var(--clr-neutral-300);
  background-color: var(--clr-primary-600);
  font-family: var(--ff-500);
  text-align: center;
  letter-spacing: 0.05rem;
  padding: 2rem 3rem;
}
@media screen and (max-width: 1000px) {
  .countdown-time {
    padding: 1rem 1.5rem;
  }
}

.calendar {
  --hour-height: 6rem;
  --clr-calendar-bg: #f1f1f1;
  --cal-padding: 3rem;
  width: min(100%, 1000px);
  margin: 0 auto 2rem auto;
  padding: var(--cal-padding);
  background-color: transparent;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .calendar {
    margin: 0 auto 0 auto;
    --cal-padding: 1rem;
  }
}
.calendar__fullsize {
  position: fixed;
  top: 50%;
  left: 50%;
  border-radius: 0.33rem;
  width: min(100% - 2rem, 30rem);
  padding: 2rem;
  background: var(--clr-neutral-400);
  box-shadow: -1px 3px 44px -2px rgba(0, 0, 0, 0.6);
  -webkit-box-shadow: -1px 3px 44px -2px rgba(0, 0, 0, 0.6);
  -moz-box-shadow: -1px 3px 44px -2px rgba(0, 0, 0, 0.6);
  z-index: 10000;
  transition: all 150ms ease-in-out;
  transform: scale(100%) translate(-50%, -50%);
  opacity: 1;
  transform-origin: center;
  pointer-events: all;
}
.calendar__fullsize[data-status=inactive] {
  transform: scale(90%) translate(-50%, -50%);
  opacity: 0;
  pointer-events: none;
}
.calendar__fullsize .close {
  width: 2rem;
  height: 2rem;
  background: var(--clr-primary-800);
  border-radius: 50%;
  color: #fff;
  display: grid;
  place-items: center;
  position: absolute;
  top: -1rem;
  right: -1rem;
  cursor: pointer;
}
.calendar__fullsize .close svg {
  font-size: 1.8rem;
}
.calendar__fullsize .time {
  font-size: 1.5rem;
  font-family: var(--ff-num);
  margin-bottom: 0rem;
}
.calendar__fullsize .title {
  font-size: 2.5rem;
  line-height: 1;
  font-family: var(--ff-500);
}
.calendar__fullsize .place {
  padding: 0.5rem 0;
  color: var(--clr-primary-800);
  font-family: var(--ff-400);
}
.calendar__fullsize .place a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid var(--clr-primary-800);
}
.calendar__fullsize .description {
  margin-top: 1rem;
  font-family: var(--ff-700);
  font-size: 1.125rem;
}
.calendar__fullsize .map {
  margin-top: 2rem;
}
.calendar__fullsize .map a img {
  width: 100%;
  height: auto;
  border: 2px solid #fff;
}
.calendar__tick {
  position: absolute;
  left: calc(4rem + var(--cal-padding));
  right: 3rem;
  height: 1.5px;
  background-color: red;
}
.calendar__tick.hidden {
  display: none;
}
.calendar__tick .current-time {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(-120%, -55%);
  font-size: 0.8rem;
  color: red;
  background-color: var(--clr-neutral-300);
}
.calendar__tick::before {
  content: "";
  width: 0.5rem;
  height: 0.5rem;
  background-color: red;
  position: absolute;
  border: 1px solid #fff;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.calendar__baseline {
  border-radius: 1rem;
  background-color: #fff;
}
.calendar__baseline .hour {
  display: grid;
  grid-template-columns: min-content auto;
  border-bottom: 2px var(--clr-calendar-bg) solid;
  font-family: var(--ff-num);
  font-size: 0.75rem;
}
.calendar__baseline .hour:last-child {
  border-bottom: none;
}
.calendar__baseline .hour__numb {
  padding: 0.75rem 1.75rem;
  border-right: 2px solid var(--clr-calendar-bg);
}
@media screen and (max-width: 1000px) {
  .calendar__baseline .hour__numb {
    padding: 0.5rem 1.25rem;
  }
}
.calendar__baseline .hour__lines {
  width: 100%;
  height: var(--hour-height);
}
.calendar__baseline .hour__line {
  height: calc(var(--hour-height) / 2);
}
.calendar__baseline .hour__line.first {
  border-bottom: 2px solid var(--clr-calendar-bg);
}
.calendar__entries {
  position: absolute;
  top: var(--cal-padding);
  right: var(--cal-padding);
  bottom: var(--cal-padding);
}
.calendar__entry {
  position: absolute;
  padding: 0.25rem 1rem;
  border-radius: 0.5rem;
  overflow: hidden;
  left: 0;
  right: 0;
  opacity: 0.8;
  transition: 200ms ease-in-out;
  cursor: pointer;
}
.calendar__entry:hover {
  opacity: 1;
}
.calendar__entry.calendar__split.left {
  left: 0;
  right: 50%;
}
.calendar__entry.calendar__split.right {
  left: 50%;
  right: 0;
}
.calendar__entry::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 0.5rem;
}
.calendar__entry .time {
  font-family: var(--ff-num);
  font-size: 0.75rem;
}
.calendar__entry .title {
  font-size: 0.9rem;
  font-family: var(--ff-500);
}
.calendar__entry .place {
  font-size: 0.9rem;
  font-family: var(--ff-400);
}
.calendar__entry:nth-child(odd) {
  background-color: #660033;
  color: #ffc2e0;
}
.calendar__entry:nth-child(odd)::before {
  background-color: #ffc2e0;
}
.calendar__entry:nth-child(even) {
  background-color: #ffc2e0;
  color: #660033;
}
.calendar__entry:nth-child(even)::before {
  background-color: #cc0066;
}
.calendar__entry.short {
  display: flex;
  align-items: center;
  gap: 1ch;
}
@media screen and (max-width: 1000px) {
  .calendar__entry.short .place {
    display: none;
  }
}

.page-header img {
  min-height: 50vh;
  max-height: 80vh;
  width: 100vw;
  object-fit: cover;
}
.page-header h1 {
  display: block;
  color: var(--clr-primary-800);
  font-size: 2.5rem;
  margin: 0 auto;
  width: min(100rem, 100%);
  padding: 2rem 1rem 1rem 1rem;
  font-family: var(--ff-400);
}
@media screen and (max-width: 1050px) {
  .page-header h1 {
    padding: 2rem 1rem 1rem 0.5rem;
  }
}

.article__columns {
  width: min(50rem, 100%);
  margin: 0 auto;
  padding: 1rem;
}
@media screen and (max-width: 1050px) {
  .article__columns {
    grid-template-columns: 100%;
  }
}
.article h2 {
  font-family: var(--ff-400);
  font-weight: 600;
  font-size: 1.25rem;
  letter-spacing: 0.07rem;
}
.article p {
  font-family: var(--ff-400);
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 1.125rem;
}
.article__section {
  margin-bottom: 2rem;
}
.article__section img {
  margin-bottom: 1rem;
}
.article__section h2 {
  margin-bottom: 1rem;
}
.article a {
  color: inherit;
  border-bottom: 2.5px solid var(--clr-primary-500);
  text-decoration: none;
  transition: 150ms ease-in-out;
}
.article a:hover {
  border-color: transparent;
}

span[data-toastmaster-trigger] {
  padding: 0.1rem 0.5rem;
  background-color: var(--clr-primary-700);
  color: var(--clr-neutral-400);
  cursor: pointer;
  border-radius: 100vw;
}

.nav {
  position: fixed;
  bottom: -100%;
  left: 0;
  right: 0;
  padding: 2rem 0 8.5rem 0;
  z-index: 90000;
  background: var(--clr-primary-800);
  color: var(--clr-primary-400);
  transition: bottom 300ms cubic-bezier(0.2, 0.91, 0.77, 0.93);
}
@media screen and (max-width: 1050px) {
  .nav {
    padding: 1rem 0 8.5rem 0;
  }
  .nav.desktop {
    display: none;
  }
}
.nav__navigation {
  position: absolute;
  z-index: 1000;
  width: min-content;
  top: 50%;
  width: 2rem;
  aspect-ratio: 1/1;
}
@media screen and (min-width: 1051px) {
  .nav__navigation {
    display: none;
  }
}
.nav__navigation svg {
  width: 100%;
}
.nav__navigation.forward {
  left: 100%;
  transform: translate(-200%, -50%);
}
.nav__navigation.backward {
  left: 0;
  transform: translate(100%, -50%);
}
.nav__links {
  z-index: 90000;
  display: flex;
  gap: 4rem;
  width: max-content;
  padding-left: 4rem;
  scale: 0.9;
  transition: scale 100ms ease-in;
}
.nav__link {
  width: 30vw;
  color: var(--clr-primary-400);
  text-decoration: none;
  font-family: var(--ff-500);
  text-transform: uppercase;
  font-size: 1.5rem;
}
@media screen and (max-width: 1050px) {
  .nav__link {
    width: auto;
    font-size: 1rem;
  }
}
.nav__link-title {
  padding-bottom: 0.75rem;
}
.nav__link-image img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}
.nav__link-image-three {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  aspect-ratio: 16/9;
  overflow: hidden;
}
.nav__link-image-three img {
  aspect-ratio: 9/16;
  object-fit: cover;
}
@supports not (aspect-ratio) {
  .nav__link-image-three img {
    width: 177.77%;
  }
  .nav__link-image-three img::before {
    padding-top: 100%;
    height: 0;
    position: relative;
    overflow: hidden;
  }
}

.top-bar {
  padding: 2rem 1rem;
  width: min(100rem, 100%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1050px) {
  .top-bar {
    padding: 1rem;
  }
}
.top-bar .logo {
  width: max-content;
}
.top-bar .logo img {
  width: 5rem;
  height: auto;
}
.top-bar .date-and-button {
  display: flex;
  gap: 2rem;
}
.top-bar .date-and-button a {
  background-color: var(--clr-primary-800);
  display: block;
  padding: 0.5rem 1.5rem;
  border-radius: 100vw;
  color: var(--clr-neutral-400);
  text-decoration: none;
  font-family: var(--ff-500);
  transition: 200ms ease-in-out;
  border: 2px solid transparent;
  animation: animateRSVP 5s alternate infinite;
}
.top-bar .date-and-button a:hover {
  color: var(--clr-primary-800);
  border-color: var(--clr-primary-800);
  background-color: var(--clr-neutral-400);
}
@keyframes animateRSVP {
  0% {
    box-shadow: 0px 0px 5px 0px var(--clr-neutral-300);
  }
  100% {
    box-shadow: 0px 0px 5px 3px var(--clr-neutral-300);
  }
}
.top-bar .date-and-button .hidden {
  display: none;
}
.top-bar .date {
  font-family: var(--ff-num);
  font-weight: 600;
  overflow: hidden;
  width: 8ch;
  height: 4ch;
  position: relative;
}
.top-bar .date__date {
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: 1;
  font-size: 1.25rem;
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transition: all 300ms ease-in-out;
}
.top-bar .date__countdown {
  line-height: 1;
  margin-bottom: 0;
  letter-spacing: 1;
  font-size: 1rem;
  transform: translateX(100%) translateY(-50%);
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transition: all 300ms ease-in-out;
}
.top-bar .date:hover, .top-bar .date:active, .top-bar .date:focus {
  cursor: pointer;
}
.top-bar .date:hover .date__date, .top-bar .date:active .date__date, .top-bar .date:focus .date__date {
  transform: translate(-200%, -50%);
}
.top-bar .date:hover .date__countdown, .top-bar .date:active .date__countdown, .top-bar .date:focus .date__countdown {
  transform: translateX(0) translateY(-50%);
}

body[data-nav=true] .nav {
  bottom: 0;
}
body[data-nav=true] .nav__links {
  scale: 1;
}

.menu-toggle {
  position: fixed;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 4.5rem;
  border: none;
  background: var(--clr-primary-800);
  aspect-ratio: 1;
  border-radius: 50%;
  cursor: pointer;
  z-index: 99999;
  transition: 100ms ease;
}
@media screen and (max-width: 1000px) {
  .menu-toggle {
    scale: 0.8;
  }
  .menu-toggle.desktop {
    display: none;
  }
}
.menu-toggle.mobile {
  display: none;
}
@media screen and (max-width: 1000px) {
  .menu-toggle.mobile {
    display: initial;
  }
}
.menu-toggle .top-line,
.menu-toggle .btm-line {
  height: 0.2rem;
  border-radius: 12.5%;
  background-color: var(--clr-primary-400);
  position: absolute;
  right: 0.89rem;
}
.menu-toggle.invert {
  background-color: var(--clr-primary-400);
}
.menu-toggle.invert .top-line,
.menu-toggle.invert .btm-line {
  background-color: var(--clr-primary-800);
}
.menu-toggle .top-line {
  width: 60%;
  top: 1.65rem;
  transition: all 200ms ease-in-out;
}
.menu-toggle .btm-line {
  width: 45%;
  top: 2.75rem;
  transition: all 200ms ease-in-out;
}
.menu-toggle:hover {
  animation: menuShake 0.6s;
  transform: translateX(-50%) scale(1.09);
  transform-origin: center center;
}
.menu-toggle:hover .btm-line {
  width: 45%;
}
.menu-toggle:active {
  transform: translateX(-50%) scale(0.9);
}
@keyframes menuShift {
  0% {
    transform: translateX(0%);
  }
  35% {
    transform: translateX(0%);
  }
  50% {
    transform: translateX(100%);
  }
  65% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes menuShake {
  0% {
    transform: translateX(-50%) rotate(0deg) scale(1);
  }
  12.5% {
    transform: translateX(-50%) rotate(3deg) scale(1.03);
  }
  25% {
    transform: translateX(-50%) rotate(-3deg) scale(1.06);
  }
  37.5% {
    transform: translateX(-50%) rotate(3deg) scale(1.09);
  }
  50% {
    transform: translateX(-50%) rotate(-3deg) scale(1.09);
  }
  62.5% {
    transform: translateX(-50%) rotate(3deg) scale(1.09);
  }
  75% {
    transform: translateX(-50%) rotate(-3deg) scale(1.09);
  }
  87.5% {
    transform: translateX(-50%) rotate(3deg) scale(1.09);
  }
  100% {
    transform: translateX(-50%) rotate(0deg) scale(1.09);
  }
}
.menu-toggle.active {
  animation: none;
  background-color: var(--clr-primary-400);
}
.menu-toggle.active .top-line,
.menu-toggle.active .btm-line {
  background-color: var(--clr-primary-800);
  top: 2.1rem;
}
.menu-toggle.active .top-line {
  transform: rotate(45deg);
}
.menu-toggle.active .btm-line {
  transform: rotate(-45deg);
  width: 60%;
}
.menu-toggle:hover {
  animation: menuShake 0.6s;
}
.menu-toggle:hover .btm-line {
  width: 60%;
}

.mobile-nav {
  z-index: 90000;
  background: var(--clr-primary-800);
  color: var(--clr-primary-400);
  position: absolute;
  inset: 0;
  height: fit-content;
  max-height: 100vh;
  overflow-y: scroll;
  transform: translateX(-100%);
}
.mobile-nav__links {
  display: flex;
  flex-direction: column;
  padding: 2rem;
  gap: 2rem;
}
@media screen and (min-width: 1001px) {
  .mobile-nav {
    display: none;
  }
}

.person {
  text-align: center;
  cursor: pointer;
}
.person h2 {
  margin-top: 1rem;
  font-size: 1.5rem;
}
.person h3 {
  font-size: 0.9rem;
  font-family: var(--ff-400);
}
.person img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  transition: 200ms ease-in-out;
}
@supports not (aspect-ratio) {
  .person img {
    width: 100%;
  }
  .person img::before {
    padding-top: 100%;
    height: 0;
    position: relative;
    overflow: hidden;
  }
}
.person:hover img {
  scale: 1.01;
}
.person[data-person-name=Kjersti] img {
  object-position: 50% 20%;
}
.person__overlay {
  position: fixed;
  width: min(92%, 50rem);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--clr-primary-600);
  color: var(--clr-neutral-300);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  opacity: 1;
  border-radius: 1rem;
  transition: all 300ms ease-in-out;
}
.person__overlay-inner h2 {
  font-family: var(--ff-500);
}
.person__overlay-inner p {
  font-family: var(--ff-400);
  font-size: 1rem;
  line-height: 2;
}
@media screen and (max-width: 1050px) {
  .person__overlay-inner p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
.person__overlay-inner a {
  color: var(--clr-neutral-300);
  text-decoration: none;
  border-bottom: 2px solid var(--clr-neutral-300);
  transition: 150ms ease-in-out;
}
.person__overlay-inner a:hover {
  border-color: transparent;
}
.person__overlay[data-status=inactive] {
  opacity: 0;
  pointer-events: none;
}
.person__overlay img {
  width: min(50%, 20rem);
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 50%;
  margin: 1rem auto;
}
@supports not (aspect-ratio) {
  .person__overlay img::before {
    padding-top: 100%;
    height: 0;
    position: relative;
    overflow: hidden;
  }
}
.person__overlay__close {
  width: 2rem;
  height: 2rem;
  margin: 0 auto;
  padding: 0;
  border-radius: 50%;
  border: none;
  background: var(--clr-neutral-300);
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -50%);
  transition: scale 150ms ease-in-out;
  cursor: pointer;
}
.person__overlay__close div {
  width: 70%;
  height: 0.15rem;
  top: 50%;
  left: 50%;
  position: absolute;
  background-color: var(--clr-primary-700);
  transform: translate(-50%, -50%) rotate(45deg);
  border-radius: 100vw;
}
.person__overlay__close div.btm {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.person__overlay__close:hover {
  scale: 1.1;
}

.rsvp {
  width: min(45rem, 100% - 2rem);
  padding: 2rem;
  margin: 2rem auto;
  background-color: var(--clr-neutral-300);
  border-radius: 1rem;
}
.rsvp .hidden {
  display: none;
}
.rsvp__form-legal {
  font-size: 0.85rem;
  margin-top: 0.5rem;
}
.rsvp__header h2 {
  font-family: var(--ff-700);
  font-size: 2rem;
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.rsvp__header p {
  font-family: var(--ff-400);
  font-size: 1.125rem;
  margin-bottom: 1.125rem;
}
@media screen and (max-width: 1050px) {
  .rsvp__header p {
    font-size: 1rem;
  }
}
.rsvp__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-family: var(--ff-400);
}
.rsvp__form-alert {
  padding: 0.5rem 0 0 0;
  color: var(--clr-primary-400);
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  line-height: 1;
  position: absolute;
  border-radius: 0.25rem;
  background-color: var(--clr-primary-800);
  bottom: 0;
  left: 0%;
  transform: translate(0%, 130%);
  z-index: 100;
}
.rsvp__form-alert.hidden {
  display: none;
}
.rsvp__form-alert::before {
  content: "";
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--clr-primary-800);
  position: absolute;
  left: 0%;
  top: 0;
  transform: translate(50%, -98%);
}
.rsvp__form-alert svg {
  margin-right: 0.5rem;
}
.rsvp__form-field {
  display: flex;
  flex-direction: column;
  position: relative;
}
.rsvp__form-field span {
  font-family: var(--ff-500);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 1rem;
}
.rsvp__form-field input,
.rsvp__form-field textarea {
  padding: 0.75rem;
  border: 4px solid var(--clr-primary-800);
  color: var(--clr-primary-800);
  border-radius: 4px;
}
.rsvp__form-field input:focus,
.rsvp__form-field textarea:focus {
  outline: var(--clr-primary-400) 2px solid;
}
.rsvp__form-field textarea {
  resize: none;
}
.rsvp__form-field input.alert {
  border-color: orangered;
}
.rsvp__form-radio span {
  font-family: var(--ff-500);
  font-size: 1.25rem;
  margin-bottom: 1rem;
  margin-top: 2rem;
  display: block;
}
.rsvp__form-radio-set {
  display: grid;
  grid-template-columns: min-content max-content;
  gap: 1rem;
}
.rsvp__form-radio-set input[type=radio] {
  /* Add if not using autoprefixer */
  -webkit-appearance: none;
  appearance: none;
  /* For iOS < 15 to remove gradient background */
  background-color: #fff;
  /* Not removed via appearance */
  margin: 0;
  margin-left: 1rem;
  font: inherit;
  color: currentColor;
  width: 1.15em;
  height: 1.15em;
  border: 0.15em solid currentColor;
  border-radius: 50%;
  display: grid;
  place-content: center;
  cursor: pointer;
}
.rsvp__form-radio-set input[type=radio]::before {
  content: "";
  width: 0.65em;
  height: 0.65em;
  border-radius: 50%;
  transform: scale(0);
  transition: 120ms transform ease-in-out;
  box-shadow: inset 1em 1em var(--clr-primary-800);
}
.rsvp__form-radio-set input[type=radio]:checked::before {
  transform: scale(1);
}
.rsvp form {
  display: flex;
}
.rsvp form button {
  padding: 0.65rem 1.75rem;
  display: block;
  background-color: var(--clr-primary-800);
  color: var(--clr-primary-400);
  border: none;
  border-radius: 100vw;
  font-size: 1.25rem;
  letter-spacing: 0.05rem;
  font-family: var(--ff-400);
  margin: 2rem auto 0 auto;
  cursor: pointer;
}
.rsvp form button.invalid {
  color: darkgray;
  background-color: grey;
  cursor: not-allowed;
  pointer-events: none;
}
.rsvp form button.invalid:hover {
  pointer-events: all;
  cursor: not-allowed;
}
.rsvp form button.invalid:active {
  pointer-events: none;
}

.our-story {
  width: 100vw;
  height: 100vh;
  position: relative;
  max-width: 100vw;
  overflow-x: hidden;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.our-story__bg {
  background-image: url("img/story/our-story.webp");
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: scroll;
}
@media screen and (max-width: 1050px) {
  .our-story__bg {
    background-position: 35%;
  }
}
.our-story__entry {
  position: relative;
  height: 100vh;
  width: 100%;
}
.our-story__entry .first {
  color: var(--clr-neutral-300);
  position: absolute;
  top: 75%;
  left: 50%;
  padding: 1rem 1.5rem;
  font-family: var(--ff-500);
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  display: none;
}
.our-story__entry .first p {
  display: block;
  margin: 0;
  letter-spacing: 0.05rem;
  filter: drop-shadow(0px 0px 5px var(--clr-primary-800));
}
.our-story__entry .first svg {
  filter: drop-shadow(0px 0px 5px var(--clr-primary-800));
}
.our-story__entry-webkit-scrollbar {
  display: none;
}
.our-story__entry-inner {
  background-color: var(--clr-primary-400);
  color: var(--clr-primary-800);
  position: absolute;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 75%;
  padding: 1.5rem 3rem;
  font-family: var(--ff-400);
}
@media screen and (max-width: 1050px) {
  .our-story__entry-inner {
    left: 10%;
    right: 10%;
    transform: translate(0, 0);
  }
}

.gallery {
  width: min(100rem, 100%);
  padding: 2rem 1rem;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  position: relative;
}
@media screen and (max-width: 1050px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
.gallery img {
  display: block;
  aspect-ratio: 1/1;
  object-fit: cover;
  cursor: pointer;
  transition: 200ms ease-in-out;
}
.gallery img:hover {
  scale: 1.02;
}

.pswp__counter {
  font-family: var(--ff-500);
}
.pswp__image {
  margin: 1rem !important;
}

/*# sourceMappingURL=style.css.map */
