/* Algemene Stijlen */
body {
    font-family: 'Poppins', sans-serif;
    background-color: #f9f9f9;
    margin: 0;
    padding: 0;
    color: #333;
    background-image: url('/images/tekstballonnen.png');
}

/* Header */
header {
    padding: 20px;
    text-align: center;
    color: white;
    transition: background-color 0.5s ease;
}
/* Zorgt dat vinkjes en tekst netjes naast elkaar staan */
/* Container voor vinkje + tekst naast elkaar */
.checkbox-container {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Forceer het vinkje om klein en links te blijven */
.checkbox-container input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 12px 0 0 !important;
    /* Ruimte tussen vinkje en tekst */
    flex-shrink: 0;
    /* Voorkomt platdrukken */
    cursor: pointer;
}

/* Zorg dat de label tekst niet verspringt */
./* Container voor vinkje + tekst naast elkaar */
.checkbox-container {
    display: flex !important;
    align-items: center !important;
    margin-bottom: 10px;
    cursor: pointer;
}

/* Forceer het vinkje om klein en links te blijven */
.checkbox-container input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    margin: 0 12px 0 0 !important; /* Ruimte tussen vinkje en tekst */
    flex-shrink: 0; /* Voorkomt platdrukken */
    cursor: pointer;
}

/* Zorg dat de label tekst niet verspringt */
.checkbox-container label {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    font-weight: normal;
    cursor: pointer;
    line-height: 1; /* Voor perfecte verticale uitlijning */
}

/* Het kader om de eerste set opties */
#volunteer-options {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}checkbox-container label {
    margin: 0 !important;
    padding: 0 !important;
    display: inline-block !important;
    font-weight: normal;
    cursor: pointer;
    line-height: 1;
    /* Voor perfecte verticale uitlijning */
}

/* Het kader om de eerste set opties */
#volunteer-options {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 12px;
    border: 1px solid #e0e0e0;
    margin-bottom: 20px;
}

header img {
    max-width: 150px;
}

/* Secties */
section {
    padding: 40px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-width: 900px;
}

/* Countdown container */
#countdown-container {
    text-align: center; 
    padding: 15px; 
    background: #f9f9f9; 
    border-radius: 10px; 
    border: 2px dashed #ccc;
}

#timer {
    font-size: 1.5rem; 
    font-weight: bold; 
    color: #009A17;
}

/* Titels en tekst */
h1, h2 { color: #333333; }
h3 { font-size: 18px; } /* Aangepast van 8px voor leesbaarheid */

p, ul, li {
    color: #555555;
    line-height: 1.6;
}

/* Knoppen */
button {
    background-color: #4da6ff;
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    font-size: 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

button:hover { background-color: #005bb5; }

/* Links */
a {
    color: #ff69b4;
    text-decoration: none;
    font-weight: bold;
}


a:hover { text-decoration: underline; }

html {
  scroll-behavior: smooth;
}
/* Footer */
footer {
    background-color: #4da6ff;
    color: #ffffff;
    text-align: center;
    padding: 20px;
    margin-top: 20px;
}

footer a i {
    color: #008000;
    font-size: 30px;
    margin: 0 10px;
}

/* Formulier */
form {
    max-width: 600px;
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    border: 1px solid #dddddd;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    color: #333333;
}

form input, form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border-radius: 5px;
    border: 1px solid #cccccc;
    box-sizing: border-box;
}

/* Checkboxes Styling */
#group-leader-days, #catering-days {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 10px 0;
}

#group-leader-days div, #catering-days div {
    display: flex;
    align-items: center;
    gap: 12px;
}

input[type="checkbox"] {
    appearance: none;
    width: 22px;
    height: 22px;
    border: 2px solid #4da6ff;
    border-radius: 5px;
    cursor: pointer;
    position: relative;
}

input[type="checkbox"]:checked {
    background-color: #4da6ff;
}

input[type="checkbox"]:checked::after {
    content: '\2713';
    color: white;
    position: absolute;
    left: 4px;
    top: -2px;
}

input[type="checkbox"]:disabled + label {
    color: #ccc;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* Navigatie */
nav {
    background-color: #f9f9f9;
    padding: 10px 0;
    text-align: center;
    border-radius: 10px;
}

nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
    padding: 10px;
}

.menu-toggle .bar {
    display: block;
    width: 30px; height: 3px;
    margin: 5px auto;
    background-color: #333;
}

/* Mobiel Menu */
@media (max-width: 768px) {
    .menu-toggle { display: block; }
    nav ul {
        display: none;
        flex-direction: column;
        width: 100%;
        position: absolute;
        top: 60px; left: 0;
        background: #f9f9f9;
        padding: 20px 0;
        z-index: 1000;
    }
    nav.active ul { display: flex; }
}

/* Back to Top Knop */
#backToTop {
    display: none; /* Wordt 'flex' via JS */
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 999;
    width: 50px;
    height: 50px;
    background-color: #009A17;
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
    
    /* Centrering pijltje */
    align-items: center;
    justify-content: center;
    padding: 0;
}

#backToTop:hover {
    background-color: #4da6ff;
    transform: scale(1.1);
}

/* Carousel & Thumbnails */
.carousel-thumbnails { --slide-aspect-ratio: 3 / 2; }
.thumbnails { display: flex; justify-content: center; margin-top: 10px; }
.scroller { display: flex; gap: 10px; overflow-x: auto; scrollbar-width: none; }
.image { width: 64px; height: 64px; object-fit: cover; opacity: 0.4; cursor: pointer; transition: 0.3s; }
.image.active { opacity: 1; border: 2px solid #4da6ff; }