/* BASIS */
/* ------------------------------ */

body {
    margin: 0;
    font-family: "Trebuchet MS";
    background-color: #009900;
}

/* ------------------------------ */
/* HEADER */
/* ------------------------------ */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #e3f473;
    color: white;
    padding: 0;
    text-align: center;
    z-index: 1000;
    height: 120px;
}

header .logo-links {
    position: absolute;
    left: 35px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    max-height: 125px;
}

header .logo-rechts {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    height: auto;
    max-height: 110px;
}

/* ------------------------------ */
/* DROPDOWN MENU */
/* ------------------------------ */

nav.dropdown {
    position: fixed;
    top: 120px;
    left: 0;
    width: 100%;
    background: #930609;
    z-index: 999;
}

nav.dropdown a.active {
    background-color: #009900;
    color: white;
}

nav.dropdown ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: block;
    text-align: center;
}

nav.dropdown ul li {
    position: relative;
}

nav.dropdown a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: white;
    font-size: 18px;
}

nav.dropdown ul li ul {
    display: none;
    position: absolute;
    background: #930609;
    padding: 0;
    margin: 0;
    list-style: none;
    top: 100%;
    left: 0;
    width: 150px;
}

nav.dropdown ul li ul li a {
    padding: 10px;
    font-size: 16px;
    color: white;
}

nav.dropdown a:hover,
nav.dropdown ul li ul li a:hover {
    background: #009900;
    color: white;
}

nav.dropdown ul li:hover ul {
    display: block;
}

@media screen and (min-width: 900px) {
    nav.dropdown ul {
        display: flex;
        justify-content: center;
        gap: 30px;
    }
}

/* ------------------------------ */
/* ZIJBALK */
/* ------------------------------ */

.sidebar {
    position: fixed;
    top: 160px; /* AANPASSING zodat witte strook verdwijnt */
    left: 0;
    width: 200px;
    min-height: 800px;
    background: #e3f473;
    padding: 15px;
    border-right: 1px solid #ccc;
}

.sidefoto {
    width: 100%;
    max-width: 180px;
    display: block;
    margin: 12px auto;
    border-radius: 8px;
}

/* ------------------------------ */
/* MAIN CONTENT */
/* ------------------------------ */

main img {
    margin-right: 15px;
    margin-bottom: 10px;
}

main {
    padding-top: 250px;      /* genoeg ruimte onder header + menu */
    padding-left: 25px;
    padding-right: 1px;
    padding-bottom: 30px;

    margin-left: 260px;      /* ruimte voor sidebar */
    max-width: 75%;        /* breedte van content */
    color: white;
    font-size: 24px;
}



/* ------------------------------ */
/* HAMBURGER */
/* ------------------------------ */

.hamburger {
    display: none;
    font-size: 32px;
    color: #930609;
    position: fixed;
    top: 130px;
    right: 20px;
    z-index: 2000;
    cursor: pointer;
}

/* ------------------------------ */
/* TOPKNOP */
/* ------------------------------ */

#topknop {
    position: fixed;
    bottom: 25px;
    right: 25px;
    background: #930609;
    color: white;
    padding: 12px 16px;
    border-radius: 50%;
    font-size: 22px;
    cursor: pointer;
    display: none;
    z-index: 3000;
}

/* ------------------------------ */
/* RESPONSIVE 900PX */
/* ------------------------------ */

@media (max-width: 900px) {

    .hamburger {
        display: block;
    }

    nav.dropdown {
        display: none;
        flex-direction: column;
        background: #930609;
        width: 100%;
    }

    nav.dropdown.open {
        display: block;
    }

    nav.dropdown ul {
        flex-direction: column;
        gap: 0;
    }

    nav.dropdown ul li a {
        padding: 15px;
        border-bottom: 1px solid #666;
    }

    nav.dropdown ul li ul {
        position: static;
        background: #930609;
        display: none;
    }

    nav.dropdown ul li.open ul {
        display: block;
    }

    .sidebar {
        position: static;
        width: 100%;
        height: auto;
        border-right: none;
        border-bottom: 1px solid #ccc;
        margin-top: 110px;
        text-align: center;
    }

    main {
        margin-left: 0;
        padding: 200px 20px 20px;
        color: white;
        width: 100%;
    }
}

/* ------------------------------ */
/* RESPONSIVE 600PX */
/* ------------------------------ */

@media (max-width: 600px) {

    header {
        padding: 10px;
        font-size: 18px;
    }

    nav.dropdown a {
        padding: 14px;
        font-size: 16px;
    }

    .sidebar {
        text-align: center;
    }
}

/* ------------------------------ */
/* FOTO ZOOM EFFECT */
/* ------------------------------ */

main img:hover {
    transform: scale(1.8);
    transition: transform 0.3s ease;
    z-index: 999;
}

/* ------------------------------ */
/* CONTACT TITELBANNER */
/* ------------------------------ */

.contact-banner {
    background: #930609;
    color: #fff;
    padding: 18px;
    text-align: center;
    font-size: 26px;
    font-weight: bold;
    border-radius: 10px;
    margin-bottom: 25px;
    box-shadow: 0 0 10px rgba(0,0,0,0.25);

    width: 100%;        /* volledige breedte van main */
    display: block;
}


/* ------------------------------ */
/* CONTACTFORMULIER STYLING */
/* ------------------------------ */

.contact-form {
    background: #e3f473;
    padding: 25px;
    border-radius: 10px;
    width: 100%;        /* volledige breedte van main */
    color: #333;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
}


.contact-form h2 {
    color: #930609;
    margin-top: 0;
    text-align: center;
    font-size: 28px;
}

.contact-form label {
    display: block;
    margin-top: 15px;
    font-weight: bold;
    color: #333;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
    width: 100%;
    padding: 12px;
    margin-top: 5px;
    border: 2px solid #930609;
    border-radius: 6px;
    font-size: 16px;
    box-sizing: border-box;
    background: #fff;
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
    border-color: #009900;
    outline: none;
}

.contact-form input[type="submit"],
.contact-form input[type="reset"] {
    background: #009900;
    color: white;
    border: none;
    padding: 12px 20px;
    margin-top: 20px;
    margin-right: 10px;
    border-radius: 6px;
    font-size: 18px;
    cursor: pointer;
}

.contact-form input[type="submit"]:hover,
.contact-form input[type="reset"]:hover {
    background: #930609;
}
