/* navbar */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
header {
  background-color: black;
}
li {
  list-style: none;
}
.nav-item a {
  color: white;
  text-decoration: none;
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* padding: 32px 0; */
}
.nav-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.nav-branding {
  font-size: 2rem;
}
.nav-link {
  transition: 0.1s ease;
  /* font-size: 20px; */
}
.nav-link:hover {
  color: #c29f77;
}
.humburger {
  display: none;
  cursor: pointer;
}
.bar {
  display: block;
  width: 25px;
  height: 3px;
  margin: 5px auto;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background-color: white;
}
@media (max-width: 768px) {
  .nav-item a {
    color: black;
    text-decoration: none;
  }
  .humburger {
    display: block;
  }
  .humburger.active .bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .humburger.active .bar:nth-child(2) {
    opacity: 0;
  }
  .humburger.active .bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .nav-menu {
    position: absolute;
    left: -200%;
    top: 70px;
    gap: 0;
    flex-direction: column;
    background-color: #f6f6f6;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    z-index: 1;
  }
  .nav-item {
    margin: 16px 0;
  }
  .nav-menu.active {
    left: 0;
  }
}
