@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

/* Algemene instellingen */
html, body {
    scroll-behavior: smooth;
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Poppins', sans-serif;
    background-color: #000000;
    color: #333;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
header {
    background-color: #000000;
    color: white;
    padding: 20px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

header img {
    max-height: 120px;
}

/* Navigatie */
nav.menu a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    margin-left: 20px;
    transition: color 0.3s, transform 0.2s;
}

nav.menu a:hover {
    color: #ffd700;
    transform: scale(1.05);
}

/* Main content */
main {
    max-width: 1000px;
    margin: 40px auto;
    padding: 30px;
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-radius: 12px;
    flex: 1;
    animation: fadeIn 0.6s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Titels */
h1, h2 {
    color: #0d1b2a;
}

/* Knoppen */
.button {
    display: inline-block;
    padding: 12px 24px;
    background-color: #ffd700;
    color: #0d1b2a;
    text-decoration: none;
    font-weight: 600;
    border-radius: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s, transform 0.2s;
}

.button:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
    box-shadow: 0 0 15px #ffd700;
}

/* Footer */
footer {
    width: 100%;
    background-color: #000000;
    color: white;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.9em;
    border-top: 2px solid #ffd700;
}

/* Mobiele menu */
.menu-toggle {
    display: none;
    font-size: 30px;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
}

@media (max-width: 600px) {
    .menu-toggle {
        display: block;
    }

    nav.menu {
        display: none;
        flex-direction: column;
        width: 100%;
        margin-top: 10px;
    }

    nav.menu.show {
        display: flex;
    }

    nav.menu a {
        text-align: center;
        padding: 14px 0;
        border-top: 1px solid #ffffff33;
        width: 100%;
        margin: 0;
    }
}

/* Diensten */
.service-card {
    display: flex;
    align-items: center;
    background-color: #fff;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    margin: 40px auto;
    max-width: 900px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    animation: slideInUp 0.6s ease forwards;
    gap: 20px;
    padding: 20px;
    flex-wrap: wrap;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.3);
}

.service-card img {
    width: 250px;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.service-card .text {
    flex: 1;
    min-width: 240px;
    padding: 10px;
}

@media (max-width: 768px) {
    .service-card {
        flex-direction: column;
        text-align: center;
    }

    .service-card .text {
        text-align: left;
    }

    .service-card img {
        max-width: 100%;
    }
}

/* Over mij */
.about-block {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.about-image {
    max-width: 300px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.about-text {
    flex: 1;
    min-width: 250px;
}

/* Contactpagina */
.contact-wrapper {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.contact-image {
    width: 100%;
    max-width: 250px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
    min-width: 250px;
}