/* Hamburger menu styles */
.menu-icon {
  display: none;
  width: 32px;
  height: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
}
.menu-icon span {
  display: block;
  width: 28px;
  height: 4px;
  margin: 4px 0;
  background: #fff;
  border-radius: 2px;
  transition: 0.3s;
}

/* Hide desktop nav on mobile, show hamburger icon */
@media (max-width: 768px) {
  #navItemsDesktop {
    display: none !important;
  }
  .menu-icon {
    display: flex !important;
  }
}
