.hamburger-menu {
  position: relative;
  margin-left: 25px;
}

.hamburger-button {
  background: none;
  border: none;
  cursor: pointer;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hamburger-icon {
  width: 25px;
  height: 25px;
  background-image: url("/assets/img/hamburger.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.hamburger-button.active .hamburger-icon {
  background-image: url("/assets/img/hamburger-close.svg");
}

.dropdown-menu {
  position: absolute;
  overflow: hidden;
  top: 50px;
  left: 10px;
  border-radius: 16px;
  background-color: rgb(26 26 26);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.dropdown-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dropdown-menu li {
  border-bottom: 1px solid rgb(64 64 64);
}

.dropdown-menu li:last-child {
  border-bottom: none;
}

.dropdown-menu a {
  text-wrap: nowrap;
  display: block;
  padding: 10px 15px;
  text-decoration: none;
  color: #fff;
  transition: background-color 0.3s ease;
}

.dropdown-menu a:hover {
  background-color: rgb(47 47 47);
}

.hamburger-button.active + .dropdown-menu {
  display: block;
}

@media screen and (min-width: 781px) {
  .hamburger-icon {
    width: 40px;
    height: 40px;
  }
}

@media screen and (min-width: 1351px) {
  .navbar-logo {
    transform: translate(calc(65px / -2), 0);
  }
}