.menu-container {
  margin-top: 8px;
  position: relative;
  display: flex;
  gap: 16px;
  align-items: center;
}

.hamburger {
  cursor: pointer;
  z-index: 10001;
  position: relative;
}

.ham {
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
  transition: transform 400ms;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.hamRotate.active {
  transform: rotate(45deg);
}

.line {
  fill: none;
  transition: stroke-dasharray 400ms, stroke-dashoffset 400ms;
  stroke: var(--white);
  stroke-width: 5.5;
  stroke-linecap: round;
}

.ham1 .top {
  stroke-dasharray: 40 139;
}

.ham1 .bottom {
  stroke-dasharray: 40 180;
}

.ham1.active .top {
  stroke-dashoffset: -98px;
}

.ham1.active .bottom {
  stroke-dashoffset: -138px;
  stroke: var(--white);
}

.ham1.active .middle {
  stroke: var(--white);
}

.menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 16px;
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.menu-overlay.active {
  opacity: 1;
  pointer-events: all;
}

.menu-link {
  font-size: 32px;
  font-weight: 600;
  color: var(--white);
  text-decoration: none;
  padding: 12px 24px;
  border-radius: 8px;
  transition: background-color 0.2s ease, transform 0.2s ease;

  @media screen and (min-width: 768px) {
    font-size: 48px;
  }
}

.menu-link:hover {
  background-color: rgba(255, 255, 255, 0.1);
  transform: translateX(10px);
}