.homepage-tiles-wrapper {
  margin: 50px auto;
}

.homepage-tiles {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  text-align: center;
}

.homepage-tiles .tile {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 140px;
  border-radius: 10px;
  text-decoration: none;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  text-transform: uppercase;
}

.homepage-tiles .tile:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

.guden-intro-wrap {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 40px;
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.guden-intro-text {
  flex: 1.6;
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #333;
}

.guden-intro-text ul {
  margin: 20px 0;
  padding-left: 20px;
}

/* Obrázek vpravo – širší a nižší */
.guden-intro-image {
  flex: 1;
  overflow: hidden;
  border-radius: 30px;
  align-self: center;
  max-height: 420px;
}

.guden-intro-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 30px;
}

/* Responzivní verze */
@media (max-width: 900px) {
  .guden-intro-wrap {
    flex-direction: column;
  }

  .guden-intro-image {
    order: -1;
    width: 100%;
    height: 320px;
    border-radius: 20px;
  }
}

/* BLOKY TEXT-OBRÁZEK */
.od-blok {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
}

/* OBRÁZEK / VIDEO */
.od-obrazek,
.od-video {
  max-width: 440px;
  flex-shrink: 0;
  margin: 0;
}

.od-obrazek img,
.od-video video {
  width: 100%;
  height: auto;
  display: block;

}

/* TEXT */
.od-text {
  max-width: 100%;
  line-height: 1.8;
  text-align: left;
  font-size: 1.75rem;
}

.od-text h2 {
  font-size: 2.9rem;
  margin-bottom: 1.7rem;
  color: #000;
}

.od-text p {
  margin-bottom: 1.2rem;
}

.od-text ul {
  margin-bottom: 1.2rem;
  padding-left: 1.6rem;
}

/* DESKTOP */
@media screen and (min-width: 768px) {
  .od-blok {
    flex-direction: row;
    align-items: center;
    justify-content: center;
  }

  .od-blok.otoceny {
    flex-direction: row-reverse;
  }

  .od-obrazek,
  .od-video {
    margin-right: 40px;
  }

  .od-blok.otoceny .od-obrazek,
  .od-blok.otoceny .od-video {
    margin-right: 0;
    margin-left: 40px;
  }
}
/* KONEC BLOKY TEXT-OBRÁZEK */

/* KONTAKT */
.guden-contact {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  font-family: inherit;
}

/* Dva sloupce */
.guden-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
  margin-bottom: 40px;
}

.guden-col { min-width: 0; }

/* Karta s informacemi */
.guden-card {
  background: #ffffff;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: none;
  padding: 22px;
  height: 100%;
}

.guden-block p { margin: 0 0 14px; }
.guden-block a { text-decoration: none; border-bottom: 1px solid rgba(0,0,0,.15); }
.guden-block a:hover { border-bottom-color: currentColor; }

/* MAPA */
.guden-map-wrap {
  background: #f5f5f5;
  border: 1px solid #e8e8e8;
  border-radius: 0;
  box-shadow: none;
  height: 100%;
  min-height: 380px;
  display: flex;
}
.guden-map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

/* BANNER */
.guden-banner {
  margin: 36px 0 28px;
}
.guden-banner img {
  display: block;
  max-width: 100%;
  height: auto;
  border-radius: 0;
}

/* FORM */
.guden-form {
  background: #f9faf9;
  border: 1px solid #e6eae6;
  border-radius: 0;
  padding: 24px;
}
.guden-form h4 {
  margin: 0 0 14px;
  font-size: 1.2rem;
}

/* sjednocení tlačítek */
.guden-contact .btn,
.guden-contact button,
.guden-contact input[type="submit"] {
  color: #fff;
  border: 0;
  border-radius: 0;
  padding: 12px 20px;
  cursor: pointer;
  transition: filter .2s ease;
}
.guden-contact .btn:hover,
.guden-contact button:hover,
.guden-contact input[type="submit"]:hover {
  filter: brightness(0.95);
}

/* RESPONZIVITA */
@media (max-width: 980px) {
  .guden-row { grid-template-columns: 1fr; }
  .guden-card { height: auto; }
  .guden-map-wrap { min-height: 320px; height: auto; }
}
@media (max-width: 560px) {
  .guden-contact { padding: 28px 16px; }
  .guden-card, .guden-form { padding: 18px; }
}