@import url('https://fonts.googleapis.com/css2?family=Love+Ya+Like+A+Sister&family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

/* nectvercove obrazky
.swiper-container {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 60px; 
}

.navigation-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.swiper {
  width: 100%;
  padding: 50px;
  margin: 0 auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  height: 300px;
}

.swiper-slide-active {
  transform: scale(1.1);
  transition: transform 0.3s;
}

.swiper-button-next,
.swiper-button-prev {
  position: static; 
  margin: 0;
  width: 40px;
  height: 40px;
  color: #333;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}


.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #333;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

*/


.swiper-container {
  position: relative;
  width: 80%;
  margin-left: 20%;
  
  margin-top: 60px;
  margin-bottom: 40px;
}

.navigation-wrapper {
  position: absolute;
  top: 0;
  right: 80px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.swiper {
  width: 100%;
  
  margin: 0 auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
 
  aspect-ratio: 1; /* Zajistí čtvercový tvar */
  height: auto; /* Odstraníme fixní výšku */
}

/* Nové styly pro obrázek */
.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Obrázek se přizpůsobí bez oříznutí */
  padding: 10px; /* Volitelné - přidá mezeru kolem obrázku */
  border-radius: 30px;
}

/* Zbytek CSS zůstává stejný */
.swiper-button-next,
.swiper-button-prev {
  position: static;
  margin: 0;
  width: 60px;
  height: 60px;
  color: #fff;
  background: #95D6AB;
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  font-size: 18px;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: #333;
  opacity: 0.5;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}

.swiper-pagination {
    display: none !important;
}

.swiper-container h3 {
    color:#31798E;
    font-size: 35px;
    padding-left: 10px;
    font-family: "Love Ya Like A Sister", cursive;
}

.swiper-container h2 {
    padding-left: 10px;
    font-size: 25px;
    margin-bottom: 40px;
    color: #717677;
}

@media (max-width: 1921px)  {
   .swiper-container {width: 85%;margin-left: 15%;} 
}

@media (max-width: 768px)  {
   .swiper-container {width: 98%;margin-left: 2%;} 
   .navigation-wrapper {right: 20px;}
}