/* Algemene reset en basisstijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: #333;
    background-color: #f8f9fa;
    margin: 0;
    padding: 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header en navigatie */
header {
    color: #fff;
    padding: 0; 
    margin: 0; 
    width: 100%;
    z-index: 1000;
    transition: background-color 0.3s ease;
    position: relative;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1100;
    background-color: #aeb58a;
}

.navbar-title {
    font-family: "Caudex", serif;
    font-size: 18px;
    font-weight: 100;
    color: white;
    margin-left: 35px;
}

.logo-img {
    height: 55px;
    width: 60px;
    margin-right: 20px;
}

.nav-links {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
    margin-left: auto;
}

.nav-links li {
    margin-right: 50px;
}

.nav-links li a {
    color: #ffffff;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
    font-family: "Montserrat", sans-serif;
}

.nav-links li a:hover {
    color: #c4c4c4;
}


/* Over mij sectie */
.about-me {
    padding: 50px 0;
    margin-bottom: 100px
}

.about-me-content {
    display: flex;
    justify-content: center;
    align-items: center;
}

.about-me-text {
    flex: 1;
    text-align: left;
    padding: 0 20px;
    margin-top:50px;
}

.about-me h2 {
    font-size: 30px;
    margin-bottom: 20px;
    font-family: "Caudex", serif;
    font-weight: 200;
    color: #85754e;
}

.about-me p {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    font-family: "Montserrat", sans-serif;
    font-weight: 200;
    color: black;
}

.about-me ul {
    list-style-type: none;
    padding: 0;
}

.about-me ul li {
    font-size: 16px;
    margin-bottom: 10px;
    color: black;
}


.about-me-image {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}

.about-me-image img {
    margin-top: 100px;
    max-width: 520px;
    height: 520px;
    transition: transform 0.3s ease;
}

.about-me-image img:hover {
    transform: scale(1.1);
}

/* footer sectie */
.footer {
    background-color: #aeb58a;
    color: #ffffff;
    padding: 50px 50px; 
    height: 500px;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.footer-column {
    flex: 1;
    margin-right: 50px;
}


.footer-column h2 {
    font-size: 24px;
    font-family: "Caudex", serif;
    font-weight: 200;
    margin-bottom: 20px;
}


.footer-column p, .footer-column a, .footer-column label {
    font-size: 16px;
    color: #ffffff;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 30px;
}


.footer-column a:hover {
    text-decoration: underline;
}
.footer-column input[type="email"] {
    width: 100%;
    padding: 10px;
    margin-top: 10px;
    margin-bottom: 20px; 
    background-color: #aeb58a;
    border: 1px solid white;
}
.footer-column input[type="checkbox"] {
    margin-right: 10px;
}
.footer-column input[type="submit"] {
    border: none;
    width: 100%;
    padding: 15px;
    cursor: pointer;
    color: #aeb58a;
    background-color: white;
}
.footer-column input[type="submit"]:hover {
    background-color: #ddd;
}



@media (max-width: 768px) {
    .container {
        width: 90%;
    }

    .navbar {
        padding: 10px;
    }

    .logo-img {
        height: 40px;
    }

    .navbar-title {
        font-size: 16px;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 50px;
        left: 0;
        background-color: #333;
        width: 100%;
        padding: 10px 0;
        text-align: center;
        box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
        z-index: 999;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.3s ease;
    }

    .nav-links.active {
        opacity: 1;
        pointer-events: auto;
    }

    .nav-links li {
        margin-bottom: 10px;
    }

    .nav-links li:last-child {
        margin-bottom: 0;
    }

    .nav-links li a {
        font-size: 16px;
    }
}