
			/* === AIDA SCHOLEN - Divi-stijl menu RECHTS + donker dropdown submenu === */

.site-header {
    background: #4a6b3a;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 100;
}

.header-inner {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    padding: 0 !important;
    max-width: 100% !important;
    min-height: 60px;
}

/* LOGO LINKS - witte achtergrond */
.site-logo {
    padding: 14px 28px;
    background: #ffffff;
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* HOOFDMENU - bruine balk, menu RECHTS */
.main-navigation {
    display: flex;
    align-items: stretch;
    flex: 1;
    background: #5d4037;
    gap: 0;
    justify-content: flex-end;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: stretch;
    margin-left: auto;
}

.nav-menu > li {
    position: relative;
    margin: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-menu > li > a {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 18px 24px;
    background: transparent;
    transition: background 0.25s ease;
    height: 100%;
    line-height: 1.2;
}

.nav-menu > li > a:hover {
    background: rgba(255, 255, 255, 0.08);
}

/* ACTIEF MENU ITEM - groen met witte pijl */
.nav-menu > li.current-menu-item > a,
.nav-menu > li.current-menu-parent > a,
.nav-menu > li.current_page_item > a,
.nav-menu > li.current-menu-ancestor > a {
    background: #4a6b3a;
}

.nav-menu > li.current-menu-item > a::after,
.nav-menu > li.current-menu-parent > a::after,
.nav-menu > li.current_page_item > a::after,
.nav-menu > li.current-menu-ancestor > a::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #4a6b3a;
    z-index: 5;
}

/* DONKER DROPDOWN SUBMENU (jouw stijl) */
.nav-menu li {
    position: relative;
}

.nav-menu .sub-menu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 220px;
    background: #5d4037;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.20);
    z-index: 9999;
    padding: 6px 0;
    list-style: none;
    margin: 0;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:focus-within > .sub-menu {
    display: block;
}

.nav-menu .sub-menu li {
    margin: 0;
    border: 0;
}

.nav-menu .sub-menu li a {
    display: block;
    padding: 12px 18px;
    color: #ffffff;
    font-size: 13px;
    font-weight: 500;
    white-space: nowrap;
    text-decoration: none;
    text-transform: none;
    letter-spacing: normal;
    transition: background 0.15s;
}

.nav-menu .sub-menu li a:hover {
    background: rgba(255, 255, 255, 0.15);
}

/* Pijltje voor menu items met submenu */
.nav-menu > li.menu-item-has-children > a::after {
    content: " ▾";
    font-size: 10px;
    margin-left: 6px;
    opacity: 0.85;
}

/* MAGISTER / CONTACT KNOP - bruin */
.magister-button {
    background: #795548;
    color: #ffffff !important;
    padding: 18px 24px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background 0.25s ease;
    display: flex;
    align-items: center;
}

.magister-button:hover {
    background: #5d4037;
}

/* === LOGO WIT FIX === */
.site-logo,
.site-logo a,
.site-branding,
.site-branding a {
    background: #ffffff !important;
    padding: 14px 28px !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    text-decoration: none !important;
}

.site-logo img,
.site-branding img,
.custom-logo {
    background: transparent !important;
    max-height: 60px !important;
    width: auto !important;
    display: block !important;
}



/* === ALLE PAGINA'S ECHT 100% VOLLE BREEDTE === */

/* Body en HTML zelf */
html, body {
    overflow-x: hidden !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
}

/* ALLE containers volledig openen */
.container,
.site-content,
.entry-content,
main,
.page-content,
.content-area,
.vrije-inhoud-binnen,
.vrije-inhoud,
.page-content-inner,
article,
#main,
#content,
#primary,
.wp-site-blocks {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
    box-sizing: border-box !important;
}

/* Page inhoud krijgt wel kleine padding voor leesbaarheid */
.page-content,
.entry-content,
.vrije-inhoud {
    padding: 40px 60px !important;
}

/* Page header (beige titel balk) - volle breedte */
.page-header {
    max-width: 100% !important;
    width: 100% !important;
    padding: 25px 60px !important;
    text-align: center !important;
}

/* HTML blokken die je hebt geplakt - volle breedte */
.entry-content > div,
.page-content > div,
.wp-block-html,
.wp-block-html > div {
    max-width: 100% !important;
    width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
}

/* Forceer dat blokken die je geplakt hebt ook 100% breed worden */
.entry-content [style*="max-width"],
.page-content [style*="max-width"] {
    max-width: 100% !important;
}

/* Mobiel - kleinere padding */
@media (max-width: 768px) {
    .page-content,
    .entry-content,
    .vrije-inhoud {
        padding: 30px 16px !important;
    }
    
    .page-header {
        padding: 20px 16px !important;
    }
}

/* Footer */
.site-footer,
footer {
    width: 100% !important;
    max-width: 100% !important;
}

.site-footer .container {
    max-width: 1200px !important;
    margin: 0 auto !important;
    padding: 0 40px !important;
}



/* === LOGO WIT ACHTERGROND - STERKE FIX === */

.site-logo,
.site-logo a,
.site-branding,
.site-branding a,
.custom-logo-link,
header .site-logo,
.site-header .site-logo {
    background: #ffffff !important;
    background-color: #ffffff !important;
    padding: 14px 28px !important;
    display: flex !important;
    align-items: center !important;
    margin: 0 !important;
    text-decoration: none !important;
}

.site-logo img,
.site-branding img,
.custom-logo,
.custom-logo-link img {
    background: transparent !important;
    max-height: 60px !important;
    width: auto !important;
    display: block !important;
}

/* Voor het geval het logo in een wrapper zit */
.site-header > .header-inner > div:first-child,
.header-inner > a:first-child,
.header-inner > .site-branding {
    background: #ffffff !important;
}		