* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    color: #000000;
}

/* Navigatiebalk */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background-color: #fff;
    position: relative;
    z-index: 1001;
}

.navbar .logo img {
    height: 50px;
}

.nav-links {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.nav-links li {
    margin-left: 0;
}

.nav-links a {
    text-decoration: none;
    color: #000;
    font-size: 18px;
    padding: 10px;
    transition: background 0.3s;
}

.nav-links a:hover {
    background-color: #a2673d;
    color: #fff;
    border-radius: 5px;
}

/* Hamburgerknop styling */
.menu-toggle {
    display: none;
    font-size: 28px;
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 768px) {
    .menu-toggle {
        display: block;
        position: absolute;
        right: 20px;
    }

    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        flex-direction: column;
        background-color: white;
        padding: 20px 0;
        box-shadow: 0 4px 8px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        display: flex;
    }

    .nav-links li {
        margin: 10px 0;
        text-align: center;
    }

    .navbar {
        flex-direction: row;
        align-items: center;
    }

    .menu-toggle {
        margin-left: auto;
    }
}


/* Contactsectie met fullscreen achtergrond */
.contact-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    background: url('contact-background') no-repeat center center/cover;
    position: relative;
    padding: 20px;
}

.contact-form-container {
    background-color: rgba(255, 255, 255, 0.9);
    padding: 40px;
    border-radius: 10px;
    width: 400px;
    max-width: 90%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    text-align: left;
}

.contact-form-container h2 {
    color: #8B4513;
    font-size: 24px;
    margin-bottom: 20px;
    text-align: center;
}

.contact-form-container form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-form-container label {
    color: #333;
    font-weight: bold;
    margin-bottom: 5px;
}

.contact-form-container input,
.contact-form-container textarea {
    padding: 15px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
    width: 100%;
}

.contact-form-container input::placeholder,
.contact-form-container textarea::placeholder {
    color: #999;
}

.contact-form-container button {
    padding: 15px;
    background-color: #6b3000;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 18px;
    cursor: pointer;
    transition: background-color 0.3s, transform 0.2s;
}

.contact-form-container button:hover {
    background-color: #b44d03;
    transform: scale(1.05);
}

/* Footer */
footer {
    background-color: #6c3400;
    color: #fff;
    text-align: center;
    padding: 20px;
    font-size: 16px;
    line-height: 1.6;
}

footer .social-links a {
    color: #ffffff;
    text-decoration: none;
}

footer .social-links a:hover {
    text-decoration: underline;
}

.footer-content {
    color: white;
}

.p0 {
    font-size: 18px;
    color: #ffffff;
    line-height: 1.6;
}
