/* Hero slider container */
.hero-swiper {
    position: relative;
    width: 100%;
    overflow: hidden;
}

/* Elke slide met achtergrond */
.swiper-slide {
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 600px;
    position: relative;


    /* Fallback CSS variables */
    --button-primary-bg: #ffc400;
    --button-primary-hover-bg: #e0ac00;
    --button-primary-padding: 12px 24px;
    --button-primary-text: #000000;
    --button-primary-border: transparent;

    --button-secondary-bg: #25d366;
    --button-secondary-hover-bg: #1ea851;
    --button-secondary-padding: 12px 24px;
    --button-secondary-text: #ffffff;
    --button-secondary-border: transparent
}

/* Donkere overlay voor leesbaarheid */
.swiper-slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    z-index: 1;
}

/* Content container boven de overlay */
.hero-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 1200px;
    color: white;
}

/* Titels */
.hero-slide-content h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-slide-content h2 {
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.hero-slide-content p {
    font-size: 16px;
    margin-bottom: 30px;
    width: 50%;
}

/* Knoppen */
.buttons {
    display: flex;
    gap: 24px   ;
}

.button-yellow {
    background-color: var(--button-primary-bg, #ffc400);
    color: black;
    padding: var(--button-primary-padding, 12px 24px);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button-yellow:hover {
    background-color: var(--button-primary-hover-bg, #e0ac00);
}

.button-green {
    background-color: var(--button-secondary-bg, #25d366);
    color: white;
    padding: var(--button-secondary-padding, 12px 24px);
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s;
}

.button-green:hover {
    background-color: var(--button-secondary-hover-bg, #1ea851);
}

/* Swiper pagination (bolletjes) */
.swiper-pagination {
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 5;
}

.swiper-pagination-bullet {
    background-color: #fff;
    opacity: 0.5;
    transition: opacity 0.3s;
    width: 14px;
    height: 14px;
}

.swiper-pagination-bullet-active {
    background-color: #D80000;
    opacity: 1;
}

.swiper-button-prev,
.swiper-button-next {
    color: #fff;
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 16px;
}


.swiper-button-prev {
    left: 0;
}

.swiper-button-next {
    right: 0;
}

.button-yellow, .button-green {
    color: white;
    gap: 14px;
    padding: 12px 24px;
    border-radius: 14px;
    font-weight: bold;
    text-decoration: none;
    display: flex;
    transition: background-color 0.3s ease;
    align-items: center;
}


@media (max-width: 1024px) {
    .hero-slide-content p {
        width: 100%;
    }
}

