/* Basisreset om consistente basisstijl te garanderen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    line-height: 1.6;
}

nav {
    position: fixed;
    width: 100%;
    background: #333;
    padding: 15px 0;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    display: flex;
    justify-content: center;
}

nav a {
    color: white;
    text-decoration: none;
    margin: 0 15px;
    font-size: 18px;
    padding: 10px 15px;
    transition: background-color 0.3s, color 0.3s;
    border-radius: 4px;
}

nav a:hover {
    background-color: hsl(0, 0%, 100%);
    color: #151617;
}

section {
    padding: 20px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}




#home {
    background: #ffffff;
}

#projecten {
    background: #e6e5e5;
}

#werkervaring {
    background: #cecece;
}

#contact {
    background: #b8b7b7;
}

h1 {
    font-size: 2.5em;
    margin-bottom: 20px;
    color: #333;
}

p {
    font-size: 1.2em;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

html {
    scroll-behavior: smooth;
}

.projects-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.project-card {
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    padding: 20px;
    width: 300px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.project-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.project-card h2 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
}

.project-card p {
    font-size: 1em;
    color: #666;
    line-height: 1.4;
}



/* Mobielvriendelijke aanpassingen */
/* @media (max-width: 768px) {
    nav {
        flex-direction: column;
        padding: 10px 0;
    }

    nav a {
        display: block;
        margin: 10px 0;
    }

    section {
        padding: 60px 20px;
    }

    h1 {
        font-size: 2em;
    }

    p {
        font-size: 1em;
    }
} */




.projects-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    margin-top: 20px;
}

.project-card {
    background: white;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    width: 200px;
    text-align: center;
    cursor: pointer;
}

.project-image {
    width: 100%;
    height: auto;
    border-radius: 5px;
}

