/* ===== Slider Base ===== */

.sp-hero-swiper {
  width: 100%;
  height: min(100vh, 720px);
  position: relative;
}

.sp-slide {
  position: relative;
  height: 100%;
  overflow: hidden;
}

/* ===== Media ===== */

.sp-media {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.sp-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform 8s ease;
}

/* Ken Burns */
.swiper-slide-active .sp-img {
  transform: scale(1.15);
}

/* ===== Overlay ===== */

.sp-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  z-index: 2;
}

/* ===== Content ===== */

.sp-content {
  position: relative;
  z-index: 3;
  color: #fff;
  max-width: 900px;
  padding: 80px;
}

/* ===== Typography ===== */

.sp-title {
  display: block;
  font-size: 48px;
  font-weight: 600;
  margin-bottom: 15px;
}

.sp-body {
  font-size: 18px;
  line-height: 1.5;
  margin-bottom: 20px;
}

.sp-list {
  margin: 20px 0;
  padding-left: 20px;
}

.sp-list li {
  margin-bottom: 8px;
}

/* ===== Button ===== */

.sp-btn {
  display: inline-block;
  margin-top: 20px;
  padding: 12px 24px;
  background: #fff;
  color: #000;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

.sp-btn:hover {
  background: #000;
  color: #fff;
}

/* ===== Logos ===== */

.sp-logo {
  max-width: 180px;
  margin-bottom: 20px;
}

.sp-logo-small {
  max-width: 120px;
  margin-top: 20px;
}

/* ===== Navigation ===== */

.sp-prev,
.sp-next {
  color: #fff;
}

.sp-prev::after,
.sp-next::after {
  font-size: 20px;
}

/* ===== Pagination ===== */

.sp-pagination .swiper-pagination-bullet {
  background: rgba(255,255,255,0.5);
  opacity: 1;
}

.sp-pagination .swiper-pagination-bullet-active {
  background: #fff;
}

/* ===== ANIMATION SYSTEM ===== */

.sp-anim {
  opacity: 0;
  transform: translateY(30px);
  filter: blur(0);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease,
    filter 0.4s ease;
}

.swiper-slide-active .sp-anim {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.swiper-slide-prev .sp-anim,
.swiper-slide-next .sp-anim {
  opacity: 0;
  transform: translateY(10px);
  filter: blur(2px);
  transition-duration: 0.4s;
}

/* ===== Responsive ===== */

@media (max-width: 768px), (max-height: 700px) {
  .sp-hero-swiper {
    height: 50vh;
  }

  .sp-content {
    padding: 30px;
  }

  .sp-title {
    font-size: 28px;
  }

  .sp-body {
    font-size: 15px;
  }
}