/**
 * Yachts Slider Widget Styles
 */

.yachts-slider-container .swiper-slide {
  height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  position: relative;
  filter: brightness(0.5);
  scale: 1;
}
.yachts-slider-container .swiper-slide-active {
  scale: 1.5;
  z-index: 999;
  filter: brightness(1);
}

.yachts-slider-container .swiper-slide .yacht-title,
.yachts-slider-container .swiper-slide .yacht-button,
.yachts-slider-container .swiper-slide .yacht-category {
  visibility: hidden;
}

.yachts-slider-container .swiper-slide-active .yacht-title,
.yachts-slider-container .swiper-slide-active .yacht-button,
.yachts-slider-container .swiper-slide-active .yacht-category {
  visibility: visible;
}
.yacht-image {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.yachts-slider-container .swiper-slide-active img {
  width: 80%;
  margin: 0 auto;
}
.yacht-title {
  color: #fff;
  text-align: center;
  font-family: "GFS Didot";
  font-size: 48px;
  font-weight: 400;
  position: absolute;
  bottom: 150px;
  right: 0;
  z-index: 999999999;
}
.yacht-button {
  position: absolute;
  bottom: 100px;
  right: 0;
  z-index: 999999999;
  background-color: transparent !important;
  border: 1px solid #fff !important;
  color: #fff !important;
  font-family: "Garamond" !important;
  font-size: 16px !important;
  font-style: italic !important;
  padding: 8px 12px !important;
}
.yacht-category {
  font-family: "GFS Didot";
  font-size: 32px;
  position: absolute;
  top: 100px;
  left: 0;
  z-index: 999999999;
}
.yachts-slider-container .swiper-button-disabled {
  display: none;
}
.yachts-slider-container .swiper-button-next {
  width: 40px;
  height: 40px;
  color: transparent;
  background: url(/wp-content/uploads/2025/04/arrow-right.svg);
  background-size: cover;
}
.yachts-slider-container .swiper-button-prev {
  width: 40px;
  height: 40px;
  color: transparent;
  transform: rotate(180deg);
  background: url(/wp-content/uploads/2025/04/arrow-right.svg);
  background-size: cover;
}
@media (max-width: 768px) {
  .yachts-slider-container .swiper-slide,
  .yachts-slider-container .swiper-slide:hover,
  .swiper-slide-active {
    height: 100%;
    filter: brightness(1);
    scale: 1 !important;
  }
  .yachts-slider-container .swiper-slide .yacht-title,
  .yachts-slider-container .swiper-slide .yacht-button,
  .yachts-slider-container .swiper-slide .yacht-category {
    visibility: visible !important;
  }
  .yachts-slider-container .swiper-slide:hover img {
    width: 100%;
  }
  .yacht-title {
    position: relative;
    font-size: 32px;
    bottom: 0;
    right: 0;
  }
  .yacht-button {
    position: relative;
    bottom: 0;
    left: 0;
  }
  .yacht-category {
    display: none;
  }
  .yachts-slider-container .swiper-slide-active img {
    width: 100%;
  }
}
