/* Reset basis styling */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Achtergrond en algemene instellingen */
body {
    font-family: Arial, sans-serif;
    color: #333;
    background-image: url('background.jpg'); 
    background-size: contain;
    background-attachment: fixed;
    background-position: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Navigatiebalk */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.8);
}

.logo {
    font-size: 1.5rem;
    color: #333;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: bold;
}

.nav-links a:hover {
    color: #007bff;
}

/* Hero-sectie */
.hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 4rem 2rem;
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 100%;
}

.cta-button {
    padding: 0.8rem 1.5rem;
    text-align: center;
    background-color: #007bff;
    color: #fff;
    border: none;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    margin-top: 1rem;
}

.cta-button:hover {
    background-color: #0056b3;
}

/* Content secties */
.content-section {
    padding: 2rem;
    text-align: center;
    max-width: 800px;
    background: rgba(255, 255, 255, 0.9);
    margin: 2rem auto;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

/* Footer */

.footer {
    padding: 1rem 2rem;
    text-align: center;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    bottom: 0;
    position: fixed;
}

footer p, footer a {
    color: #333;
}

/* Responsieve styling */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
    }
    .hero {
        padding: 2rem;
    }
    .content-section {
        padding: 1.5rem;
        margin: 1rem auto;
    }
}
