/* Základní nastavení stránky */
html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  width: 100%;
  background-color: black;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  color: white;
  font-family: sans-serif;
}

/* Kontejner galerie */
.gallery {
  position: relative;
  text-align: center;
}

/* Obrázek v galerii */
.gallery img {
  max-width: 100vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 10px;
}

/* Popisek pod obrázkem */
#caption {
  margin-top: 20px;
  text-align: center;
  font-size: 1.2rem;
}

/* Ovládací tlačítka */
.controls {
  position: fixed;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 30px;
  z-index: 1000;
}

.controls button {
  background-color: #333;
  color: white;
  border: none;
  padding: 10px 20px;
  font-size: 24px;
  border-radius: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.controls button:hover {
  background-color: #555;
}


/* Skrytí ovládacích tlačítek na nízké výšce */
@media (max-height: 800px) {
  .controls {
    display: none;
  }
}

/* Úpravy pro menší obrazovky */
@media (max-width: 1000px) {
  .gallery img {
    max-width: 98%;
    max-height: 100vh;
    border-radius: 0;
  }

  body {
    padding: 0;
    margin: 0;
    font-size: 1.6rem;
  }

  #caption {
    font-size: 1.6rem;
    padding: 10px;
  }

}

