/* Algemene Styl */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #ffffff;
    overflow-x: hidden;
}

/* Navigasie */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #222;
    padding: 15px 30px;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

.logo-img {
    height: 40px;
    width: auto;
    filter: drop-shadow(2px 2px 4px rgba(0, 0, 0, 0.5));
}

/* Hamburger-menu */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    margin-left: auto;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    border-radius: 2px;
}

/* Navigasie items */
nav {
    margin-left: auto;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 20px;
    transition: max-height 0.3s ease;
}

nav a {
    color: white;
    text-decoration: none;
    padding: 8px 12px;
    border-radius: 5px;
    transition: background 0.3s;
}

nav a:hover {
    background-color: #333;
}

/* Hero Seksie */
.hero {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 90vh;
    background: url('project1.jpg') no-repeat center center/cover;
    text-align: center;
    padding: 20px;
    margin-top: 70px;
}

.hero-content {
    background-color: rgba(0, 0, 0, 0.6);
    padding: 40px;
    border-radius: 10px;
}

.hero h1 {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 25px;
}

/* Knoppies */
.btn {
    background-color: #1e90ff;
    color: white;
    padding: 12px 24px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background 0.3s;
}

.btn:hover {
    background-color: #0073e6;
}

/* Dienste Seksie */
.dienste {
    padding: 80px 20px;
    background-color: #1a1a1a;
    text-align: center;
}

.dienste-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
    margin-top: 40px;
}

.diens {
    background: white;
    color: #222;
    padding: 20px;
    border-radius: 10px;
    width: 100%;
    max-width: 350px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.diens:hover {
    transform: scale(1.05);
}

.diens img {
    width: 100%;
    border-radius: 10px;
    margin-bottom: 15px;
}

/* About Seksie */
.about {
    background-color: #1a1a1a;
    padding: 80px 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
}

.about-image, .about-content {
    flex: 1 1 300px;
    max-width: 500px;
}

.about-image img {
    width: 100%;
    border-radius: 15px;
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);
}

.about-content h1 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-content p {
    font-size: 1.1rem;
    color: #ccc;
    margin-bottom: 15px;
}

/* Kontak Seksie */
.contact {
    background-color: #f5f5f5;
    color: #333;
    padding: 80px 20px;
    text-align: center;
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    justify-content: center;
    margin-top: 30px;
}

.contact-form, .contact-info {
    flex: 1 1 300px;
    max-width: 500px;
    background: white;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-form input, .contact-form textarea {
    width: 100%;
    margin: 10px 0;
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.contact-form button {
    background-color: #1e90ff;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
}

.contact-form button:hover {
    background-color: #0073e6;
}

/* Footer */
footer {
    background-color: #222;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 0.9rem;
}

/* Responsiewe Uitleg */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }

    header {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 15px 20px;
    }

    nav {
        width: 100%;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        width: 100%;
        background-color: #222;
        max-height: 0;
        overflow: hidden;
        padding-left: 20px;
    }

    nav ul.active {
        max-height: 300px;
        padding-top: 10px;
        padding-bottom: 10px;
    }

    nav ul li {
        width: 100%;
        padding: 10px 0;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .hero p {
        font-size: 1rem;
    }

    .dienste-container,
    .about,
    .contact-container {
        flex-direction: column;
        gap: 20px;
    }
}
