header{top: 0;
  z-index: 3;
  width: 100%;
  background: #000000; position: fixed; top: 0;
}

  .menu-button
{border: none;
  color: rgba(255, 255, 255, 0.5) !important;
  cursor: pointer;
  padding-right: 0;
  text-transform: uppercase;
  font-size: 16px;
  letter-spacing: .1em; line-height: 1;
  background-color: transparent;
  padding: 1px solid transparent;
  border-radius: 0.25rem;
}

#menu-items{
  display: flex;
  right: -100%;
  width: 100%;
  position: absolute;
  background: #fffffff0;
  transition: right 0.3s ease; /* smooth slide */
}

#menu-items ul{
  margin: 20px;
  padding: 0;
  list-style: none;
  font-size: 30px;
  line-height: 45px;
  gap: 20px;
  display: flex;
  flex-direction: column;
}

#menu-items ul li a {color: #474747;
  text-decoration: none;
  letter-spacing: 1px;}

.desktop-menu-links a {
  /* text-transform: uppercase; */
  text-decoration: none;
  color: darkgray;
}

.show-menu{
  right: 0 !important;
}

/*  */
/* Overlay that covers the page */
.menu-overlay {
  position: fixed;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5); /* semi-transparent black */
  opacity: 0; /* hidden by default */
  visibility: hidden; /* prevent clicks */
  transition: opacity 0.3s ease;
    z-index: 1;
}

/* Show overlay */
.menu-overlay.show {
  opacity: 1;
  visibility: visible;
}