/* Basisstijlen */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #000000;
    color: white;
    line-height: 1.6;
    padding-bottom: 150px; /* Ruimte onder de inhoud voor de fixed player */
}

a {
    color: #FFD700; /* Geel als accentkleur */
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

header, footer {
    background-color: #000000;
    padding: 1rem;
    border-bottom: 2px solid #FFD700;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 150px; /* Verhoogde hoogte voor logo */
}

header {
    position: relative;
    background-image: url('P1050356-scaled.jpg'); /* Nieuwe achtergrond afbeelding */
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center; /* Zorg dat de afbeelding centraal staat */
}

/* Achtergrond met sterke blur en zwarte/yellow toon */
header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 215, 0, 0.4); /* Donkergeel met lage transparantie */
    filter: blur(30px) brightness(80%) saturate(200%); /* ✅ Verhoogde blurring */
}

header .logo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    position: relative; /* Zorg dat het logo boven de filter ligt */
    z-index: 1; /* Logo blijft ongemoeid met de filter */
}

nav {
    display: flex;
    justify-content: space-around;
    background-color: #111;
    padding: 1rem;
    position: sticky;
    top: 0;
    z-index: 1000;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.player-container {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #111;
    padding: 1rem;
    border-top: 2px solid #FFD700;
    z-index: 1001;
}

iframe {
    width: 100%;
    height: 150px; /* Overgenomen standaard */
    border: none;
    overflow: hidden; /* ⚠️ Scrollbars verbergen */
}

.large-iframe {
    height: 400px; /* Verhoogde hoogte voor groter beeld */
    overflow: hidden; /* ⚠️ Scrollbars verbergen */
}

.content-section {
    padding: 2rem;
    max-width: 1000px;
    margin: auto;
    margin-bottom: 150px; /* Extra ruimte onder de inhoud */
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

th, td {
    padding: 0.75rem;
    text-align: left;
    background-color: #222;
    color: white;
}

th {
    background-color: #333;
}

.accordion {
    border: 2px solid #FFD700;
    margin-bottom: 1rem;
}

.accordion-header {
    padding: 0.5rem;
    cursor: pointer;
    font-weight: bold;
    background-color: #111;
}

.accordion-content {
    display: none;
    padding: 0.5rem;
    background-color: #222;
}

/* Mobiele responsiveheid */
@media (max-width: 768px) {
    nav {
        flex-direction: column;
        align-items: center;
        position: static; /* Verwijder sticky gedrag op mobiel */
    }
}
