/* Swiper customization */
.swiper {
  width: 100%;
  overflow: hidden;
}

.swiper-slide {
  width: 100%;
}

.swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Pagination bullets */
.swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background-color: rgba(255, 255, 255, 0.5);
  opacity: 1;
}

@media (min-width: 768px) {
  .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
  }
}

.swiper-pagination-bullet-active {
  background-color: var(--color-clay);
}

/* Navigation buttons */
.swiper-button-next,
.swiper-button-prev {
  display: none !important;
  color: var(--color-clay);
}

@media (min-width: 768px) {
  .swiper-button-next,
  .swiper-button-prev {
    display: flex !important;
  }
}

/* Carousel slide height */
.carousel-slide {
  height: 300px;
  border-radius: 0.75rem;
  overflow: hidden;
  position: relative;
}

@media (min-width: 640px) {
  .carousel-slide {
    height: 350px;
  }
}

@media (min-width: 768px) {
  .carousel-slide {
    height: 500px;
    border-radius: 1rem;
  }
}

@media (min-width: 1024px) {
  .carousel-slide {
    height: 600px;
  }
}

.carousel-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7), transparent);
  padding: 1rem;
}

@media (min-width: 768px) {
  .carousel-caption {
    padding: 2rem;
  }
}

.carousel-caption-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  color: var(--color-white);
}

@media (min-width: 768px) {
  .carousel-caption-title {
    font-size: 1.875rem;
  }
}

.carousel-caption-text {
  color: var(--color-stone);
  font-size: 0.75rem;
}

@media (min-width: 768px) {
  .carousel-caption-text {
    font-size: 1rem;
  }
}