/* Swiper navigation and pagination */
.swiper-button-next,
.swiper-button-prev {
  color: white;
}

.swiper-pagination-bullet-active {
  background: white;
}

/* --- Desktop / Larger screens (601px and up) --- */
@media screen and (min-width: 601px) {
  .bottom-left {
    position: absolute;
    bottom: 3rem;               /* lift up a bit from the edge */
    left: 50%;                  /* center horizontally */
    transform: translateX(-50%);
    color: white;
    font-size: 3.5em;
    font-weight: bold;
    text-align: center;         /* center text alignment */
    padding: 0.6em 1em;
    border-radius: 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35));
    backdrop-filter: blur(2px);
    max-width: 90%;
  }
}

/* --- Mobile / Smaller screens (600px and below) --- */
@media screen and (max-width: 600px) {
  .bottom-left {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5em;
    font-weight: bold;
    text-align: center;
    padding: 0.8em 1em;
    border-radius: 0.75rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.65), rgba(0, 0, 0, 0.35));
    backdrop-filter: blur(2px);
    max-width: 90%;
  }
}

/* Optional: keep links visible and readable */
.bottom-left a {
  color: #fff;
  text-decoration: underline;
}

/* Ensure the page can fill the viewport */
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
}

/* Swiper must have an explicit height */
.swiper {
  width: 100%;
  height: 100vh;   /* full viewport; use 100% if you want it to be parent-driven */
  overflow: hidden;
}

/* Slides and images fill the space */
.swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;    /* so letterbox edges are black */
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;    /* cover the slide nicely */
}
