h1, h2 {
  font-family: 'Arial Black', sans-serif;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: #222;
  border-bottom: 2px solid #f0c040;
  padding-bottom: 10px;
}
button, .tlacitko {
  background-color: #f0c040;
  border: none;
  padding: 12px 24px;
  color: black;
  font-weight: bold;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 8px;
}

button:hover, .tlacitko:hover {
  background-color: #000;
  color: #f0c040;
}
img {
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}
section {
  padding: 40px 20px;
  background-color: #fafafa;
}
body {
  font-family: 'Montserrat', sans-serif;
}




/* Základní vzhled tabulky */
table.cenik {
  width: 100%;
  max-width: 700px;
  margin: 40px auto;
  border-collapse: collapse;
  background: #fff;
  box-shadow: 0 0 12px rgba(0,0,0,0.1);
  border-radius: 8px;
  overflow: hidden;
  font-size: 16px;
}

table.cenik th {
  background: #f0c040;
  color: black;
  padding: 12px;
  text-align: left;
  text-transform: uppercase;
  font-weight: bold;
}

table.cenik td {
  padding: 12px 20px;
  border-bottom: 1px solid #eee;
}

/* RESPONSIVNÍ PŘEPIS PRO MOBILY */
@media screen and (max-width: 600px) {
  table.cenik thead {
    display: none;
  }

  table.cenik, table.cenik tbody, table.cenik tr, table.cenik td {
    display: block;
    width: 100%;
  }

  table.cenik tr {
    margin-bottom: 15px;
    border-bottom: 2px solid #f0c040;
  }

  table.cenik td {
    padding: 10px 15px;
    text-align: left;
    position: relative;
  }

  table.cenik td::before {
    content: attr(data-label);
    font-weight: bold;
    display: block;
    margin-bottom: 6px;
    color: #555;
  }
}



.flying-icon {
  position: fixed;
  z-index: 9999;
  pointer-events: none;
  opacity: 0.15;
  animation-iteration-count: infinite;
}

.icon1 { font-size: 48px; animation: floatRightUp 25s linear infinite; }
.icon2 { font-size: 84px; animation: floatLeftDown 30s linear infinite; }
.icon3 { font-size: 40px; animation: floatWave 35s linear infinite; }
.icon4 { font-size: 66px; animation: floatUp 40s linear infinite; }


/* ANIMACE – různé směry a efekty */
@keyframes floatRightUp {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(120vw, -50vh) rotate(360deg); }
}

@keyframes floatLeftDown {
  0% { transform: translate(0, 0) rotate(0deg); }
  100% { transform: translate(-120vw, 80vh) rotate(-360deg); }
}

@keyframes floatWave {
  0% { transform: translate(0, 0); }
  25% { transform: translate(25vw, -5vh); }
  50% { transform: translate(50vw, 5vh); }
  75% { transform: translate(75vw, -5vh); }
  100% { transform: translate(100vw, 0); }
}

@keyframes floatUp {
  0% { transform: translateY(0); }
  100% { transform: translateY(-120vh); }
}






img {
  border: 3px solid transparent;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
}

img:hover {
  border-color: gold;
  box-shadow: 0 0 20px rgba(255, 215, 0, 0.8);
  transform: scale(1.03);
}








a[href^="mailto:"] {
  color: #333;
  font-weight: bold;
}

a[href^="mailto:"]:hover {
  color: gold;
}


#kalkulacka {
  max-width: 500px;
  margin: 30px auto;
  padding: 20px;
  border: 2px solid #f0c040;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

#kalkulacka h3 {
  text-align: center;
  margin-top: 20px;
}

#kalkulacka label {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
}

img[title="REKVIK-MAPA-PHA-KH.png"] {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transition: none !important;
}

img[title="REKVIK-MAPA-PHA-KH.png"]:hover,
img[title="REKVIK-MAPA-PHA-KH.png"]:focus {
  border: none !important;
  outline: none !important;
  box-shadow: none !important;
  transform: none !important;
}

