/* --- RESET & BASIS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
    overflow-x: hidden;
}

.container {
    max-width: 1400px; /* Ruime container voor de 3-koloms layout */
    margin: 0 auto;
    padding: 0 20px;
}

.logo-accent {
    color: #294171;
}

/* --- NAVIGATIE --- */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 8%;
    background-color: #ffffff;
    height: 80px;
    position: relative;
    z-index: 1000;
}

.logo img {
    height: 60px;
}

.nav-links {
    display: flex;
    list-style: none;
}

.nav-links li {
    margin-left: 2rem;
}

.nav-links a {
    text-decoration: none;
    color: #555;
    font-weight: 500;
    font-size: 0.95rem;
    text-transform: uppercase;
    transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
    color: #1a3a4a;
    border-bottom: 2px solid #1a3a4a;
    padding-bottom: 5px;
}

.menu-toggle {
    display: none;
    cursor: pointer;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    background-color: #333;
    transition: all 0.3s ease-in-out;
}

/* --- OVER ONS SPECIFIEK --- */
.page-title {
    padding: 40px 0;
}

.title-box {
    background-color: #1a3a4a;
    padding: 40px 20px;
    text-align: center;
    color: #fff;
    border-radius: 12px;
    max-width: 1000px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

/* --- DRIE KOLOMMEN LAYOUT --- */
.about-grid {
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 60px 0;
}

/* Facebook Kolom - Geforceerd naar 500px breedte voor de posts */
.about-fb-container {
    flex: 0 0 500px;
    background: #fff;
    padding: 10px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.fb-title {
    font-size: 1.3rem;
    color: #1a3a4a;
    margin-bottom: 15px;
    text-align: center;
    font-weight: 700;
}

/* Dit zorgt ervoor dat de Facebook plugin zelf de volledige 500px pakt */
.fb-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    min-height: 600px;
}

.fb-page,
.fb-page span,
.fb-page iframe {
    width: 500px !important; /* Forceert de breedte van de posts zelf */
}

/* Tekst Kolom */
.about-text {
    flex: 1;
}

.about-text h2 {
    font-size: 2rem;
    color: #1a3a4a;
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 15px;
    font-size: 1.05rem;
    color: #555;
}

/* Foto Kolom (Portret) */
.about-portrait {
    flex: 0 0 300px;
}

.about-portrait img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

/* --- VALUES SECTIE --- */
.values {
    background-color: #f8f9fa;
    padding: 80px 0;
}

.values-grid {
    display: flex;
    gap: 30px;
}

.value-card {
    background: #fff;
    padding: 40px 20px;
    text-align: center;
    flex: 1;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    border-radius: 8px;
}

.value-card i {
    font-size: 2.5rem;
    color: #1a3a4a;
    margin-bottom: 15px;
}

/* --- FOOTER --- */
.main-footer {
    background-color: #ffffff;
    padding: 50px 0 0 0;
    border-top: 1px solid #eee;
}

.footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    padding-bottom: 40px;
}

.footer-logo { height: 40px; margin-bottom: 10px; }
.footer-column h3 { color: #1a3a4a; font-size: 1rem; margin-bottom: 15px; text-transform: uppercase; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { text-decoration: none; color: #666; font-size: 0.9rem; }

.footer-bottom {
    background-color: #111;
    color: #888;
    text-align: center;
    padding: 15px 0;
    font-size: 0.8rem;
}

/* --- RESPONSIVE / MOBIEL --- */
@media (max-width: 1300px) {
    .about-grid {
        flex-wrap: wrap;
        justify-content: center;
    }
    .about-portrait {
        order: 3;
        flex: 0 0 100%;
        max-width: 400px;
    }
    .about-portrait img { height: auto; }
}

@media (max-width: 768px) {
    .menu-toggle { display: block; }
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        flex-direction: column;
        background-color: #fff;
        width: 100%;
        height: calc(100vh - 80px);
        text-align: center;
        transition: 0.4s;
        z-index: 999;
    }
    .nav-links.active { right: 0; }

    .about-grid {
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
    }

    .about-portrait {
        display: none;
    }

    .about-text {
        text-align: center;
        order: 1;
        width: 100%;
    }

    .about-fb-container {
        order: 2;
        width: 100%;
        max-width: 500px;
        margin-top: 30px;
        flex: none;
    }

    .fb-page,
    .fb-page span,
    .fb-page iframe {
        width: 100% !important; /* Op mobiel mag het de volledige breedte pakken */
    }

    .values-grid { flex-direction: column; }
    .footer-grid { flex-direction: column; text-align: center; }
}