/* Stijl voor de hele pagina */
body, html {
    height: 100%;
    width: 100%;
    margin: 0;
    padding: 0;
}

body {
    background-image: url('achtergrond.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    background-attachment: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    font-family: 'Roboto', Arial, sans-serif;
    position: relative;
}

/* Preloader */
#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #000000;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(255, 255, 255, 0.3);
    border-top: 5px solid #FFFFFF;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(3px);
    z-index: 1;
}

/* Notification bar */
.notification-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background-color: #FFA500;
    color: #000000;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    z-index: 999;
    font-weight: 500;
}

.notification-bar i {
    font-size: 20px;
}

/* Container voor de content (logo en iconen) */
.container {
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 600px;
    position: relative;
    z-index: 2;
}

/* Stijl voor het SVG-logo */
.logo {
    max-width: 240px; 
    width: 100%; 
    height: auto;
    margin-bottom: 30px; 
    color: #FFFFFF;
    display: block;
}

.logo-sectie {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
    margin-bottom: 25px;
}

.tekst-sectie {
    text-align: center;
    color: #FFFFFF;
    max-width: 75%;
    margin: 0 auto;
}

.naam {
    font-size: 32px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.ondertitel {
    font-size: 18px;
    font-weight: 400;
    margin: 0;
}

.st0 {
    fill: currentColor;
}

/* Sectie voor de iconen */
.iconen-sectie {
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 30px;
    width: 100%;
}

/* Stijl voor de icoon links */
.icoon-link {
    text-decoration: none;
    color: #FFFFFF;
    font-size: 28px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}

/* Effect wanneer je met de muis over een icoon gaat */
.icoon-link:hover {
    transform: scale(1.1);
}

/* Mobile responsiveness */
@media (max-width: 768px) {
    .container {
        padding: 15px;
        max-width: 90%;
    }
    
    .logo {
        max-width: 180px;
        margin-bottom: 20px;
    }
    
    .naam {
        font-size: 26px;
        margin: 0 0 6px 0;
    }
    
    .ondertitel {
        font-size: 15px;
    }
    
    .logo-sectie {
        margin-bottom: 20px;
    }
    
    .iconen-sectie {
        gap: 25px;
    }
    
    .icoon-link {
        font-size: 24px;
    }
    
    .notification-bar {
        font-size: 14px;
        padding: 10px 15px;
    }
    
    .notification-bar i {
        font-size: 18px;
    }
    
    body {
        background-attachment: scroll;
    }
}