/******************************
 * MENUBALK CONTAINER PC
 ******************************/
.menubalk {
    background-color: #4b81b1;
    height: 55px;
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 10px;
}

/******************************
 * PC MENU STRUCTUUR
 ******************************/
#navigation {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
}
#navigation a,
#navigation span {
    padding: 0px 10px 0 15px;
    font-weight: bold;
    color: white;
}

#navigation li {
    position: relative; /* nodig voor submenu */
}

/******************************
 * PC MENU LINKS
 ******************************/
#navigation li a {
    font-size: 2em;        /* ← PC lettergrootte */
    line-height: 35px;
    font-weight: normal;
    color: white;
    text-decoration: none;
    padding: 0 15px;
}

/******************************
 * PC MENU SPAN (Schilderijen)
 ******************************/
#navigation li span {
    font-size: 2em;
    line-height: inherit;
    font-weight: inherit;
    color: white;
    padding: 0 15px;
    display: inline-block;
    cursor: default;
}

/******************************
 * HOVER PC
 ******************************/
#navigation li a:hover,
#navigation li span:hover {
    color: yellow;
}

/******************************
 * SUBMENU PC
 ******************************/
#navigation li ul {
    position: absolute;
    top: 25px;               /* sluit perfect aan onder PC-menu-item */
    left: 50%;
    transform: translateX(-50%);
    background-color: #4b81b1;
    padding: 10px 5px 15px 5px;
    border-radius: 15px;
    display: none;
    white-space: nowrap;
    z-index: 999;
}

#navigation li:hover > ul {
    display: block;
}

#navigation li ul li {
    float: none;
    text-align: center;
    display: block;
}

/******************************
 * SPECIALE UITZETTINGEN
 ******************************/
/* Diavoorstelling uitschakelen op indexpagina */
.is-index a[href*="slideshow=1"] {
    pointer-events: none;
    opacity: 0.4;
    cursor: default;
}

/* Hoofdmenu-item 'Schilderijen' uitschakelen */
a[href*="paintings.php"][href*="categorie=paintings"] {
    pointer-events: none;
    cursor: default;
}
