.navbar {
  position: relative;
  background: linear-gradient(to right, #634C3A, #1A1511);
  z-index: 9999;
}
.navbar__container {
  display: flex;
  height: 95px;
  padding: 0 16px;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) {
  .navbar__container {
    padding-left: 96px;
    padding-right: 40px;
  }
}
.navbar__logo {
  display: flex;
  align-items: center;
}
.navbar__logo svg {
  width: 62px;
  height: 48px;
}
.navbar__toggle {
  display: block;
  color: white;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}
@media (min-width: 768px) {
  .navbar__toggle {
    display: none;
  }
}
.navbar__toggle:focus {
  outline: none;
}
.navbar__hamburger {
  display: flex;
  flex-direction: column;
}
.navbar__hamburger span {
  display: block;
  width: 32px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}
.navbar__hamburger--open span:first-child {
  transform: rotate(45deg) translate(6px, 6px);
}
.navbar__hamburger--open span:nth-child(2) {
  opacity: 0;
}
.navbar__hamburger--open span:last-child {
  transform: rotate(-45deg) translate(6px, -6px);
}
.navbar__menu {
  display: none;
  gap: 24px;
  align-items: center;
  font-weight: 400;
  color: white;
  font-size: 18px;
  line-height: 1;
  letter-spacing: normal;
}
@media (min-width: 768px) {
  .navbar__menu {
    display: flex;
  }
}
@media (min-width: 1024px) {
  .navbar__menu {
    gap: 40px;
    font-size: 16px;
  }
}
.navbar__item {
  list-style: none;
}
.navbar__link {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar__link:hover {
  color: #9C826F;
}
.navbar__avatar {
  width: 60px;
  height: 60px;
  background: transparent;
  border-radius: 50%;
  border: 2px solid white;
}
.navbar__mobile-menu {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background: linear-gradient(to right, #634C3A, #1A1511);
  transition: all 0.3s ease;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  z-index: 10000;
}
@media (min-width: 768px) {
  .navbar__mobile-menu {
    display: none;
  }
}
.navbar__mobile-menu--open {
  max-height: 600px;
  opacity: 1;
}
.navbar__mobile-list {
  display: flex;
  flex-direction: column;
  padding: 16px;
  gap: 16px;
  color: white;
  font-size: 20px;
  list-style: none;
  margin: 0;
}
.navbar__mobile-item {
  margin: 0;
}
.navbar__mobile-link {
  display: block;
  padding: 8px 0;
  color: white;
  text-decoration: none;
  transition: color 0.3s ease;
}
.navbar__mobile-link:hover {
  color: #9C826F;
}
.navbar__mobile-avatar {
  display: flex;
  justify-content: flex-start;
  margin-top: 8px;
}

.navbar__toggle:focus-visible {
  outline: 2px solid #9C826F;
  outline-offset: 2px;
}

.navbar__mobile-menu {
  transform-origin: top;
}

.navbar__link--active,
.navbar__mobile-link--active {
  color: #9C826F;
  font-weight: 600;
}

/*# sourceMappingURL=navbar.css.map */
