/*
Theme Name: CampingVillage Child theme of campingvillage
Theme URI: 
Description: Child theme of campingvillage theme for the CampingVillage theme
Author: <a href="http://www.nicdarkthemes.com">Nicdark</a>
Author URI: 
Template: campingvillage
Version: 2.9
*/

/* Generated by Orbisius Child Theme Creator (https://orbisius.com/products/wordpress-plugins/orbisius-child-theme-creator/) on Wed, 16 Jul 2025 03:45:11 +0000 */ 
/* The plugin now uses the recommended approach for loading the css files.*/

/* Globale resets en full-width fix voor thema-containers */
/* DEZE ZOU NU ECHT NIET MEER NODIG MOETEN ZIJN! Houd uitgecommentarieerd */
/* body > div.nicdark_site.nicdark_bg_white > div.nd_options_container.nd_options_padding_0_15 {
    max-width: none !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
} */

/* Globale HTML/BODY resets (deze zijn veilig en nodig) */
body, html {
    margin: 0 !important;
    padding: 0 !important;
    overflow-x: hidden !important; /* Voorkom horizontale scrollbar door full-width elementen */
    width: 100% !important; /* Zorg dat body/html 100% breed is */
}

/* ----------------------------------------------------- */
/* Verberg paginatitel en gerelateerde witruimte (indien niet opgelost door VC instelling) */
/* Pas deze selectors aan op basis van jouw thema's HTML structuur indien nodig */
.nicdark_site_title_container,
h1.nicdark_title.nicdark_padding_0_15.nicdark_top_20.nicdark_left_0,
.nicdark_section.nicdark_margin_0_0_20_0 { /* Voeg deze toe om eventuele extra marges van de thema sectie te resetten */
    display: none !important;
    margin: 0 !important;
    padding: 0 !important;
    height: 0 !important;
    line-height: 0 !important;
    visibility: hidden !important; /* Voeg visibility hidden toe als display: none niet genoeg is */
}


/* ----------------------------------------------------- */
/* Hero Slider Basis Stijlen */
/* ----------------------------------------------------- */


/* De track die de slides horizontaal beweegt */
.slider-track {
    display: flex;
    height: 100%;
    transition: transform 0.5s ease-in-out;
    will-change: transform;
    width: 100vw; /* Zorg dat de track ook de volledige breedte van de viewport pakt */
}

/* Individuele Slide Stijlen */
.slide {
    min-width: 100vw; /* Elke slide vult de viewport breedte */
    flex-shrink: 0;
    position: relative;
    height: 100%;
    display: none; /* Standaard verborgen, JS toont de actieve */
    align-items: center;
    justify-content: center;
    text-align: center;
}

.slide.active {
    display: flex; /* Toon de actieve slide */
}

/* Afbeelding Stijlen binnen de slide */
.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* Zorgt ervoor dat de afbeelding de hele ruimte vult */
    z-index: 1; /* Achtergrond */
}

/* Overlay Stijlen voor de gradient */
.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.3)
    z-index: 2; /* Boven afbeelding, onder content */
}

/* Slide Content Stijlen */
.slide-content {
    position: relative;
    z-index: 3;
    padding: 20px;
    max-width: 960px; /* Max breedte voor content om leesbaar te blijven */
    margin: 0 auto; /* Centreer content binnen de max-width */
    box-sizing: border-box; /* Zorg dat padding meetelt voor de breedte */
    width: 100%; /* Belangrijk voor afgesneden tekst op smalle schermen */
    text-align: center; /* Centreer de tekst */
}

.slide-content .subtitle {
    font-size: 1.1em;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.8;
	color:#fffff0;
}

.slide-content .main-title {
    font-size: 3.5em; /* Grotere titel */
    margin-bottom: 20px;
    line-height: 1.1;
    font-weight: 700;
	color:#fffff0;
	text-shadow: 1px 1px #000000;
}

.slide-content .description {
    font-size: 1.1em;
    margin-bottom: 30px;
    line-height: 1.6;
	color:#fffff0;
}

.slide-content .button {
    display: inline-block;
    padding: 12px 30px;
    background-color: #beb7a5;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.slide-content .button:hover {
    background-color: #e08e0a;
    transform: translateY(-2px); /* Klein hover-effect */
}

/* ----------------------------------------------------- */
/* Navigatieknoppen (pijlen) */
/* ----------------------------------------------------- */
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 0;
    cursor: pointer;
    font-size: 2.5em;
    z-index: 4;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex; /* Zorgt ervoor dat de pijl zelf gecentreerd is binnen de knop */
    align-items: center;
    justify-content: center;
    transition: background-color 0.3s ease, transform 0.2s ease;
    opacity: 0.7;
}

.nav-button:hover {
    background-color: rgba(0, 0, 0, 0.8);
    opacity: 1;
    transform: translateY(-50%) scale(1.05);
}

.nav-button.prev {
    left: 20px;
}

.nav-button.next {
    right: 20px;
}

/* ----------------------------------------------------- */
/* Paginatie bolletjes */
/* ----------------------------------------------------- */
.pagination {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    display: flex;
    gap: 12px;
}

.dot {
    width: 14px;
    height: 14px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: 2px solid transparent;
    padding: 0;
}

.dot.active {
    background-color: white;
    transform: scale(1.1);
    border-color: #beb7a5;
}

/* ----------------------------------------------------- */
/* Responsiviteit (Mobile-first aanpak) */
/* ----------------------------------------------------- */

/* Aanpassingen voor schermen kleiner dan 768px (meestal tablets in portrait) */
@media (max-width: 768px) {
    .hero-slider {
        height: 500px;
    }

    .slide-content .main-title {
        font-size: 2.5em;
    }

    .slide-content .description {
        font-size: 1em;
        margin-bottom: 20px;
    }

    .slide-content .button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .nav-button {
        width: 50px;
        height: 50px;
        font-size: 2em;
    }

    .nav-button.prev {
        left: 10px;
    }

    .nav-button.next {
        right: 10px;
    }

    .pagination {
        bottom: 15px;
        gap: 10px;
    }

    .dot {
        width: 12px;
        height: 12px;
    }
}

/* Aanpassingen voor schermen kleiner dan 480px (meestal mobiele telefoons) */
@media (max-width: 480px) {
    .hero-slider {
        height: 400px;
    }

    .slide-content {
        padding: 15px;
    }

    .slide-content .subtitle {
        font-size: 0.9em;
        margin-bottom: 5px;
    }

    .slide-content .main-title {
        font-size: 1.8em;
        margin-bottom: 15px;
    }

    .slide-content .description {
        font-size: 0.9em;
        margin-bottom: 15px;
    }

    .slide-content .button {
        padding: 8px 15px;
        font-size: 0.8em;
    }

    .nav-button {
        display: flex !important; /* Zorg dat ze weer zichtbaar zijn op mobiel */
        width: 40px;
        height: 40px;
        font-size: 1.5em;
    }

    .nav-button.prev {
        left: 5px;
    }

    .nav-button.next {
        right: 5px;
    }

    .pagination {
        bottom: 10px;
        gap: 8px;
    }

    .dot {
        width: 10px;
        height: 10px;
    }
}