/* ============================
   ALGEMENE RESET & BASIS
============================ */
.container {
    width: 100%;
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin-top: 0;
    font-family: Arial, sans-serif;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.banner {
    width: 100%;
    display: block;
}

/* ============================
   A-Z BAR
============================ */
.az-bar {
    text-align: center;
    margin: 20px 0;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.az-bar a {
    display: inline-block;
    padding: 8px 14px;
    margin: 3px;
    background-color: #003596;
    color: #fff !important;
    border-radius: 5px;
    font-weight: bold;
    text-decoration: none;
    border: 2px solid #00246a;
    transition: 0.2s;
}

.az-bar a:hover {
    background-color: #00246a;
    border-color: #001a4d;
}

.az-bar a.active {
    background-color: #000;
    border-color: #222;
}

.az-bar a.all {
    background-color: #444;
    border-color: #222;
}

/* ============================
   RESPONSIVE GALLERY
============================ */
div.gallery {
    border: 1px solid #ccc;
}

div.gallery:hover {
    border: 1px solid #777;
}

div.gallery img {
    width: 100%;
    height: auto;
}

div.desc {
    padding: 15px;
    text-align: center;
}

.responsive {
    padding: 0 6px;
    float: left;
    width: 24.99999%;
}

@media only screen and (max-width: 700px) {
    .responsive {
        width: 49.99999%;
        margin: 6px 0;
    }
}

@media only screen and (max-width: 500px) {
    .responsive {
        width: 100%;
    }
}

.clearfix:after {
    content: "";
    display: table;
    clear: both;
}

/* ============================
   NAVIGATIEBALK
============================ */
.navbar {
    overflow: hidden;
    background-color: #333;
}

.navbar a {
    float: left;
    font-size: 16px;
    color: white;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
}

.subnav {
    float: left;
    overflow: hidden;
}

.subnav .subnavbtn {
    font-size: 16px;
    border: none;
    outline: none;
    color: white;
    padding: 14px 16px;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
}

.navbar a:hover,
.subnav:hover .subnavbtn {
    background-color: orange;
}

.subnav-content {
    display: none;
    position: absolute;
    left: 0;
    background-color: #003596;
    width: 100%;
    z-index: 1;
}

.subnav-content a {
    float: left;
    color: white;
    text-decoration: none;
}

.subnav-content a:hover {
    background-color: #eee;
    color: black;
}

.subnav:hover .subnav-content {
    display: block;
}

.navbar,
.navbar a,
.subnav .subnavbtn,
.subnav-content a {
    font-family: 'Roboto', sans-serif;
}

/* MOBIEL MENU */
.mobile-toggle {
    display: none;
    background: #333;
    color: white;
    padding: 14px 16px;
    font-size: 18px;
    cursor: pointer;
}

@media (max-width: 800px) {
    .mobile-toggle {
        display: block;
    }

    .navbar {
        display: none;
        width: 100%;
    }

    body.nav-open .navbar {
        display: block;
    }

    .navbar a,
    .subnav .subnavbtn {
        float: none;
        display: block;
        text-align: left;
        width: 100%;
    }

    .subnav-content {
        position: static;
        width: 100%;
    }
}

/* ============================
   INDEX HOVER EFFECT
============================ */
.index img {
    transition: opacity 0.3s ease;
    opacity: 1;
}

.index img:hover {
    opacity: 0.4;
}

/* ============================
   BIOGRAFIE SECTIE
============================ */
.bio-wrapper {
    max-width: 800px;
    margin: 20px auto;
    font-family: 'Segoe UI', Arial, sans-serif;
    color: #333;
}

.bio-card {
    border-left: 8px solid #003596;
    padding: 25px;
    background-color: #fff;
    border-radius: 10px;
    border: 1px solid #ccc;
    margin-bottom: 25px;
    text-align: left;
}

.bio-card h1,
.bio-card h2 {
    color: #003596;
    margin-top: 0;
}

.bio-photo {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 15px;
    display: block;
}

.bio-table-container {
    overflow-x: auto;
}

.bio-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
    font-size: 0.95em;
    text-align: left;
}

.bio-table th {
    background-color: #003596;
    color: #fff;
    padding: 12px;
    border: 1px solid #ccc;
}

.bio-table td {
    padding: 10px;
    border: 1px solid #eee;
}

.bio-table tr:nth-child(even) {
    background-color: #f9f9f9;
}

.bio-link {
    color: #003596;
    text-decoration: underline;
    font-weight: bold;
}

.bio-top-hit {
    background-color: #eef4ff !important;
    font-weight: bold;
}

.bio-buttons {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.bio-btn {
    background-color: #003596;
    padding: 12px 22px;
    border-radius: 6px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    text-decoration: none;
    text-align: center;
    min-width: 260px;
    transition: 0.2s ease;
}

.bio-btn:hover {
    background-color: #002a78;
}

/* ============================
   NIEUWE 2-KOLOMS LAYOUT
============================ */
#pagina {
    width: 100%;
    max-width: 980px;
    margin: 0 auto;
}

/* Linkerkolom (nieuws) */
#leftcol {
    float: left;
    width: 70%;
    box-sizing: border-box;
}

/* Rechterkolom (menu) */
#menu {
    float: right;
    width: 28%;
    box-sizing: border-box;
    background: #f7f7f7;
    border: 1px solid #ddd;
    padding: 10px;
}

#menu h3 {
    margin-top: 0;
}

#menu ul {
    padding-left: 16px;
    margin: 0;
}

/* Clearfix voor de layout */
#pagina::after {
    content: "";
    display: block;
    clear: both;
}