.hero-ples {
  background: #ffffff;
  padding: 80px 20px;
}

.hero-ples__container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

/* Obrázek */
.hero-ples__image {
  background: #fff;
  padding: 12px;
  border-radius: 6px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.15);
}

.hero-ples__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 4px;
}

/* Text */
.hero-ples__content h1 {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #000;
}

.hero-ples__content p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin-bottom: 30px;
  max-width: 480px;
}

/* Tlačítko */
.hero-ples__btn {
  display: inline-block;
  float:left;
  background: #f2c38c;
  color: #111;
  padding: 14px 28px;
  text-decoration: none;
  font-weight: 700;
  border-radius: 4px;
  transition: background 0.2s ease;
}

.hero-ples__btn:hover {
  background: #f3b369;
}

/* Responzivita */
@media (max-width: 900px) {
  .hero-ples__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-ples__content h1 {
    font-size: 32px;
  }
}
/* Reverzní varianta (text vlevo, fotka vpravo) */
.hero-ples--reverse .hero-ples__container {
  grid-template-columns: 1fr 1.2fr;
}

.hero-ples--reverse .hero-ples__content {
  order: 1;
}

.hero-ples--reverse .hero-ples__image {
  order: 2;
}

/* Mobil – pořád stejná logika */
@media (max-width: 900px) {
  .hero-ples--reverse .hero-ples__container {
    grid-template-columns: 1fr;
  }

  .hero-ples--reverse .hero-ples__content,
  .hero-ples--reverse .hero-ples__image {
    order: unset;
  }
}
.skew-section {
  background: #f2c38c;
  transform: skewY(3deg);
  margin: 120px 0;
}

.skew-section__inner {
  transform: skewY(-3deg); /* vyrovnání textu */
  max-width: 1100px;
  margin: 0 auto;
  padding: 80px 20px;
  text-align: center;
}

.skew-section__inner p {
  color: #111;
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  line-height: 1.5;
}
