/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* Animace při načtení */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Tělo stránky */
body {
  font-family: 'Segoe UI', sans-serif;
  background: linear-gradient(135deg, #74ebd5, #ACB6E5);
  color: #333;
  line-height: 1.6;
  padding: 20px;
}

/* Karta */
.wrap {
  max-width: 900px;
  margin: auto;
  background: white;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.2);
  animation: fadeIn 1s ease;
}

/* Nadpis */
h1 {
  text-align: center;
  margin-bottom: 20px;
  color: #2c3e50;
  transition: 0.3s;
}

h1:hover {
  color: #3498db;
  transform: scale(1.05);
}

/* Layout */
.row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

/* Obrázek */
img {
  max-width: 300px;
  width: 100%;
  border-radius: 15px;
  transition: transform 0.4s, box-shadow 0.4s;
}

img:hover {
  transform: scale(1.05) rotate(1deg);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

/* Tabulka */
table {
  width: 100%;
  border-collapse: collapse;
  overflow: hidden;
  border-radius: 10px;
}

th, td {
  padding: 12px;
  border-bottom: 1px solid #eee;
}

th {
  text-align: left;
  background: linear-gradient(90deg, #6dd5ed, #2193b0);
  color: white;
}

/* Hover řádky */
tr:hover {
  background-color: #f1f9ff;
  transition: 0.3s;
}

/* Sekce */
section {
  margin-top: 20px;
  animation: fadeIn 1.5s ease;
}

h2 {
  margin-bottom: 10px;
  color: #2980b9;
}

/* Text */
p {
  text-align: justify;
}

/* Jemný hover efekt na kartě */
.wrap:hover {
  transform: translateY(-5px);
  transition: 0.3s;
}