
/* ==============================================
   Kontaktní stránka
   ============================================== */
/* margin-bottom pro kontaktni stranku */
.kontakt-page {
  margin-bottom: 100px;
}

.kontakt-header {
  background: url("/images/kontakt.jpg") no-repeat center center;
  background-size: cover;
  margin-top: -130px;
  padding: 260px 0 260px 0;
  text-align: center;
  color: #fff;
  position: relative;
  z-index: 1;
}

.kontakt-header::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(
    to bottom,
    rgba(16, 94, 127, 0.95) 0%,
    rgba(16, 94, 127, 0.7) 20%,
    rgba(16, 94, 127, 0) 40%,
    rgba(16, 94, 127, 0.0) 100%
  );
}

.kontakt-header h1 {
  font-size: 48px;
  font-weight: 900;
  margin-bottom: 15px;
  text-shadow: -1px 1px 5px rgba(0,0,0,0.6);
}

.kontakt-header h2 {
  font-size: 45px;
  font-weight: 900;
  color: #fff;
  margin-bottom: 15px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.7);
}

.kontakt-header p {
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.5;
  text-shadow: 0 1px 6px rgba(0,0,0,0.6);
}

.kontakt-content {
  padding: 60px 0;
}

.kontakt-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
}

.kontakt-info {
  width: 38%;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.kontakt-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 25px;
  box-shadow: 0px 3px 20px #0000001F;
  transition: transform .3s ease, box-shadow .3s ease;
}

.kontakt-item:hover {
  transform: translateY(-3px);
  box-shadow: 0px 8px 30px rgba(0,0,0,0.12);
}

.kontakt-ico {
  width: 50px;
  height: 50px;
  background: #bbeff7;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.kontakt-ico img {
  width: 24px;
  height: auto;
}

.kontakt-text h3 {
  font-size: 16px;
  color: #105E7F;
  margin-bottom: 6px;
  font-weight: 700;
}

.kontakt-text a {
  color: #105E7F;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
}

.kontakt-text a:hover {
  color: #14cce8;
}

.kontakt-text p {
  color: #105E7F;
  line-height: 1.6;
  margin: 0;
}

.kontakt-mapa {
  width: 58%;
}

.kontakt-mapa h2 {
  font-size: 30px;
  font-weight: 900;
  color: #105E7F;
  margin-bottom: 25px;
}

.mapa-iframe iframe {
  border-radius: 16px;
  box-shadow: 0px 3px 20px #0000001F;
  width: 100%;
}

@media (max-width: 968px) {
  .kontakt-info,
  .kontakt-mapa {
    width: 100%;
  }
  /* margin-bottom pro kontaktni stranku */
.kontakt-page {
  margin-bottom: 100px;
}

.kontakt-header {
    padding: 250px 20px 50px 20px;
  }
  .kontakt-header h1 {
    font-size: 36px;
  }
  .kontakt-header h2 {
    font-size: 24px;
  }
  .kontakt-header p {
    font-size: 17px;
  }
  .kontakt-mapa h2 {
    font-size: 24px;
  }
  .kontakt-content {
    padding: 40px 20px;
  }
}

@media (max-width: 600px) {
  .kontakt-header h1 {
    font-size: 30px;
  }
  .kontakt-header h2 {
    font-size: 30px;
  }
  .kontakt-header p {
    font-size: 16px;
  }
  .kontakt-item {
    padding: 20px;
    gap: 15px;
  }
  .kontakt-text h3 {
    font-size: 14px;
  }
  .kontakt-text a {
    font-size: 15px;
  }
}
