/* ===== MODERNÍ VZHLED STRÁNKY ===== */
body {
  font-family: "Segoe UI", Roboto, Arial, sans-serif;
  margin: 0;
  padding: 30px;
  background: linear-gradient(135deg, #b0ec74, #7fd6ff);
}

/* ===== HLAVNÍ KARTA ===== */
.wrap {
  max-width: 900px;
  margin: auto;
  background: white;
  border-radius: 18px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.15);
  padding: 28px;
  transition: 0.3s;
}

.wrap:hover {
  transform: translateY(-3px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.18);
}

/* ===== NADPIS ===== */
h1 {
  margin-top: 0;
  text-align: center;
  font-size: 34px;
  letter-spacing: 1px;
  background: linear-gradient(90deg,#008582,#030745);
  -webkit-background-clip: text;
  color: transparent;
}

/* ===== ROZLOŽENÍ ===== */
.row {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}

/* ===== OBRÁZEK ===== */
.row img {
  width: 320px;
  max-width: 100%;
  border-radius: 18px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
  transition: 0.3s;
}

.row img:hover {
  transform: scale(1.04);
}

/* ===== TABULKA ===== */
table {
  border-collapse: collapse;
  width: 100%;
  min-width: 260px;
  overflow: hidden;
  border-radius: 12px;
}

/* HLAVIČKA TABULKY */
th {
  background: linear-gradient(90deg,#030745,#008582);
  color: white;
  padding: 10px;
  text-align: left;
  font-size: 15px;
}

/* BUŇKY */
td {
  padding: 10px;
  background: #f7f9ff;
  border-bottom: 1px solid #e4e8ff;
}

/* STŘÍDÁNÍ ŘÁDKŮ */
tr:nth-child(even) td {
  background: #eef3ff;
}

/* HOVER TABULKY */
tr:hover td {
  background: #dfe9ff;
  transition: 0.2s;
}

/* ===== TEXTOVÉ SEKCE ===== */
section {
  margin-top: 20px;
  padding: 14px 18px;
  background: #f6faff;
  border-left: 6px solid #008582;
  border-radius: 10px;
  line-height: 1.6;
}

/* PODNADPISY */
h2 {
  margin-top: 0;
  color: #030745;
}
/* ===== ANIMACE PŘI NAČTENÍ STRÁNKY ===== */
.wrap {
  animation: fadeInUp 1s ease forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    transform: translateY(40px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* ===== ANIMACE NADPISU ===== */
h1 {
  animation: titleGlow 3s ease-in-out infinite alternate;
}

@keyframes titleGlow {
  from {
    letter-spacing: 1px;
    filter: drop-shadow(0 0 2px rgba(0,133,130,0.3));
  }
  to {
    letter-spacing: 3px;
    filter: drop-shadow(0 0 10px rgba(0,133,130,0.6));
  }
}

/* ===== LEHKÉ "PLAVÁNÍ" OBRÁZKU ===== */
.row img {
  animation: floatImage 4s ease-in-out infinite;
}

@keyframes floatImage {
  0% { transform: translateY(0px); }
  50% { transform: translateY(-8px); }
  100% { transform: translateY(0px); }
}

/* ===== PULZOVÁNÍ INFO BOXŮ ===== */
section {
  animation: pulseBox 5s ease-in-out infinite;
}

@keyframes pulseBox {
  0% { box-shadow: 0 0 0 rgba(0,133,130,0.0); }
  50% { box-shadow: 0 0 18px rgba(0,133,130,0.25); }
  100% { box-shadow: 0 0 0 rgba(0,133,130,0.0); }
}