/* ===========================================
   Hero Slider — Main page (index.php)
   =========================================== */

.hero-slider {
  width: 100%;
  height: 100vh;
  overflow: hidden;
  position: relative;
}

.hero-slider .swiper-slide {
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  background-size: cover;
  background-position: center center;
  overflow: hidden;
}

/* Video background */
.hero-slider__video-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  pointer-events: none;
}

/* Content container inside each slide */
.hero-slider .hero__container {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 60% 40%;
  margin-bottom: 140px;
  width: 100%;
}

.hero-slider .hero__content {
  padding-top: 16px;
}

.hero-slider .hero__content p {
  margin-bottom: 40px;
}

/* Progressive blur inside each slide */
.hero-slider .progressive-blur-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

/* Swiper pagination (bullets) */
.hero-slider .hero-slider__pagination {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 8px;
}

.hero-slider .hero-slider__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.4);
  opacity: 1;
  border-radius: 50%;
  transition:
    background 0.3s ease,
    transform 0.3s ease;
}

.hero-slider .hero-slider__pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.3);
}

/* Navigation arrows for hero slider */
.hero-slider__nav {
  position: absolute;
  bottom: 32px;
  right: 40px;
  z-index: 20;
  display: flex;
  gap: 8px;
}

.hero-slider__nav-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(0, 0, 0, 0.3);
  color: #fff;
  cursor: pointer;
  transition:
    background 0.25s ease,
    border-color 0.25s ease;
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
}

.hero-slider__nav-btn:hover {
  background: rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.6);
}

.hero-slider__nav-btn svg {
  width: 18px;
  height: 18px;
}

/* Mobile responsive */
@media screen and (max-width: 768px) {
  .hero-slider,
  .hero-slider .swiper-slide {
    min-height: 90vh;
    height: 90vh;
  }

  .hero-slider .hero__container {
    grid-template-columns: 1fr;
    margin-bottom: 80px;
  }

  .hero-slider .hero__content {
    padding-top: 0;
  }

  .hero-slider .hero__content p {
    margin-bottom: 24px;
  }

  .hero-slider .hero__column {
    width: 100%;
  }

  .hero-slider .hero__column h1 {
    hyphens: auto;
  }

  .hero-slider__nav {
    bottom: 20px;
    right: 16px;
  }

  .hero-slider__nav-btn {
    width: 36px;
    height: 36px;
  }

  .hero-slider .hero-slider__pagination {
    bottom: 24px;
  }
}

/* Tablet */
@media screen and (min-width: 769px) and (max-width: 1024px) {
  .hero-slider .hero__container {
    grid-template-columns: 1fr;
    margin-bottom: 100px;
  }
}

/* Desktop */
@media screen and (min-width: 1025px) {
  .hero-slider,
  .hero-slider .swiper-slide {
    min-height: 100vh;
    height: 100vh;
  }

  .hero-slider .hero__container {
    grid-template-columns: 60% 40%;
    margin-bottom: 140px;
  }

  .hero-slider .hero__content {
    padding-top: 14px;
  }

  .hero-slider .hero__content p {
    margin-bottom: 40px;
  }
}
