/* menu */
.menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  clip-path: circle(0% at 50% 50%);
  background-color: var(--base-500);
  overflow: hidden;
  padding: 1rem;
  z-index: 100;
}

.menu-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
  background-color: var(--base-450);
  border-radius: 2rem;
}

.col {
  position: relative;
  height: 100%;
  display: flex;
}

.col-1 {
  flex: 3;
  padding: 2rem;
}

.col-2 {
  flex: 2;
  align-items: flex-end;
  padding: 2rem;
}

.link {
  position: relative;
  pointer-events: auto;
}

.link a h2 {
  text-decoration: none;
  color: var(--base-300);
  font-size: 4rem;
  line-height: 1.1;
  pointer-events: auto;
  transition: color 0.3s ease-out;
}

.link a h2:hover {
  color: var(--base-100);
}

.socials {
  width: 50%;
  display: flex;
  gap: 2em;
}

.socials .sub-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 2rem;
}

.menu-meta {
  color: var(--base-100);
}

.socials .sub-col p {
  position: relative;
  margin-bottom: 0.25rem;
}

.menu-meta p:nth-child(1) {
  color: var(--base-400);
  margin-bottom: 1rem;
}

/* SplitText mask styles */
.split-line {
  overflow: hidden;
  will-change: transform;
  pointer-events: auto;
}

@media (max-width: 1000px) {
  .link a h2 {
    font-size: 2.25rem;
    line-height: 1.2s;
  }

  .col-2 {
    flex-direction: column;
    align-items: flex-start;
  }

  .socials {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 10rem;
  }

  .socials .sub-col {
    flex: 1;
  }

  .menu-commissions {
    display: none;
  }
}
