@import url('https://fonts.googleapis.com/css2?family=Quicksand:wght@400;700&display=swap');

body {
  margin: 0;
  padding: 0;
  /* Změna: background-size cover zajistí, že pozadí vyplní obrazovku */
  background-image: url(mk_background.png);
  background-repeat: no-repeat;
  background-size: cover; 
  background-position: center;
  overflow: hidden;
}

.hra {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
}

@keyframes poskakuj {
  0% { transform: translateY(0); }
  50% { transform: translateY(-1.5%); }
  100% { transform: translateY(0); }
}

/* === MLÁĎATA === */
.mlade {
  position: absolute; 
  animation: poskakuj 1.5s ease-in-out infinite;
  max-width: 10%;
}


#mlade1 { top: 11.1%; left: 33.8%; animation-delay: 0s; }
#mlade2 { top: 6.5%; left: 10.4%; animation-delay: 0.5s; }
#mlade3 { top: 44.4%; left: 27.6%; animation-delay: 1s; }
#mlade4 { top: 60.2%; left: 9.4%; animation-delay: 1.5s; }

.mlade.skryte {
  opacity: 0;
  pointer-events: none;
}

#rodic {
  position: absolute;
  left: 65%;
  top: 3%;
  z-index: 10;
  width: 32vw;
  height: auto;
}

/* === INFOTABULKA === */
.infotabulka {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: white;
  color: #333;
  padding: 2% 3%;
  border-radius: 15px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.4);
  text-align: center;
  width: 80%;
  max-width: 500px;
  display: none;
  z-index: 100;
  font-family: "Quicksand", sans-serif;
}

/* === TLAČÍTKO ZAVŘÍT === */
#zavrit {
  margin-top: 15px;
  background-color: #00bcd4;
  border: none;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  color: white;
  font-size: 1rem;
  transition: background-color 0.3s ease;
}

#zavrit:hover {
  background-color: #0098af;
}