/*
 * Moderní styl pro služby - Rovnátka Cheb
 */

/* Styl pro karty služeb */
.card {
  border: none !important;
  border-radius: 20px !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
  margin-bottom: 50px !important; /* Zvětšení odsazení zespoda */
  margin-top: 20px !important; /* Přidání odsazení shora */
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1) !important;
  background-color: #fff !important;
}

.card:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

/* Styl pro obrázky v kartách */
.card-img {
  position: relative !important;
  overflow: hidden !important;
}

.card-img img {
  width: 100% !important;
  height: auto !important;
  transition: transform 0.5s ease !important;
  border-radius: 20px !important; /* Zaoblení všech rohů obrázku */
}

.card:hover .card-img img {
  transform: scale(1.03) !important;
}

/* Styl pro obsah karty */
.card-body {
  padding: 40px !important; /* Konzistentní padding ze všech stran */
  border-radius: 0 0 20px 20px !important;
  margin-bottom: 25px !important; /* Zvětšení spodního okraje */
}

.card-title {
  position: relative !important;
  margin-bottom: 20px !important;
  margin-top: 20px !important; /* Přidání odsazení nad nadpisem */
  padding-bottom: 15px !important;
  color: #1e4356 !important;
  font-weight: 600 !important;
}

.card-title:after {
  content: '' !important;
  position: absolute !important;
  display: block !important;
  width: 80px !important;
  height: 3px !important;
  background: #68A4C4 !important;
  bottom: 0 !important;
  left: 0 !important;
  transition: width 0.3s ease !important;
}

.card:hover .card-title:after {
  width: 120px !important;
}

.card-title a {
  color: #1e4356 !important;
  text-decoration: none !important;
  transition: color 0.3s ease !important;
}

.card-title a:hover {
  color: #68A4C4 !important;
}

.card-text {
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #555 !important;
}

/* Ceník */
.pricing .box {
  padding: 30px !important;
  margin-bottom: 30px !important;
  background: #fff !important;
  text-align: center !important;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.1) !important;
  border-radius: 20px !important;
  position: relative !important;
  overflow: hidden !important;
  transition: all 0.3s ease !important;
}

.pricing .box:hover {
  transform: translateY(-5px) !important;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15) !important;
}

.pricing h3 {
  font-weight: 600 !important;
  margin-bottom: 20px !important;
  font-size: 22px !important;
  position: relative !important;
  padding-bottom: 15px !important;
  color: #1e4356 !important;
}

.pricing h3:after {
  content: '' !important;
  position: absolute !important;
  display: block !important;
  width: 60px !important;
  height: 3px !important;
  background: #68A4C4 !important;
  bottom: 0 !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
  transition: width 0.3s ease !important;
}

.pricing .box:hover h3:after {
  width: 100px !important;
}

.pricing .featured {
  border: 3px solid #68A4C4 !important;
  border-radius: 22px !important;
}