/* Základní nastavení stránky */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  background: #f5f5f7;
  color: #222;
}

/* Obal stránky */
.wrap {
  max-width: 900px;
  margin: 40px auto;
  padding: 24px 28px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

/* Nadpisy */
h1 {
  font-size: 2.4rem;
  margin-bottom: 20px;
  text-align: center;
  letter-spacing: 0.04em;
}

h2 {
  font-size: 1.6rem;
  margin: 28px 0 12px;
  border-left: 4px solid #ff8a3d;
  padding-left: 10px;
}

/* Řádek s obrázkem a tabulkou */
.row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  flex-wrap: wrap;
}

/* Obrázek kočky */
.row img {
  width: 260px;
  max-width: 100%;
  border-radius: 14px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

/* Tabulka informací */
table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
  background: #fafafa;
  border-radius: 12px;
  overflow: hidden;
}

th,
td {
  padding: 10px 14px;
  vertical-align: top;
}

th {
  width: 35%;
  background: #ffe1c7;
  text-align: left;
  font-weight: 600;
}

td {
  background: #fffaf5;
}

/* Střídání řádků pro lepší čitelnost */
tr:nth-child(even) td {
  background: #fff3e6;
}

/* Odstavec s popisem */
section p {
  font-size: 0.98rem;
  text-align: justify;
}

/* Responsivita pro mobily */
@media (max-width: 640px) {
  .wrap {
    margin: 20px 10px;
    padding: 18px 16px;
  }

  h1 {
    font-size: 2rem;
  }

  .row {
    flex-direction: column;
  }

  .row img {
    width: 100%;
  }

  th {
    width: 40%;
  }
}
