.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  height: 64px;
  background: white;
  display: flex;
  align-items: center;
  z-index: 1000;
  transition: transform 0.3s ease;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}

.navbar__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.navbar__logo {
  text-decoration: none;
  font-size: 25px;
  font-weight: 300;
  color: #3498db;
  letter-spacing: 4px;
}

.navbar__list {
  list-style: none;
  display: flex;
  gap: 2rem;
  margin: 0;
  padding: 0;
}

.navbar__item {}

.navbar__link {
  text-decoration: none;
  color: #3498db;
  font-weight: 500;
}

.navbar__burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  background: none;
  border: none;
  cursor: pointer;
}

.navbar__burger-line {
  width: 24px;
  height: 3px;
  background-color: #3498db;
  border-radius: 2px;
}

.navbar--hidden {
  transform: translateY(-100%);
}

@media (max-width: 768px) {
  .navbar__list {
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    transform: translateY(-120%);
    transition: transform 0.3s ease;
    display: flex;
  }

  .navbar__list--active {
    transform: translateY(0);
  }

  .navbar__burger {
    display: flex;
  }
}