/* Hero Swiper Custom Styles */

/* 1. Hero inner container */
.hero__inner {
    position: relative !important;
    overflow: hidden !important;
}

/* 2. Remove legacy hero__inner::before pseudo-element overlay */
.hero__inner::before {
    display: none !important;
    content: none !important;
}

/* 3. Hero Swiper Main Container */
.hero-swiper {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    z-index: 1 !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Hide legacy loading pseudo-element */
.hero-swiper::before {
    display: none !important;
    content: none !important;
}

/* 4. Swiper Wrapper & Slides - Native Swiper 100% Height */
.hero-swiper .swiper-wrapper {
    width: 100% !important;
    height: 100% !important;
}

.hero-swiper .swiper-slide {
    width: 100% !important;
    height: 100% !important;
    background-size: cover !important;
    background-position: center center !important;
    background-repeat: no-repeat !important;
    -webkit-background-size: cover !important;
    -moz-background-size: cover !important;
    -o-background-size: cover !important;
}

/* 5. Hero Dark Overlay Layer - Covers 100% of hero__inner */
.hero-overlay {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    width: 100% !important;
    height: 100% !important;
    background: rgba(0, 0, 0, 0.45) !important;
    z-index: 2 !important;
    pointer-events: none !important;
}

/* 6. Text content Z-Index */
.hero__inner > div:not(.hero-swiper):not(.hero-overlay) {
    position: relative !important;
    z-index: 3 !important;
}

/* Fix "bekijk meer" link position - keep absolute bottom center */
.hero__inner .hero__more {
    position: absolute !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    margin-left: auto !important;
    margin-right: auto !important;
    z-index: 3 !important;
}

/* 7. Pagination Dots Positioning */
.hero-swiper-pagination {
    position: absolute !important;
    bottom: 15px !important;
    left: 0 !important;
    right: 0 !important;
    width: 100% !important;
    text-align: center !important;
    z-index: 4 !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
    background: #ffffff !important;
    opacity: 0.5 !important;
    margin: 0 6px !important;
    transition: all 0.3s ease !important;
    border-radius: 50% !important;
    display: inline-block !important;
    cursor: pointer !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    opacity: 1 !important;
    width: 26px !important;
    border-radius: 10px !important;
    background: #B59549 !important;
}
