/* Reset a základní nastavení */
body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Inter', 'Montserrat', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  color: #333;
  background: #f9f9f9;
}

/* .slider-section { */
  /* padding-top: 100px; */
/* } */


/* Kontejner slideru */
.swiper {
  max-width: 1200px;
  margin: 40px auto 0 auto;
  position: relative;
  overflow: visible; /* dovolí šipkám přesahovat */
  background: transparent;
}

/* Wrapper pro slidy */
.swiper-wrapper {
  width: 100%;
  height: 100%;
}

/* Slide */
.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  border-radius: 8px;
}

/* Obrázek ve slidu */
.swiper-slide img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

/* Boční světlé poloprůhledné pruhy */
.swiper::before,
.swiper::after {
  content: "";
  position: absolute;
  top: 0;
  width: 60px;
  height: 100%;
  background: rgba(255,255,255,0.6);
  z-index: 2;
  pointer-events: none;
}
.swiper::before { left: 0; }
.swiper::after  { right: 0; }

/* Textový overlay na slidu */
.slide-text {
  position: absolute;
/*   left: 1%; */
  bottom: 5px;
  width: 100%;
  background: rgba(30, 30, 30, 0.5);
  color: #fff;
  padding: 0rem 0.5rem 2em;
/*   border-radius: 10px; */
  /* další původní styly */
}

.slider-section .slide-text h2 {
  color: #f0f0f0 !important;
}


/* --- Šipky Swiperu --- */
.swiper-button-next,
.swiper-button-prev {
  width: 56px;
  height: 56px;
  background: none;
  border: none;
  box-shadow: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
  color: #007aff; /* barva šipky */
  opacity: 1;
  transition: color 0.2s, background 0.2s;
  padding: 0;
  overflow: visible;
}

.swiper-button-next { right: 24px; }
.swiper-button-prev { left: 24px; }

/* Zvětšená, světle modrá šipka */
.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 48px;
  font-weight: bold;
  color: #007aff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

/* Hover efekt */
.swiper-button-next:hover,
.swiper-button-prev:hover {
  color: #005bb5;
  background: rgba(0,122,255,0.08);
  border-radius: 50%;
}

/* Disabled stav šipek */
.swiper-button-disabled {
  opacity: 0.4 !important;
  pointer-events: none;
}

/* Stránkování (bulletky) */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: #bbb;
  opacity: 1;
  margin: 0 6px !important;
  transition: background 0.2s;
}
.swiper-pagination-bullet-active {
  background: #007aff;
}

/* Scrollbar (volitelné) */
.swiper-scrollbar {
  background: #eee;
  height: 4px;
  border-radius: 2px;
  margin-top: 10px;
}
.swiper-scrollbar-drag {
  background: #007aff;
  border-radius: 2px;
}

/* Responsivita */
@media (max-width: 900px) {
  .swiper {
    max-width: 100%;
  }
  .swiper::before,
  .swiper::after {
    width: 36px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    width: 36px;
    height: 36px;
  }
  .swiper-button-next::after,
  .swiper-button-prev::after {
    font-size: 32px;
  }
  .slide-text {
    padding: 12px 10px;
    font-size: 15px;
  }
}

/* Na mobilu (šířka do 768px) text pod obrázek */
@media (max-width: 768px) {
  .slide-text {
    position: static;
    transform: none;
    background: none;
    color: #222;
    padding: 16px 0 8px 0;
    border-radius: 0;
    max-width: 100%;
    text-shadow: none;
    z-index: 1;
    font-size: 1rem;
  }
  .swiper-slide {
    flex-direction: column;
    align-items: stretch;
  }
}
