/* ===== Slideshow ===== */
.slideshow {
  width: 100%;
  position: relative;
}

.swiper {
  width: 100%;
  height: 700px;
}

@media (max-width: 768px) {
  .swiper {
    height: 60vh;
  }
}

.swiper-slide {
  position: relative;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.slide-content {
  position: absolute;
  top: 70%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
  width: 80%;
  max-width: 800px;
}

.slide-content h1 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  font-weight: 700;
  text-shadow: 0 3px 10px rgba(0,0,0,0.7);
  color: #fff;
}

@media (max-width: 768px) {
  .slide-content h1 {
    font-size: 2rem;
  }
}

.cta-btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #ff6600;
  color: #fff;
  font-size: 1.2rem;
  font-weight: normal;
  text-decoration: none;
  border-radius: 40px;
  transition: background 0.3s ease, transform 0.2s ease;
}

.cta-btn:hover {
  background: #e65c00;
  transform: scale(1.05);
}

.swiper-button-next,
.swiper-button-prev {
  color: #fff;
  opacity: 0.5;
}

.swiper-pagination-bullet {
  background: #fff;
  opacity: 0.7;
}
.swiper-pagination-bullet-active {
  background: #ff6600;
  opacity: 1;
}
