/* slider.css */

/* Slider container and slides */
.swiper,
.swiper-slide {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    position: relative;
}

.swiper-slide img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}


/* Caption overlay */
.slide-caption {
    position: absolute;
    bottom: 15%;
    left: 5%;
    color: white;
    text-shadow: 0 0 8px rgba(0, 0, 0, 0.7);
    z-index: 10;
    max-width: 40%;
}

.slide-caption h2 {
    margin: 0;
    font-size: 1.8rem;
}

.slide-caption a.btn {
    margin-top: 10px;
    display: inline-block;
    background: rgba(255, 255, 255, 0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s ease;
}

.slide-caption a.btn:hover {
    background: rgba(255, 255, 255, 0.6);
    color: black;
}

.swiper-pagination-bullet {
  width: 14px;           /* default is 8px */
  height: 14px;
  background: #007bff;   /* optional: your theme color */
  opacity: 1;
  margin: 0 6px;
}

.swiper-pagination-bullet-active {
  background: #3b8ce4;   /* optional: active bullet color */
  transform: scale(1.2); /* optional: scale up active bullet */
}


.texture-bg {
  background-color: #d0e4f3;
  background-image: url('/storage/asfalt-dark.png');
  background-repeat: repeat;
  background-size: auto;
}

.custom-swiper {
  /* max-width: 900px; */
  max-height: 600px;
  margin: 0 auto;
}