/* FDC Slider — Frontend */

.fdc-slider-wrapper {
  width: 100%;
  max-width: 2560px;
  margin: 0 auto;
  overflow: hidden;
}

.fdc-swiper {
  width: 100%;
  height: 90vh;
  min-height: 480px;
  max-height: 900px;
}

.fdc-slide {
  position: relative;
  overflow: hidden;
}

.fdc-slide__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transform: scale(1.02);
  transition: transform 6s ease;
}

.swiper-slide-active .fdc-slide__bg {
  transform: scale(1);
}

.fdc-slide__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(27, 58, 45, 0.75) 0%,
    rgba(27, 58, 45, 0.4) 50%,
    rgba(27, 58, 45, 0.1) 100%
  );
}

.fdc-slide__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 4rem 5vw 5rem;
  max-width: 700px;
}

.fdc-slide__subtitle {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: #F0C419;
  margin: 0 0 1rem;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.3s, transform 0.6s ease 0.3s;
}

.fdc-slide__title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 400;
  color: #FAF6EF;
  line-height: 1.1;
  margin: 0 0 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease 0.5s, transform 0.7s ease 0.5s;
}

.fdc-slide__cta {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  color: #1B3A2D;
  background: #F0C419;
  padding: 0.875rem 2.5rem;
  transition: background 0.3s, transform 0.3s;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease 0.8s, transform 0.6s ease 0.8s, background 0.3s;
}

.fdc-slide__cta:hover {
  background: #C9A010;
  transform: translateY(-2px);
}

.fdc-slide__link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* Animate in when slide is active */
.swiper-slide-active .fdc-slide__subtitle,
.swiper-slide-active .fdc-slide__title,
.swiper-slide-active .fdc-slide__cta {
  opacity: 1;
  transform: translateY(0);
}

/* Navigation */
.fdc-prev,
.fdc-next {
  color: #FAF6EF !important;
  background: rgba(27, 58, 45, 0.4);
  width: 50px !important;
  height: 50px !important;
  border-radius: 0 !important;
  transition: background 0.3s;
}

.fdc-prev:hover,
.fdc-next:hover {
  background: rgba(27, 58, 45, 0.8);
}

.fdc-prev::after,
.fdc-next::after {
  font-size: 1rem !important;
  font-weight: 700;
}

/* Pagination */
.fdc-pagination {
  bottom: 1.5rem !important;
}

.fdc-pagination .swiper-pagination-bullet {
  width: 32px;
  height: 3px;
  border-radius: 0;
  background: rgba(250, 246, 239, 0.4);
  opacity: 1;
  transition: background 0.3s, width 0.3s;
}

.fdc-pagination .swiper-pagination-bullet-active {
  background: #F0C419;
  width: 48px;
}

/* Responsive */
@media (max-width: 768px) {
  .fdc-swiper {
    height: 70vh;
    min-height: 360px;
  }

  .fdc-slide__content {
    padding: 2rem 1.5rem 4rem;
  }

  .fdc-prev, .fdc-next {
    display: none !important;
  }
}
