/* Swiper style for hero carousel */
.hero-carousel-container {
    /*max-width: 600px;*/
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 0px;
    box-shadow: 0 4px 20px #0000001a;
}

.hero-swiper-container {
    width: 100%;
    height: 70vh;
}


.hero-swiper-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: left;
    z-index: 10;
}

/* Swiper style for default carousel */
.carousel-container {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}


swiper-container {
    width: 100%;
    height: 600px;
}

swiper-slide {
    position: relative;
}

swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    object-position: center 20%;
}

swiper-container::part(button-prev),
swiper-container::part(button-next) {
    background: rgba(255,255,255,0.8);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    color: #333;
}

swiper-container::part(button-prev):hover,
swiper-container::part(button-next):hover {
    background: white;
}

swiper-container::part(bullet) {
    background: #ddd;
    opacity: 1;
}

swiper-container::part(bullet-active) {
    background: #333;
}

@media (max-width: 600px) {
    swiper-container {
        height: 400px;
    }
}

.swiper-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent);
    color: white;
    padding: 2rem 1rem 1rem;
    text-align: left;
    z-index: 10;
}

.swiper-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 0.1rem;
    font-weight: bold;
}

.swiper-caption p {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 1rem;
}

