.hamburger {
  position: fixed;
  top: 8px;
  right: 20px;
  width: 48px;
  height: 48px;

  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;

  cursor: pointer;
  z-index: 9999;

  appearance: none;
  -webkit-appearance: none;
}

.hamburger span {
  all: unset;
  position: absolute;
  left: 50%;
  top: 50%;

  width: 30px;
  height: 1px;
  background: #fff;
  border-radius: 999px;

  transform: translate(-50%, -50%);
  transform-origin: center;

  transition:
    transform 220ms ease,
    opacity 180ms ease;
}

.hamburger span:nth-child(1) {
  transform: translate(-50%, calc(-50% - 9px));
}
.hamburger span:nth-child(2) {
  transform: translate(-50%, -50%);
}
.hamburger span:nth-child(3) {
  transform: translate(-50%, calc(-50% + 9px));
}

.hamburger.is-open span:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}
.hamburger.is-open span:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* MENU OVERLAY / CONTENT */
body {
  margin: 0;
  height: 100vh;
  width: 100%;
}
.menu-overlay {
  height: 100%;
  width: 100%;
  overflow: hidden;
  scrollbar-width: none;
  display: flex;
  font-family: mersad;
}

.left-overlay,
.right-overlay {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: start;
  margin-top: 20rem;
}

.right-overlay {
  color: #fff;
}

.left-overlay {
  margin-left: 10rem;
}

h2,
h3,
p {
  margin: 0;
  padding: 0;
}

.navigation ul {
  padding: 0;
  margin: 0;
}

.navigation li {
  list-style: none;
  margin: 0;
  padding: 0;
}

.navigation li a {
  text-decoration: none;
  color: #fff;
  font-size: clamp(3rem, 2vw + 1rem, 10rem);
}

h2 {
  font-size: clamp(1rem, 0.1vw + 1rem, 10rem);
  color: #ffffff86;
  margin-bottom: 2rem;
}

h3 {
  font-size: clamp(1rem, 0.1vw + 1rem, 10rem);
  color: #ffffff86;
  margin-bottom: 1rem;
}

.hours h3 {
  margin-top: 3rem;
}

.menu-overlay {
  z-index: 10000;
}

.hamburger {
  position: fixed;
  z-index: 10001;

  transform: translateZ(0);
  will-change: transform, opacity;
}
