* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #111;
    color: #f4f4f4;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1100px;
    margin: auto;
    padding: 20px 0;
}

header {
    background: #222;
    padding: 20px 0;
    border-bottom: 3px solid #007BFF ;
    overflow: auto;
}

header h1 {
    color: #007BFF;
    float: left;
}

nav {
    float: right;
}

nav ul {
    list-style: none;
}

nav ul li {
    display: inline;
    margin-left: 20px;
}

nav ul li a {
    color: #f4f4f4;
    text-decoration: none;
}

.hero {
    background: url('images/hero.jpg') no-repeat center center/cover;
    height: 300px; /* eventueel aanpassen */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 20px;
}

.hero h2 {
    font-size: 2rem;
    color: #fff;
}

.hero p {
    font-size: 1.2rem;
    color: #ddd;
}

.diensten {
    background: #1a1a1a;
    padding: 40px 0;
}

.diensten h3, .over-ons h3, .contact h3 {
    color: #007BFF;
    margin-bottom: 20px;
}

.dienst {
    margin-bottom: 20px;
}

.over-ons, .contact {
    padding: 40px 0;
}

footer {
    background: #222;
    text-align: center;
    padding: 20px 0;
    margin-top: 20px;
}
.logo {
    height: 60px; /* Pas dit aan aan je logoformaat */
    vertical-align: middle;
}
header a img.logo {
    float: left;
    margin-right: 20px;
}
.contact-form {
    display: flex;
    flex-direction: column;
    margin-top: 20px;
}

.contact-form label {
    margin-top: 15px;
    margin-bottom: 5px;
}

.contact-form input,
.contact-form textarea {
    padding: 10px;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    background-color: #333;
    color: #f4f4f4;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: 2px solid #007BFF;
}

.contact-form button {
    margin-top: 20px;
    padding: 12px;
    background-color: #007BFF;
    color: #fff;
    font-size: 1rem;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact-form button:hover {
    background-color: #0056b3;
}
.over-ons-flex {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 40px;
}

.over-ons-tekst {
    flex: 1 1 500px;
    color: #f4f4f4;
}

.over-ons-tekst h3 {
    color: #007BFF;
    margin-bottom: 20px;
}

.over-ons-tekst p {
    margin-bottom: 15px;
    line-height: 1.7;
}

.over-ons-foto {
    flex: 1 1 400px;
    text-align: center;
}

.over-ons-foto img {
    width: 100%;
    max-width: 450px;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.over-ons-foto img:hover {
    transform: scale(1.03);
    box-shadow: 0 0 30px rgba(0, 123, 255, 0.3);
}

/* Mobiel optimalisatie */
@media (max-width: 768px) {
    .over-ons-flex {
        flex-direction: column;
        text-align: center;
    }
    .over-ons-foto img {
        max-width: 90%;
    }
}
