.navbar {
  background-color: #333;
  color: white;
  padding: 10px 20px;
}
.navbar-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.logo {
  display: flex;
  align-items: center;
}
.logo img {
  height: 40px;
  margin-right: 10px;
}
.logo-text {
  font-size: 1.2rem;
  font-weight: bold;
  color: white;
}
.nav-links {
  display: flex;
  list-style: none;
  gap: 20px;
}
.nav-links a {
  color: white;
  text-decoration: none;
  padding: 8px 0;
}
.nav-links a.active,
.nav-links a:hover {
  border-bottom: 2px solid white;
}

/* бургер-кнопка */
.burger {
  display: none;
  font-size: 26px;
  background: none;
  border: none;
  color: white;
  cursor: pointer;
}

/* мобільні стилі */
@media (max-width: 768px) {
  .burger {
    display: block;
  }
  .nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    margin-top: 10px;
    background-color: #333;
  }
  .nav-links.show {
    display: flex;
  }
  .nav-links li {
    text-align: center;
    padding: 10px 0;
    border-top: 1px solid #444;
  }
}
