@font-face {
  font-family: greatVibes;
  src: url(/fonts/GreatVibes-Regular.ttf);
}

a,
p {
  position: relative;
  text-decoration: none;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 300;
  user-select: none;
}

span {
  font-family: "GreatVibes", sans-serif;
  font-weight: 300;
}

nav {
  position: fixed;
  width: 100vw;
  padding: 2.5em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 99;
}

#logo-tag {
  font-weight: 500;
  font-size: 4rem;
  transition: opacity 0.5s ease;
}

#logo-tag.hidden {
  opacity: 0;
  pointer-events: none;
}

#logo-symbol.hide-on-load {
  display: none;
}

#logo-symbol.hidden {
  opacity: 0;
  pointer-events: none;
}

#logo-symbol {
  width: 70px;
  height: 70px;
  position: fixed;
  z-index: 2;
  top: 2.1rem;
  left: 2.1rem;
  transition: opacity 0.5s ease, filter 0.3s ease;
}

#logo-symbol.black {
  filter: invert(1);
}

.scroll-lock {
  pointer-events: none;
}

.menu-toggle {
  position: relative;
  width: 3rem;
  height: 1.5rem;
  cursor: pointer;
}

.menu-toggle p {
  position: absolute;
  transform-origin: top left;
  will-change: transform, opacity;
}

.menu-overlay {
  position: fixed;
  width: 100vw;
  height: 100svh;
  background-color: #0f0f0f;
  z-index: 50;
}

.menu-content {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  transform-origin: left bottom;
  will-change: transform, opacity;
  z-index: 55;
  cursor: none;
}

.menu-items,
.menu-footer {
  width: 100%;
  padding: 2.5em;
  display: flex;
  gap: 2.5em;
}

.col-lg {
  flex: 3;
}

.col-sm {
  flex: 2;
}

.menu-items .col-lg {
  display: flex;
  justify-content: center;
  align-items: center;
}

.menu-preview-img {
  position: relative;
  width: 45%;
  height: 100%;
  overflow: hidden;
}

.menu-preview-img img {
  position: absolute;
  will-change: transform, opacity;
}

.menu-items .col-sm {
  padding: 2.5em 0;
  display: flex;
  flex-direction: column;
  gap: 2.5em;
}

.menu-links,
.menu-socials {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}

.link,
.social {
  padding-bottom: 6px;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}

.link a,
.social a {
  display: inline-block;
  will-change: transform;
  transition: color 0.5s;
  cursor: none;
}

.link a {
  font-size: 3.5rem;
  letter-spacing: -0.02rem;
}

.social a {
  color: #8f8f8f;
}

.social a:hover {
  color: #ffffff;
}

.menu-footer {
  position: absolute;
  bottom: 0;
}

.menu-footer .col-sm {
  display: flex;
  justify-content: space-between;
}

.link a::after,
.social a::after,
.menu-footer a::after {
  position: absolute;
  content: "";
  top: 102.5%;
  left: 0;
  width: 100%;
  height: 2px;
  background: #ffffff;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s cubic-bezier(0.6, 0, 0.4, 1);
}

.link a:hover::after,
.social a:hover::after,
.menu-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.menu-toggle p#menu-close { opacity: 0; transform: translateX(-5px) translateY(10px) rotate(5deg); }
.menu-overlay { clip-path: polygon(0% 0%, 100% 0%, 100% 0%, 0% 0%); }
.menu-content { transform: translateX(-100px) translateY(-100px) scale(1.5) rotate(-15deg); opacity: 0.25; }
.link a, .social a { transform: translateY(120%); opacity: .25; }

.circle {
  height: 24px;
  width: 24px;
  border-radius: 24px;
  background-color: rgb(255, 255, 255);
  position: absolute;
  top: 0;
  left: 0;
}

.menu-overlay.is-open,
.menu-overlay.is-open * {
  cursor: none !important;
}
