/* Základní styl hamburgeru - skrytý na desktopu */
.hamburger {
  display: none;  /* skryto mimo mobil */
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  padding: 10px;
}

/* Tři čárky hamburgeru */
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: white;
  transition: all 0.3s ease;
}

/* Zobraz hamburger na mobilu */
@media (max-width: 768px) {
  .hamburger {
    display: flex;  /* viditelný na mobilu */
  }
}
