/* File: css/styles.css */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    text-align: center;
    background-color: #E7EDE5;
    color: #097C69;
}

header {
    background-color: #D3DFCE; 
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0px 20px;
    position: relative;
    height: 145px;
}

.logo {
    height: 100px;
    padding-left: 100px;
}

nav {
    display: flex;
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    display: flex;
}

nav ul li {
    margin: 0 20px;
}

nav ul li a {
    text-decoration: none;
    color: #1A584F; /* Tekstkleur menu balk */
    font-weight: bold;
    font-size: 18px;
}

/* Hamburger menu styling */
.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger div {
    width: 30px;
    height: 3px;
    background-color: #1A584F;
    margin: 5px;
}

.articles-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    margin-top: 30px;
    gap: 20px;
    padding-bottom: 15px; 
}

.article-box {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 22%; 
    min-width: 250px;
    max-width: 300px;
}

.article-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #1A584F;
}

.article-box p {
    font-size: 14px;
    margin-bottom: 10px;
    color: #097C69;
}

.article-link {
    display: inline-block;
    background-color: #1A584F;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease-in-out;
}

.article-link:hover {
    background-color: #0c6a5a;
}

.box-info {
    max-width: 1024px;
    width: 75%;
    margin: 50px auto;
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.project-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 20px;
    color: #097C69;
}

main {
    margin-top: 20px;
    padding-bottom: 15px;
}

.team-container {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap; 
    margin-top: 20px;
}


.teambox {
    background: white;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    text-align: center;
    width: 22%; 
    min-width: 250px;
    max-width: 300px;
    margin: 10px;
}

.teambox img {
    width: 150px; 
    height: 100px;
    border-radius: 15%; 
    object-fit: cover;
}

.linkedin-btn {
    display: inline-block;
    background-color: #1A584F;
    color: white;
    padding: 8px 15px;
    border-radius: 5px;
    text-decoration: none;
    margin-top: 10px;
}

.section-image-large {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.large-img {
    max-width: 50%;
    height: auto;
    border-radius: 10px;
    border: 2px solid #1A584F;
}

@media screen and (max-width: 1024px) {
    .articles-container {
        flex-direction: row;
        justify-content: center;
    }
    
    .article-box {
        width: 45%; 
    }

    .logo {
        padding-left: 50px;
    }
}

@media screen and (max-width: 768px) {
    .hamburger {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
        cursor: pointer;
    }

    nav ul {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 60px;
        right: 15px;
        background-color: #D3DFCE;
        padding: 10px;
        border-radius: 5px;
        box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1);
    }
    
    nav ul.show {
        display: flex;
        align-items: flex-end;
    }

    nav ul li {
        text-align: right;
        padding: 5px 10px;
    }

    nav ul li a {
        text-decoration: none;
        color: #1A584F;
        font-weight: bold;
        font-size: 18px;
        display: block;
    }

    .articles-container {
        flex-direction: column;
        align-items: center;
    }
    
    .article-box {
        width: 90%; 
    }

    .teambox {
        width: 90%; 
    }

    .logo {
        padding-left: 25px; 
    }
}

@media screen and (max-width: 480px) {
    .logo {
        padding-left: 10px; 
    }
}