/* Algemene stijl */
body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background: #f8f9fa;
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between; /* Zorgt ervoor dat de footer altijd onderaan komt */
    min-height: 100vh; /* Zorgt ervoor dat de body altijd minimaal het volledige scherm in beslag neemt */
}

/* Navigatie */
header {
    display: flex;
    justify-content: center; /* Centraal uitlijnen van de navigatiebalk */
    align-items: center;
    background: #0D5003;
    padding: 15px 30px;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 100;
}

.logo img {
    max-width: 80px;
    margin-right: 20px; /* Voeg wat ruimte toe tussen logo en navigatie */
}

nav {
    display: flex;
    align-items: center;
    justify-content: center; /* Centraal uitlijnen van de navigatielinks */
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 20px;
}

.nav-links li {
    display: inline;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    padding: 10px;
    transition: 0.3s;
}

.nav-links a:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 5px;
}

/* Hamburger-menu */
.hamburger {
    display: none;
    font-size: 26px;
    color: white;
    cursor: pointer;
}

/* Hero Sectie */
.hero {
    background: url('6.jpg') no-repeat center center/cover;
    color: white;
    text-align: center;
    padding: 150px 20px;
    width: 100%; /* Zorgt ervoor dat de sectie het volledige scherm in beslag neemt */
}

.hero-content {
    max-width: 700px;
    margin: auto;
}

.hero h1 {
    font-size: 36px;
    margin-bottom: 10px;
}

.hero p {
    font-size: 18px;
}

.btn {
    display: inline-block;
    background: #FFD700;
    color: #333;
    padding: 10px 20px;
    border-radius: 5px;
    font-weight: bold;
    margin-top: 10px;
    text-decoration: none;
}

.btn:hover {
    background: #FFC107;
}

/* Diensten Sectie */
.container {
    width: 100%;
    max-width: 1200px; /* Beperk de breedte voor grotere schermen */
    margin: auto;
    padding: 20px;
}

/* Fotogalerij */
.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 15px;
}

.gallery img {
    width: 100%;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.2);
}

.gallery img:hover {
    transform: scale(1.05);
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    justify-content: center;
    align-items: center;
}

.modal img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 10px;
}

.modal.active {
    display: flex;
}

/* Footer */
footer {
    width: 100%;
    background: #222;
    color: white;
    padding: 20px 0;
    text-align: center;
    position: relative;
    bottom: 0;
}

/* Responsiviteit */
@media (max-width: 768px) {
    .nav-links {
        display: none;
        flex-direction: column;
        background: #0D5003;
        position: absolute;
        right: 0;
        top: 60px;
        width: 200px;
        padding: 10px;
    }
    .nav-links.show {
        display: flex;
    }
    .hamburger {
        display: block;
    }
/* Video container voor YouTube-video's */
.video-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 40px;
}

.video iframe {
    width: 100%;
    max-width: 560px;
    height: 315px;
    border-radius: 10px;
}
/* Algemene stijlen voor de dienstenpagina */
.diensten {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

/* Diensten sectie */
.diensten {
    max-width: 1200px;
    margin: 50px auto;
    padding: 0 20px;
    text-align: center;
}

.dienst {
    margin-bottom: 40px;
}

.dienst h3 {
    font-size: 24px;
    color: #333;
    margin-bottom: 10px;
}

.dienst p {
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 20px;
}

.dienst-afbeeldingen {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.dienst-afbeeldingen img {
    max-width: 45%;
    height: auto;
    border-radius: 10px;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
}
.contact-form {
    background-color: #ffffff;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    max-width: 700px;
    margin: 3rem auto;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-form label {
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: #222;
}

.contact-form input,
.contact-form textarea {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    padding: 1rem;
    border: 1px solid #ccc;
    border-radius: 10px;
    width: 100%;
    box-sizing: border-box;
    transition: all 0.3s ease;
    background-color: #f9f9f9;
}

.contact-form input:focus,
.contact-form textarea:focus {
    border-color: #0078d4;
    box-shadow: 0 0 0 4px rgba(0, 120, 212, 0.15);
    outline: none;
    background-color: #fff;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input[type="file"] {
    padding: 0.75rem;
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #ccc;
    font-size: 1rem;
}

.contact-form button {
    background-color: #0078d4;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1rem 2rem;
    border: none;
    border-radius: 10px;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.contact-form button:hover {
    background-color: #005ea3;
    transform: translateY(-2px);
}
.login-button a {
    background-color: #0078d4;
    color: white;
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease, transform 0.2s ease;
    margin-left: 1rem;
    display: inline-block;
}

.login-button a:hover {
    background-color: #005ea3;
    transform: translateY(-2px);
}



}
