/* Algemene stijl */
body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #f2ead6;
    color: #000;
}

/* Navigatie */
nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #000;
}

nav .logo {
    color: #fff;
    font-size: 24px;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 20px;
}

nav ul li a {
    color: #ccc;
    text-decoration: none;
    font-size: 18px;
}

nav ul li a.active,
nav ul li a:hover {
    color: #4da3ff;
}

/* Hero sectie */
.hero {
    position: relative;
    text-align: center;
}

.hero img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    opacity: 0.4;
}

.hero-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.hero-text h2 {
    font-size: 40px;
    color: #fff;
}

/* Contactformulier */
.contact {
    padding: 40px;
    max-width: 600px;
    margin: auto;
}

.contact form {
    display: flex;
    flex-direction: column;
}

.contact input,
.contact textarea {
    padding: 10px;
    margin-bottom: 15px;
    background: #222;
    border: 1px solid #444;
    color: #fff;
}

.contact button {
    padding: 12px;
    background: #4da3ff;
    border: none;
    color: #000;
    font-weight: bold;
    cursor: pointer;
}

.contact button:hover {
    background: #80c1ff;
}

/* Over mij */
.about {
    display: flex;
    gap: 30px;
    padding: 40px;
    max-width: 900px;
    margin: auto;
}

.about img {
    width: 250px;
    border-radius: 10px;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #777;
}

/* Responsive */
@media (max-width: 768px) {
    .about {
        flex-direction: column;
        text-align: center;
    }

    .about img {
        margin: auto;
    }

    nav ul {
        flex-direction: column;
        gap: 10px;
    }
}
