/* ======== GLOBÁLNÍ NASTAVENÍ ======== */
body {
  font-family: 'Open Sans', sans-serif;
  color: #333;
  background-color: #fff;
}

h1, h2, h3, h4 {
  font-family: 'Kaushan Script', cursive;
  color: #a0006d;
  letter-spacing: 0.5px;
}

/* ======== KONTEJNERY ======== */
.container,
.container-omne,
.container-sluzby,
.container-kontakt,
.container-dovednosti,
.obsah {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 0 5%;
  box-sizing: border-box;
}

/* ======== ZÁKLADNÍ TEXT ======== */
p {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 1em;
}

/* ======== TLAČÍTKA A ODKAZY ======== */
a.cta-button,
button.cta-button {
  background-color: #a0006d;
  color: #fff;
  padding: 0.8em 1.5em;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  cursor: pointer;
  transition: background 0.3s ease;
}

a.cta-button:hover,
button.cta-button:hover {
  background-color: #c8328c;
}

/* ======== HLÁŠKY FORMULÁŘE ======== */
.success-msg, .error-msg {
  max-width: 800px;
  margin: 2em auto;
  padding: 1.5em 2em;
  border-radius: 15px;
  font-size: 1.2rem;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(0,0,0,0.1);
  animation: fadeIn 0.6s ease-in-out;
  font-family: 'Kaushan Script', cursive;
  letter-spacing: 0.5px;
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1);
}

.success-msg {
  background-color: #e8ffe8;
  color: rgb(0, 120, 50);
  border: 1px solid #b2d8b2;
}

.error-msg {
  background-color: #fff1f1;
  color: rgb(169, 3, 64);
  border: 1px solid #e0a1a1;
}

/* ======== CENÍK – TABULKY I BALÍČKY ======== */
.cenik-tabulky {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.cenik-tabulky .blok {
  background-color: #fff6fb;
  border: 1px solid #f3c9e1;
  border-radius: 15px;
  padding: 25px;
  box-sizing: border-box;
  transition: transform 0.2s ease;
}

.cenik-tabulky .blok:hover {
  transform: translateY(-5px);
}

.cenik-tabulky h3 {
  font-family: 'Kaushan Script', cursive;
  color: #a0006d;
  text-align: center;
  margin-bottom: 15px;
}

.cenik-tabulky table {
  width: 100%;
  border-collapse: collapse;
}

.cenik-tabulky th,
.cenik-tabulky td {
  padding: 8px 10px;
  font-size: 1rem;
  border-bottom: 1px solid #f3c9e1;
}

.cenik-tabulky th {
  text-align: left;
  color: #a0006d;
  font-weight: 600;
}

/* Balíčky */
.cenik-boxy {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
  border-top: 2px solid #f3c9e1;
  padding-top: 40px;
}

.cenik-box {
  background-color: #fff6fb;
  border-radius: 15px;
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  border: 1px solid #f3c9e1;
  transition: transform 0.2s ease;
}

.cenik-box:hover {
  transform: translateY(-5px);
}

.cenik-box h3 {
  color: #a0006d;
  font-family: 'Kaushan Script', cursive;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.cenik-box .cena {
  color: #a0006d;
  font-weight: bold;
  margin-top: 10px;
  font-size: 1.2rem;
}

/* ======== SEKCE O MNĚ ======== */
.container-omne {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  box-sizing: border-box;
}

.foto-omne {
  flex: 0 0 auto;
  max-width: 300px;
}

.foto-omne img,
.foto-vedle {
  width: 100%;
  height: auto;
  border-radius: 10px;
  object-fit: cover;
  box-shadow: none;
}

.text-omne {
  flex: 1 1 500px;
  text-align: left;
}

.text-omne h2 {
  margin-bottom: 15px;
  font-size: 1.8rem;
  color: #a0006d;
  font-family: 'Kaushan Script', cursive;
}

/* === Responzivní zobrazení === */
@media (max-width: 768px) {
  .container-omne {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .foto-omne {
    max-width: 220px;
    margin-bottom: 20px;
  }

  .text-omne {
    text-align: center;
  }

  .cenik-tabulky {
    grid-template-columns: 1fr;
  }

  .cenik-box {
    width: 100%;
  }
}

/* ======== ANIMACE ======== */
@keyframes fadeIn {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
