.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 20px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo img {
  height: 40px;
}

.menu {
  display: flex;
  gap: 30px;
}

.menu a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 14px;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
}

.menu a:hover {
  border-color: #999;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
}

.hamburger div {
  width: 22px;
  height: 2.5px;
  background: #444;
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: #fff;
    width: 220px;
    padding: 20px;
    flex-direction: column;
    gap: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    transform: translateX(100%);
    transition: transform 0.3s ease;
  }

  .menu.show {
    transform: translateX(0);
  }
}

/* ================= NAVBAR ================= */
.navbar {
  display: flex;
  align-items: center;      /* wszystkie elementy w jednej linii */
  justify-content: space-between;
  padding: 10px 15px;
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 100;
}

.navbar .logo img {
  height: 48px;

}

.menu {
  display: flex;
  gap: 30px;
}

/* HAMBURGER - domyślnie ukryty */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 4px;
}

.hamburger div {
  width: 20px;
  height: 2.5px;
  background: #444;
}

.menu a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  font-size: 15px;
  border-bottom: 2px solid transparent;
  padding-bottom: 4px;
  transition: all 0.2s ease;
}

.menu a:hover {
  border-color: #999;
  color: #000;
}