/* === Všeobecné styly === */
body {
  scroll-behavior: smooth;
  font-family: 'Poppins', sans-serif; /* Přidáno pro konzistenci */
}

.parallax {
  background-attachment: fixed;
  background-position: center;
  background-size: cover;
}

.cta-button {
  font-weight: 600;
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
}

.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

section:nth-child(even) {
  background: #fdf2f8;
}

section img:hover {
  transform: scale(1.05);
  transition: transform 0.3s ease;
}

.card {
  transition: transform 0.3s ease;
}

.card:hover {
  transform: translateY(-5px);
}

.interactive-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interactive-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

@media (max-width: 640px) {
  .parallax {
    background-attachment: scroll;
  }
}

/* === SWIPER GALERIE FIX – PŘESNĚ 3 FOTKY NA DESKTOPU === */
.swiper-container {
  overflow: hidden;
  padding: 5px; /* Malý padding pro stíny */
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%; /* Mobilní výchozí */
  box-sizing: border-box;
}

/* --- POJISTKA PRO DESKTOP --- */
@media (min-width: 1024px) {
  .swiper-wrapper {
    display: flex;
    justify-content: flex-start;
  }
  .swiper-slide {
    width: calc((100% - 60px) / 3) !important; /* 3 slidy + 2 mezery po 30px */
  }
}

/* --- POJISTKA PRO TABLET --- */
@media (min-width: 640px) and (max-width: 1023px) {
  .swiper-slide {
    width: calc((100% - 20px) / 2) !important; /* 2 slidy + 1 mezera po 20px */
  }
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(253, 242, 248, 0.9);
  color: #ec4899;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: #fdf2f8;
  transform: translateY(-50%) scale(1.05);
}

.swiper-button-prev {
  left: -60px;
}
.swiper-button-next {
  right: -60px;
}

@media (max-width: 1400px) {
  .swiper-button-prev {
    left: 10px;
  }
  .swiper-button-next {
    right: 10px;
  }
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px !important;
  font-weight: 900;
}

.swiper-pagination {
  position: relative;
  bottom: auto;
  margin-top: 1.5rem;
}

.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: #fbcfe8;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #ec4899;
}

/* === STYLY PRO PLOVOUCÍ NAVIGAČNÍ TLAČÍTKA === */
.floating-nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background-color: #ec4899; /* Růžová barva tématu */
  color: white;
  border-radius: 50%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.floating-nav-button:hover {
  background-color: #d946ef; /* Tmavší růžová */
  transform: scale(1.1);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.3);
}

/* === KONEC SWIPER STYLŮ === */