/* Hamburger button styles */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    width: 36px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    position: fixed;
    top: 9px;
    right: 17px;
}
.hamburger-menu span {
  display: block;
  height: 2px;
  width: 100%;
  background: white;
  margin: 5px 0;
  border-radius: 0px;
  transition: 0.3s;
}

.hamburger-menu.active span {
    margin: 2.6px 0;
}

/* Hamburger active (X) animation */
.hamburger-menu.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.hamburger-menu.active span:nth-child(2) {
  opacity: 0;
}
.hamburger-menu.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}
/* Mobile menu container */
.mobile-menu-container {
  display: none;
}
/* Mobile nav styles */
.mobile-nav {
  position: fixed;
  top: 60px;
  left: 0;
  width: 100vw;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
  transition: all 0.3s;
}
.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: center;
}
.mobile-menu li {
  border-bottom: 1px solid #eee;
}
.mobile-menu li a {
  display: block;
  padding: 16px;
  color: #333;
  text-decoration: none;
}
@media (max-width: 40em) {
  #container-menu {
    display: none !important;
  }
  .mobile-menu-container {
    display: block;
  }
  .hamburger-menu {
    display: flex;
  }
}
@media (min-width: 40.01em) {
  .mobile-menu-container {
    display: none !important;
  }
}
