/* =========================================================
   VMF – DEFINITIEVE HUISSTIJL
   ========================================================= */

:root {
    --vmf-petrol: #073f35;
    --vmf-petrol-dark: #052f28;
    --vmf-petrol-light: #0d574a;
    --vmf-lime: #dfff3f;
    --vmf-lime-hover: #d2f52e;
    --vmf-white: #ffffff;
    --vmf-text: #17201e;
    --vmf-dark: #17201e;
    --vmf-muted: #63706c;
    --vmf-soft: #f3f6f4;
    --vmf-border: #dfe7e3;
    --vmf-radius: 28px;
    --vmf-shadow: 0 20px 60px rgba(7, 63, 53, 0.12);
}

/* Algemene pagina-instellingen */

body {
    color: var(--vmf-text);
    background: var(--vmf-white);
    font-family: Inter, Arial, Helvetica, sans-serif;
    line-height: 1.65;
}

#sp-main-body {
    padding: 0;
}

#sp-component {
    padding: 0;
}

.article-details,
.article-details .article-full-image {
    margin: 0;
}

.article-details .article-header,
.article-details .article-info,
.article-details .article-can-edit {
    display: none;
}

.vmf-home,
.vmf-home * {
    box-sizing: border-box;
}

.vmf-home {
    overflow: hidden;
}

.vmf-container {
    width: min(1180px, calc(100% - 48px));
    margin: 0 auto;
}

.vmf-section {
    padding: 96px 0;
}

.vmf-section-label,
.vmf-eyebrow {
    display: inline-block;
    margin-bottom: 18px;
    color: var(--vmf-petrol);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.vmf-home h1,
.vmf-home h2,
.vmf-home h3,
.vmf-home p {
    margin-top: 0;
}

.vmf-home h2 {
    margin-bottom: 0;
    color: var(--vmf-text);
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.08;
    letter-spacing: -0.045em;
}

.vmf-home h3 {
    color: var(--vmf-text);
    font-size: 1.35rem;
    font-weight: 750;
    line-height: 1.25;
}

.vmf-home p {
    color: var(--vmf-muted);
}

/* Knoppen */

.vmf-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
}

.vmf-button {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 13px 24px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-size: 0.96rem;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease;
}

.vmf-button:hover {
    transform: translateY(-2px);
}

.vmf-button-primary {
    color: var(--vmf-petrol) !important;
    background: var(--vmf-lime);
}

.vmf-button-primary:hover {
    color: var(--vmf-petrol) !important;
    background: var(--vmf-lime-hover);
}

.vmf-button-secondary {
    color: var(--vmf-white) !important;
    border-color: rgba(255, 255, 255, 0.48);
    background: transparent;
}

.vmf-button-secondary:hover {
    color: var(--vmf-white) !important;
    border-color: var(--vmf-white);
    background: rgba(255, 255, 255, 0.1);
}

.vmf-button-dark {
    color: var(--vmf-white) !important;
    background: var(--vmf-petrol);
}

.vmf-button-dark:hover {
    color: var(--vmf-petrol) !important;
    background: var(--vmf-lime);
}

/* Hero */

.vmf-hero {
    position: relative;
    isolation: isolate;
    width: min(1440px, calc(100% - 48px));
    min-height: 650px;
    margin: 24px auto 0;
    padding: 110px 0;
    overflow: hidden;
    border-radius: 38px;
    background:
        radial-gradient(
            circle at 88% 15%,
            rgba(223, 255, 63, 0.11),
            transparent 32%
        ),
        linear-gradient(
            135deg,
            var(--vmf-petrol),
            var(--vmf-petrol-dark)
        );
}

.vmf-hero::after {
    position: absolute;
    right: -120px;
    bottom: -260px;
    z-index: -1;
    width: 680px;
    height: 680px;
    border: 1px solid rgba(223, 255, 63, 0.14);
    border-radius: 50%;
    content: "";
}

.vmf-hero-decoration {
    position: absolute;
    z-index: -1;
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 50%;
}

.vmf-circle-one {
    top: -260px;
    right: -120px;
    width: 650px;
    height: 650px;
}

.vmf-circle-two {
    right: 100px;
    bottom: -410px;
    width: 780px;
    height: 780px;
}

.vmf-hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(290px, 0.55fr);
    gap: 80px;
    align-items: center;
}

.vmf-eyebrow {
    color: var(--vmf-lime);
}

.vmf-hero h1 {
    max-width: 780px;
    margin-bottom: 26px;
    color: var(--vmf-white);
    font-size: clamp(3.4rem, 7vw, 6.8rem);
    font-weight: 850;
    line-height: 0.94;
    letter-spacing: -0.065em;
}

.vmf-hero h1 span {
    color: var(--vmf-lime);
}

.vmf-hero-content > p {
    max-width: 650px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.13rem;
    line-height: 1.7;
}

.vmf-hero-card {
    padding: 34px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 26px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.16);
    backdrop-filter: blur(14px);
}

.vmf-card-label {
    display: block;
    margin-bottom: 16px;
    color: var(--vmf-lime);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.15em;
}

.vmf-stat {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 16px;
    align-items: center;
    padding: 21px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.vmf-stat:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.vmf-stat strong {
    color: var(--vmf-white);
    font-size: 2.1rem;
    line-height: 1;
}

.vmf-stat span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.88rem;
    line-height: 1.4;
}

/* Introductie */

.vmf-intro-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
    gap: 100px;
    align-items: end;
}

.vmf-intro-text p {
    margin-bottom: 24px;
    font-size: 1.08rem;
}

.vmf-text-link {
    color: var(--vmf-petrol) !important;
    font-weight: 800;
    text-decoration: none !important;
}

.vmf-text-link span {
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.vmf-text-link:hover span {
    transform: translateX(5px);
}

/* Kernpunten */

.vmf-features-section {
    background: var(--vmf-soft);
}

.vmf-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 0.52fr);
    gap: 70px;
    align-items: end;
    margin-bottom: 54px;
}

.vmf-section-heading > p {
    margin-bottom: 0;
    font-size: 1.03rem;
}

.vmf-feature-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vmf-feature-card {
    min-height: 310px;
    padding: 34px;
    border: 1px solid var(--vmf-border);
    border-radius: var(--vmf-radius);
    background: var(--vmf-white);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.vmf-feature-card:hover {
    transform: translateY(-7px);
    border-color: rgba(7, 63, 53, 0.22);
    box-shadow: var(--vmf-shadow);
}

.vmf-feature-number {
    display: flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    margin-bottom: 54px;
    border-radius: 50%;
    color: var(--vmf-petrol);
    background: var(--vmf-lime);
    font-size: 0.82rem;
    font-weight: 850;
}

.vmf-feature-card p {
    margin-bottom: 0;
}

/* Kalender */

.vmf-calendar-placeholder {
    display: grid;
    grid-template-columns: 110px minmax(0, 1fr) auto;
    gap: 32px;
    align-items: center;
    padding: 38px;
    border: 1px solid var(--vmf-border);
    border-radius: var(--vmf-radius);
    background: var(--vmf-white);
    box-shadow: 0 15px 50px rgba(7, 63, 53, 0.07);
}

.vmf-calendar-icon {
    display: flex;
    width: 90px;
    height: 90px;
    align-items: center;
    justify-content: center;
    border-radius: 24px;
    color: var(--vmf-petrol);
    background: var(--vmf-lime);
    font-size: 1.1rem;
    font-weight: 900;
}

.vmf-calendar-placeholder h3,
.vmf-calendar-placeholder p {
    margin-bottom: 6px;
}

/* Clubbanner */

.vmf-club-section {
    padding-top: 30px;
}

.vmf-club-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 60px;
    align-items: center;
    padding: 70px;
    border-radius: 34px;
    background:
        radial-gradient(
            circle at 90% 0,
            rgba(223, 255, 63, 0.12),
            transparent 35%
        ),
        var(--vmf-petrol);
}

.vmf-label-light {
    color: var(--vmf-lime);
}

.vmf-club-banner h2 {
    max-width: 750px;
    margin-bottom: 20px;
    color: var(--vmf-white);
}

.vmf-club-banner p {
    max-width: 700px;
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.72);
}

/* =========================================================
   RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .vmf-section {
        padding: 76px 0;
    }

    .vmf-hero {
        min-height: auto;
        padding: 82px 0;
    }

    .vmf-hero-grid,
    .vmf-intro-grid {
        grid-template-columns: 1fr;
        gap: 54px;
    }

    .vmf-hero-card {
        max-width: 620px;
    }

    .vmf-intro-grid {
        align-items: start;
    }

    .vmf-section-heading {
        grid-template-columns: 1fr;
        gap: 22px;
    }

    .vmf-feature-grid {
        grid-template-columns: 1fr;
    }

    .vmf-feature-card {
        min-height: auto;
    }

    .vmf-feature-number {
        margin-bottom: 28px;
    }

    .vmf-calendar-placeholder {
        grid-template-columns: 90px minmax(0, 1fr);
    }

    .vmf-calendar-placeholder .vmf-button {
        grid-column: 1 / -1;
        justify-self: start;
    }

    .vmf-club-banner {
        grid-template-columns: 1fr;
        gap: 34px;
        padding: 54px;
    }

    .vmf-club-banner .vmf-button {
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .vmf-container {
        width: min(100% - 32px, 1180px);
    }

    .vmf-section {
        padding: 62px 0;
    }

    .vmf-hero {
        width: calc(100% - 20px);
        margin-top: 10px;
        padding: 70px 0;
        border-radius: 28px;
    }

    .vmf-hero h1 {
        font-size: clamp(3rem, 15vw, 4.8rem);
    }

    .vmf-hero-content > p {
        font-size: 1rem;
    }

    .vmf-button-row {
        flex-direction: column;
        align-items: stretch;
    }

    .vmf-button-row .vmf-button {
        width: 100%;
    }

    .vmf-hero-card {
        padding: 26px;
    }

    .vmf-stat {
        grid-template-columns: 74px 1fr;
    }

    .vmf-home h2 {
        font-size: 2.35rem;
    }

    .vmf-calendar-placeholder {
        grid-template-columns: 1fr;
        padding: 28px;
    }

    .vmf-calendar-placeholder .vmf-button {
        width: 100%;
        justify-self: stretch;
    }

    .vmf-club-banner {
        padding: 38px 28px;
        border-radius: 28px;
    }

    .vmf-club-banner .vmf-button {
        width: 100%;
        justify-self: stretch;
    }
}
/* =========================================================
   VMF – HELIX HEADER
   ========================================================= */

#sp-top-bar,
#sp-header .social-icons,
#sp-header-topbar,
.header-top,
.topbar-wrapper {
    display: none !important;
}

#sp-header {
    height: 92px;
    background: #ffffff;
    box-shadow: 0 1px 0 rgba(7, 63, 53, 0.08);
}

#sp-header .container,
#sp-header .container-inner,
#sp-header .row {
    height: 100%;
}

#sp-logo,
#sp-menu {
    display: flex;
    height: 92px;
    align-items: center;
}

#sp-logo .logo {
    display: inline-flex;
    align-items: center;
}

#sp-header .logo-image {
    width: auto;
    max-width: 260px;
    max-height: 64px;
}

#sp-menu {
    justify-content: flex-end;
}

.sp-megamenu-parent {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-left: auto;
}

.sp-megamenu-parent > li > a,
.sp-megamenu-parent > li > span {
    display: flex;
    min-height: 46px;
    align-items: center;
    padding: 0 18px;
    border-radius: 999px;
    color: #17201e;
    font-size: 15px;
    font-weight: 650;
    line-height: 1;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
}

.sp-megamenu-parent > li > a:hover {
    color: #073f35;
    background: #f3f6f4;
}

.sp-megamenu-parent > li.active > a {
    color: #073f35;
    background: #dfff3f;
}

/* Sticky header */

#sp-header.header-sticky {
    background: rgba(255, 255, 255, 0.97);
    box-shadow: 0 10px 35px rgba(7, 63, 53, 0.10);
    backdrop-filter: blur(12px);
}

/* Desktop: geen hamburger */

@media (min-width: 992px) {
    #offcanvas-toggler,
    .offcanvas-toggler {
        display: none !important;
    }
}

/* Tablet en smartphone */

@media (max-width: 991px) {
    #sp-header,
    #sp-logo,
    #sp-menu {
        height: 74px;
    }

    #sp-header .logo-image {
        max-width: 210px;
        max-height: 52px;
    }

    .sp-megamenu-parent {
        display: none !important;
    }

    #offcanvas-toggler,
    .offcanvas-toggler {
        display: inline-flex !important;
        width: 46px;
        height: 46px;
        align-items: center;
        justify-content: center;
        margin-left: auto;
        border-radius: 50%;
        background: #dfff3f;
    }

    .burger-icon > span {
        background-color: #073f35;
    }
}

@media (max-width: 575px) {
    #sp-header .logo-image {
        max-width: 175px;
        max-height: 46px;
    }
}
/* VMF – overgebleven sociale balk verbergen */

#sp-social,
#sp-social-icons,
#sp-social-wrapper,
#sp-header-topbar,
.social-icons-wrap,
.social-icons-wrapper,
.social-icons {
    display: none !important;
}
/* VMF – sociale deelknoppen van artikelen verbergen */
.article-ratings-social-share,
.social-share-block,
.article-social-share {
    display: none !important;
}

/* =========================================================
   VMF – TOERKALENDER
   ========================================================= */

.vmf-calendar-section {
    background: var(--vmf-soft);
}

.vmf-calendar-image-card {
    padding: 18px;
    overflow: hidden;
    border: 1px solid var(--vmf-border);
    border-radius: 28px;
    background: var(--vmf-white);
    box-shadow: 0 18px 55px rgba(7, 63, 53, 0.09);
}

.vmf-calendar-image-card a {
    display: block;
    border-radius: 18px;
    overflow: hidden;
}

.vmf-calendar-image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 18px;
    transition: transform 0.3s ease;
}

.vmf-calendar-image-card a:hover .vmf-calendar-image {
    transform: scale(1.01);
}

.vmf-calendar-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 22px;
    align-items: center;
    margin-top: 28px;
}

.vmf-calendar-download {
    color: var(--vmf-petrol) !important;
    font-weight: 800;
    text-decoration: none !important;
}

.vmf-calendar-download span {
    display: inline-block;
    margin-left: 7px;
    transition: transform 0.2s ease;
}

.vmf-calendar-download:hover span {
    transform: translateY(4px);
}

@media (max-width: 767px) {
    .vmf-calendar-image-card {
        padding: 8px;
        border-radius: 18px;
    }

    .vmf-calendar-image-card a,
    .vmf-calendar-image {
        border-radius: 12px;
    }

    .vmf-calendar-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .vmf-calendar-actions .vmf-button {
        width: 100%;
    }

    .vmf-calendar-download {
        text-align: center;
    }
}
/* =========================================================
   VMF – PAGINA BESTUUR
   ========================================================= */

/* Hero bovenaan */

.vmf-page-hero {
    position: relative;
    width: min(calc(100% - 40px), 1380px);
    margin: 20px auto 0;
    padding: 82px 0;
    overflow: hidden;
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(223, 255, 63, 0.18),
            transparent 28%
        ),
        var(--vmf-petrol);
}

.vmf-page-hero::after {
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 320px;
    height: 320px;
    border: 70px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}

.vmf-page-hero .vmf-container {
    position: relative;
    z-index: 1;
}

.vmf-page-hero .vmf-section-label {
    color: var(--vmf-lime);
}

.vmf-page-hero h1 {
    max-width: 800px;
    margin: 12px 0 18px;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 850;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.vmf-page-hero p {
    max-width: 720px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
    line-height: 1.75;
}

/* Raster met bestuursleden */

.vmf-board-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px;
}

/* Bestuurskaart */

.vmf-board-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    min-height: 100%;
    padding: 34px;
    overflow: hidden;
    border: 1px solid var(--vmf-border);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(7, 63, 53, 0.07);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease;
}

.vmf-board-card:hover {
    transform: translateY(-6px);
    border-color: rgba(7, 63, 53, 0.22);
    box-shadow: 0 24px 60px rgba(7, 63, 53, 0.12);
}

/* Foto’s */

.vmf-board-photo-wrapper {
    position: relative;
    width: 100%;
    margin-bottom: 28px;
    overflow: hidden;
    border-radius: 20px;
    background: var(--vmf-soft);
    aspect-ratio: 4 / 3;
}

.vmf-board-photo-wrapper::after {
    position: absolute;
    inset: auto 0 0;
    height: 35%;
    pointer-events: none;
    background: linear-gradient(
        to top,
        rgba(7, 63, 53, 0.16),
        transparent
    );
    content: "";
}

.vmf-board-photo {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.4s ease;
}

.vmf-board-card:hover .vmf-board-photo {
    transform: scale(1.035);
}

/* Functie en naam */

.vmf-board-function {
    display: block;
    margin-bottom: 9px;
    color: var(--vmf-petrol);
    font-size: 0.78rem;
    font-weight: 850;
    line-height: 1.4;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.vmf-board-content {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
}

.vmf-board-content h2 {
    margin: 0 0 28px;
    color: var(--vmf-dark);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

/* Contactgegevens */

.vmf-board-contact {
    display: grid;
    gap: 12px;
    margin-top: auto;
}

.vmf-board-contact a {
    display: flex;
    gap: 13px;
    align-items: center;
    min-width: 0;
    padding: 13px;
    border-radius: 14px;
    color: var(--vmf-dark) !important;
    background: var(--vmf-soft);
    text-decoration: none !important;
    transition:
        color 0.2s ease,
        background-color 0.2s ease;
}

.vmf-board-contact a:hover,
.vmf-board-contact a:focus-visible {
    color: var(--vmf-petrol) !important;
    background: rgba(223, 255, 63, 0.28);
}

.vmf-board-contact a > span:last-child {
    min-width: 0;
    overflow-wrap: anywhere;
}

.vmf-contact-symbol {
    display: flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--vmf-petrol);
    font-size: 1rem;
}

.vmf-board-contact small {
    display: block;
    margin-bottom: 2px;
    color: #6f7c78;
    font-size: 0.7rem;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Geen rechtstreekse contactgegevens */

.vmf-board-no-contact {
    margin: auto 0 0;
    padding: 18px;
    border-radius: 14px;
    color: #65726e;
    background: var(--vmf-soft);
    font-size: 0.94rem;
    line-height: 1.65;
}

/* Contactbanner onder de bestuursleden */

.vmf-board-contact-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 40px;
    align-items: center;
    margin-top: 70px;
    padding: 48px 54px;
    border-radius: 28px;
    color: #ffffff;
    background: var(--vmf-petrol);
}

.vmf-board-contact-banner .vmf-section-label {
    color: var(--vmf-lime);
}

.vmf-board-contact-banner h2 {
    margin: 8px 0 10px;
    color: #ffffff;
    font-size: clamp(2rem, 4vw, 3.3rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.vmf-board-contact-banner p {
    max-width: 660px;
    margin: 0;
    color: rgba(255, 255, 255, 0.74);
    line-height: 1.7;
}

/* Joomla-artikelgegevens verbergen */

.vmf-board-page ~ .article-info,
.com-content-article__body > .article-info {
    display: none;
}

/* =========================================================
   VMF – BESTUUR RESPONSIVE
   ========================================================= */

@media (max-width: 1199px) {
    .vmf-board-card {
        padding: 28px;
    }

    .vmf-board-content h2 {
        font-size: 1.55rem;
    }
}

@media (max-width: 991px) {
    .vmf-board-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmf-board-card:last-child {
        grid-column: 1 / -1;
    }

    .vmf-board-contact-banner {
        grid-template-columns: 1fr;
    }

    .vmf-board-contact-banner .vmf-button {
        justify-self: start;
    }
}

@media (max-width: 767px) {
    .vmf-page-hero {
        width: calc(100% - 20px);
        margin-top: 10px;
        padding: 60px 0;
        border-radius: 28px;
    }

    .vmf-page-hero p {
        font-size: 1rem;
    }

    .vmf-board-grid {
        grid-template-columns: 1fr;
    }

    .vmf-board-card:last-child {
        grid-column: auto;
    }

    .vmf-board-card {
        padding: 28px;
    }

    .vmf-board-photo-wrapper {
        border-radius: 16px;
        aspect-ratio: 4 / 3;
    }

    .vmf-board-contact-banner {
        padding: 36px 28px;
    }

    .vmf-board-contact-banner .vmf-button {
        width: 100%;
        justify-self: stretch;
    }
}

@media (max-width: 480px) {
    .vmf-page-hero {
        padding: 48px 0;
    }

    .vmf-board-card {
        padding: 20px;
        border-radius: 20px;
    }

    .vmf-board-photo-wrapper {
        margin-bottom: 22px;
    }

    .vmf-board-content h2 {
        margin-bottom: 22px;
        font-size: 1.45rem;
    }

    .vmf-board-contact a {
        gap: 10px;
        padding: 11px;
        font-size: 0.9rem;
    }

    .vmf-board-contact-banner {
        margin-top: 48px;
        padding: 30px 22px;
        border-radius: 22px;
    }
}
/* =========================================================
   VMF – CORRECTIES PAGINA BESTUUR
   ========================================================= */

/* Portretfoto's hoger maken zodat de gezichten beter zichtbaar zijn */

.vmf-board-photo-wrapper {
    aspect-ratio: 1 / 1;
}

.vmf-board-photo {
    object-position: center top;
}

/* Contactknop duidelijk zichtbaar maken */

.vmf-board-contact-banner .vmf-button-light {
    display: inline-flex;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 2px solid var(--vmf-lime);
    border-radius: 999px;
    color: var(--vmf-petrol) !important;
    background: var(--vmf-lime);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.vmf-board-contact-banner .vmf-button-light:hover,
.vmf-board-contact-banner .vmf-button-light:focus-visible {
    transform: translateY(-2px);
    border-color: #ffffff;
    background: #ffffff;
}
/* =========================================================
   VMF – PAGINA STATUTEN
   ========================================================= */

/* Hero */

.vmf-statutes-page .vmf-page-hero {
    position: relative;
    width: min(calc(100% - 40px), 1380px);
    margin: 20px auto 0;
    padding: 82px 0;
    overflow: hidden;
    border-radius: 34px;
    color: #ffffff;
    background:
        radial-gradient(
            circle at 85% 25%,
            rgba(223, 255, 63, 0.18),
            transparent 28%
        ),
        var(--vmf-petrol);
}

.vmf-statutes-page .vmf-page-hero::after {
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 320px;
    height: 320px;
    border: 70px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}

.vmf-statutes-page .vmf-page-hero .vmf-container {
    position: relative;
    z-index: 1;
}

.vmf-statutes-page .vmf-page-hero .vmf-section-label {
    color: var(--vmf-lime);
}

.vmf-statutes-page .vmf-page-hero h1 {
    max-width: 800px;
    margin: 12px 0 18px;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 850;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.vmf-statutes-page .vmf-page-hero p {
    max-width: 750px;
    margin: 0;
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
    line-height: 1.75;
}

/* Hoofdindeling */

.vmf-statutes-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(340px, 0.65fr);
    gap: 32px;
    align-items: start;
}

/* Introductie */

.vmf-statutes-intro {
    padding: 48px;
    border: 1px solid var(--vmf-border);
    border-radius: 28px;
    background: #ffffff;
    box-shadow: 0 16px 45px rgba(7, 63, 53, 0.07);
}

.vmf-statutes-intro h2 {
    max-width: 650px;
    margin: 10px 0 22px;
    color: var(--vmf-dark);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.vmf-statutes-intro > p {
    max-width: 740px;
    margin: 0 0 18px;
    color: #65726e;
    font-size: 1.02rem;
    line-height: 1.8;
}

/* Informatiekader */

.vmf-statutes-notice {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-top: 30px;
    padding: 20px;
    border-left: 4px solid var(--vmf-lime);
    border-radius: 0 16px 16px 0;
    background: var(--vmf-soft);
}

.vmf-statutes-notice-icon {
    display: flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--vmf-petrol);
    font-size: 1rem;
    font-weight: 850;
}

.vmf-statutes-notice p {
    margin: 2px 0 0;
    color: var(--vmf-dark);
    font-size: 0.95rem;
    line-height: 1.65;
}

/* Officiële gegevens */

.vmf-statutes-details {
    padding: 34px;
    border-radius: 28px;
    color: #ffffff;
    background: var(--vmf-petrol);
    box-shadow: 0 18px 50px rgba(7, 63, 53, 0.16);
}

.vmf-statutes-details h2 {
    margin: 0 0 26px;
    color: #ffffff;
    font-size: 1.65rem;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.035em;
}

.vmf-statutes-list {
    display: grid;
    gap: 0;
    margin: 0;
}

.vmf-statutes-list > div {
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.vmf-statutes-list > div:first-child {
    padding-top: 0;
}

.vmf-statutes-list > div:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.vmf-statutes-list dt {
    margin-bottom: 5px;
    color: var(--vmf-lime);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vmf-statutes-list dd {
    margin: 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    line-height: 1.55;
}

/* PDF-documentblok */

.vmf-statutes-document {
    display: grid;
    grid-template-columns: 150px minmax(0, 1fr);
    gap: 38px;
    align-items: center;
    margin-top: 48px;
    padding: 44px 48px;
    overflow: hidden;
    border: 1px solid var(--vmf-border);
    border-radius: 28px;
    background: var(--vmf-soft);
}

.vmf-statutes-document-icon {
    display: flex;
    width: 140px;
    height: 170px;
    align-items: center;
    justify-content: center;
    border-radius: 14px 30px 14px 14px;
    color: #ffffff;
    background: var(--vmf-petrol);
    box-shadow: 0 16px 35px rgba(7, 63, 53, 0.18);
    transform: rotate(-3deg);
}

.vmf-statutes-document-icon span {
    padding: 9px 14px;
    border-radius: 8px;
    color: var(--vmf-petrol);
    background: var(--vmf-lime);
    font-size: 1rem;
    font-weight: 900;
    letter-spacing: 0.08em;
}

.vmf-statutes-document-content h2 {
    margin: 8px 0 12px;
    color: var(--vmf-dark);
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 850;
    line-height: 1.08;
    letter-spacing: -0.04em;
}

.vmf-statutes-document-content p {
    max-width: 680px;
    margin: 0;
    color: #65726e;
    line-height: 1.7;
}

/* Actieknoppen */

.vmf-statutes-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    align-items: center;
    margin-top: 28px;
}

.vmf-statutes-actions .vmf-button-primary {
    display: inline-flex;
    gap: 10px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 2px solid var(--vmf-petrol);
    border-radius: 999px;
    color: #ffffff !important;
    background: var(--vmf-petrol);
    font-weight: 800;
    line-height: 1.2;
    text-decoration: none !important;
    transition:
        transform 0.2s ease,
        color 0.2s ease,
        background-color 0.2s ease,
        border-color 0.2s ease;
}

.vmf-statutes-actions .vmf-button-primary:hover,
.vmf-statutes-actions .vmf-button-primary:focus-visible {
    transform: translateY(-2px);
    border-color: var(--vmf-lime);
    color: var(--vmf-petrol) !important;
    background: var(--vmf-lime);
}

.vmf-statutes-actions .vmf-text-link {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    color: var(--vmf-petrol) !important;
    font-weight: 800;
    text-decoration: none !important;
}

.vmf-statutes-actions .vmf-text-link:hover,
.vmf-statutes-actions .vmf-text-link:focus-visible {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

/* =========================================================
   VMF – STATUTEN RESPONSIVE
   ========================================================= */

@media (max-width: 991px) {
    .vmf-statutes-layout {
        grid-template-columns: 1fr;
    }

    .vmf-statutes-details {
        width: 100%;
    }
}

@media (max-width: 767px) {
    .vmf-statutes-page .vmf-page-hero {
        width: calc(100% - 20px);
        margin-top: 10px;
        padding: 60px 0;
        border-radius: 28px;
    }

    .vmf-statutes-page .vmf-page-hero p {
        font-size: 1rem;
    }

    .vmf-statutes-intro,
    .vmf-statutes-details {
        padding: 30px 26px;
        border-radius: 22px;
    }

    .vmf-statutes-document {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 34px 28px;
    }

    .vmf-statutes-document-icon {
        width: 105px;
        height: 128px;
    }
}

@media (max-width: 480px) {
    .vmf-statutes-page .vmf-page-hero {
        padding: 48px 0;
    }

    .vmf-statutes-intro,
    .vmf-statutes-details {
        padding: 24px 20px;
        border-radius: 20px;
    }

    .vmf-statutes-notice {
        padding: 16px;
    }

    .vmf-statutes-document {
        margin-top: 36px;
        padding: 28px 20px;
        border-radius: 20px;
    }

    .vmf-statutes-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .vmf-statutes-actions .vmf-button-primary,
    .vmf-statutes-actions .vmf-text-link {
        width: 100%;
        justify-content: center;
    }
}
/* VMF – correctie gegevenskaart Statuten */

.vmf-statutes-list {
    display: grid;
    margin: 0;
}

.vmf-statutes-item {
    display: grid;
    gap: 5px;
    padding: 17px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.vmf-statutes-item:first-child {
    padding-top: 0;
}

.vmf-statutes-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.vmf-statutes-term,
.vmf-statutes-value {
    display: block;
}

.vmf-statutes-term {
    color: var(--vmf-lime);
    font-size: 0.72rem;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vmf-statutes-value {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.98rem;
    font-weight: 600;
    line-height: 1.55;
}
/* =========================================================
   VMF – LEESBAARHEID STATUTEN
   ========================================================= */

/* Waarden in “VMF in het kort” duidelijker maken */

.vmf-statutes-details .vmf-statutes-value {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.55;
}

/* Labels helder limegroen houden */

.vmf-statutes-details .vmf-statutes-term {
    color: var(--vmf-lime) !important;
    font-weight: 900;
}

/* Knop voor het volledige document beter laten opvallen */

.vmf-statutes-actions .vmf-button-primary {
    border-color: var(--vmf-lime) !important;
    color: var(--vmf-petrol) !important;
    background: var(--vmf-lime) !important;
    font-weight: 850;
    box-shadow: 0 8px 22px rgba(7, 63, 53, 0.16);
}

/* Hover en toetsenbordfocus */

.vmf-statutes-actions .vmf-button-primary:hover,
.vmf-statutes-actions .vmf-button-primary:focus-visible {
    border-color: #ffffff !important;
    color: var(--vmf-petrol) !important;
    background: #ffffff !important;
    transform: translateY(-2px);
}
/* Knop Statuten bekijken – opnieuw petrolgroen */

.vmf-statutes-actions .vmf-button-primary {
    border-color: var(--vmf-petrol) !important;
    color: #ffffff !important;
    background: var(--vmf-petrol) !important;
    font-weight: 850;
    box-shadow: 0 8px 22px rgba(7, 63, 53, 0.18);
}

.vmf-statutes-actions .vmf-button-primary:hover,
.vmf-statutes-actions .vmf-button-primary:focus-visible {
    border-color: var(--vmf-lime) !important;
    color: var(--vmf-petrol) !important;
    background: var(--vmf-lime) !important;
    transform: translateY(-2px);
}
/* =========================================================
   VMF – PAGINA AFGEVAARDIGDEN
   ========================================================= */

.vmf-delegates-page .vmf-page-hero {
    position: relative;
    width: min(calc(100% - 40px), 1380px);
    margin: 20px auto 0;
    padding: 82px 0;
    overflow: hidden;
    border-radius: 34px;
    color: #ffffff;
    background: radial-gradient(circle at 85% 25%, rgba(223, 255, 63, 0.18), transparent 28%), var(--vmf-petrol);
}

.vmf-delegates-page .vmf-page-hero::after {
    position: absolute;
    right: -70px;
    bottom: -110px;
    width: 320px;
    height: 320px;
    border: 70px solid rgba(255, 255, 255, 0.04);
    border-radius: 50%;
    content: "";
}

.vmf-delegates-page .vmf-page-hero .vmf-container {
    position: relative;
    z-index: 1;
}

.vmf-delegates-page .vmf-page-hero .vmf-section-label {
    color: var(--vmf-lime);
}

.vmf-delegates-page .vmf-page-hero h1 {
    max-width: 900px;
    margin: 12px 0 18px;
    color: #ffffff;
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 850;
    line-height: 0.96;
    letter-spacing: -0.055em;
}

.vmf-delegates-page .vmf-page-hero p {
    max-width: 750px;
    margin: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 1.12rem;
    font-weight: 600;
    line-height: 1.75;
}

.vmf-delegates-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.65fr);
    gap: 50px;
    align-items: end;
    margin-bottom: 38px;
}

.vmf-delegates-heading h2 {
    margin: 10px 0 0;
    color: var(--vmf-dark);
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    font-weight: 850;
    line-height: 1.05;
    letter-spacing: -0.045em;
}

.vmf-delegates-heading > p {
    max-width: 520px;
    margin: 0;
    color: #65726e;
    font-size: 1rem;
    line-height: 1.75;
}

.vmf-delegates-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.vmf-delegate-card {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--vmf-border);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 14px 40px rgba(7, 63, 53, 0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.vmf-delegate-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 22px 55px rgba(7, 63, 53, 0.14);
}

.vmf-delegate-photo {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--vmf-soft);
}

.vmf-delegate-photo::after {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    height: 32%;
    pointer-events: none;
    background: linear-gradient(to top, rgba(7, 63, 53, 0.28), transparent);
    content: "";
}

.vmf-delegate-photo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.45s ease;
}

.vmf-delegate-card:hover .vmf-delegate-photo img {
    transform: scale(1.035);
}

.vmf-delegate-content {
    position: relative;
    min-height: 112px;
    padding: 24px;
}

.vmf-delegate-content::before {
    position: absolute;
    top: 0;
    left: 24px;
    width: 46px;
    height: 4px;
    border-radius: 999px;
    background: var(--vmf-lime);
    content: "";
}

.vmf-delegate-role {
    display: block;
    margin-bottom: 7px;
    color: var(--vmf-petrol);
    font-size: 0.72rem;
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.vmf-delegate-content h3 {
    margin: 0;
    color: var(--vmf-dark);
    font-size: 1.4rem;
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.03em;
}

.vmf-delegates-contact {
    display: grid;
    grid-template-columns: 86px minmax(0, 1fr) auto;
    gap: 30px;
    align-items: center;
    margin-top: 48px;
    padding: 38px 42px;
    border-radius: 28px;
    color: #ffffff;
    background: var(--vmf-petrol);
    box-shadow: 0 18px 50px rgba(7, 63, 53, 0.15);
}

.vmf-delegates-contact-icon {
    display: flex;
    width: 76px;
    height: 76px;
    align-items: center;
    justify-content: center;
    border-radius: 22px;
    color: var(--vmf-petrol);
    background: var(--vmf-lime);
    font-size: 2rem;
    font-weight: 900;
}

.vmf-delegates-contact .vmf-section-label {
    color: var(--vmf-lime);
}

.vmf-delegates-contact-content h2 {
    margin: 7px 0 8px;
    color: #ffffff;
    font-size: clamp(1.6rem, 3vw, 2.2rem);
    font-weight: 850;
    line-height: 1.1;
    letter-spacing: -0.035em;
}

.vmf-delegates-contact-content p {
    max-width: 650px;
    margin: 0;
    color: #ffffff;
    font-weight: 600;
    line-height: 1.65;
}

.vmf-delegates-contact-action {
    display: flex;
    min-width: 245px;
    align-items: flex-end;
    flex-direction: column;
    gap: 11px;
}

.vmf-delegates-button {
    display: inline-flex;
    gap: 10px;
    min-height: 52px;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border: 2px solid var(--vmf-lime);
    border-radius: 999px;
    color: var(--vmf-petrol) !important;
    background: var(--vmf-lime);
    font-weight: 850;
    line-height: 1.2;
    text-decoration: none !important;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.vmf-delegates-button:hover,
.vmf-delegates-button:focus-visible {
    transform: translateY(-2px);
    border-color: #ffffff;
    color: var(--vmf-petrol) !important;
    background: #ffffff;
}

.vmf-delegates-email {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
    text-decoration: none !important;
    opacity: 1;
}

.vmf-delegates-email:hover,
.vmf-delegates-email:focus-visible {
    text-decoration: underline !important;
    text-underline-offset: 4px;
}

@media (max-width: 1199px) {
    .vmf-delegates-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vmf-delegates-contact {
        grid-template-columns: 76px minmax(0, 1fr);
    }

    .vmf-delegates-contact-action {
        grid-column: 2;
        align-items: flex-start;
    }
}

@media (max-width: 767px) {
    .vmf-delegates-page .vmf-page-hero {
        width: calc(100% - 20px);
        margin-top: 10px;
        padding: 60px 0;
        border-radius: 28px;
    }

    .vmf-delegates-page .vmf-page-hero p {
        font-size: 1rem;
    }

    .vmf-delegates-heading {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .vmf-delegates-grid {
        gap: 18px;
    }

    .vmf-delegates-contact {
        grid-template-columns: 64px minmax(0, 1fr);
        gap: 22px;
        padding: 30px 26px;
        border-radius: 22px;
    }

    .vmf-delegates-contact-icon {
        width: 64px;
        height: 64px;
        border-radius: 18px;
        font-size: 1.7rem;
    }

    .vmf-delegates-contact-action {
        grid-column: 1 / -1;
        width: 100%;
        align-items: flex-start;
    }
}

@media (max-width: 560px) {
    .vmf-delegates-page .vmf-page-hero {
        padding: 48px 0;
    }

    .vmf-delegates-grid {
        grid-template-columns: 1fr;
    }

    .vmf-delegate-photo {
        aspect-ratio: 4 / 4.4;
    }

    .vmf-delegates-contact {
        display: flex;
        align-items: flex-start;
        flex-direction: column;
        margin-top: 36px;
        padding: 26px 22px;
        border-radius: 20px;
    }

    .vmf-delegates-contact-action {
        width: 100%;
        align-items: stretch;
    }

    .vmf-delegates-button {
        width: 100%;
    }

    .vmf-delegates-email {
        overflow-wrap: anywhere;
    }
}

/* =========================================================
   VMF – LEESBAARHEID OP DONKERGROENE ACHTERGRONDEN
   ========================================================= */

/* E-mailadres bij Afgevaardigden */

.vmf-delegates-contact .vmf-delegates-email {
    color: #ffffff !important;
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.5;
    opacity: 1;
}

/* Beschrijving in contactblok */

.vmf-delegates-contact-content p {
    color: #ffffff !important;
    font-weight: 600;
    opacity: 1;
}

/* Tekst in de paginahero’s */

.vmf-page-hero p {
    color: rgba(255, 255, 255, 0.94) !important;
    font-weight: 600;
}

/* Witte tekst in donkere blokken op de homepagina */

.vmf-hero p,
.vmf-home-hero p,
.vmf-cta p,
.vmf-home-cta p {
    color: rgba(255, 255, 255, 0.94) !important;
    font-weight: 600;
    opacity: 1;
}

/* Kleine teksten in cijfers- en informatieblokken */

.vmf-hero-stats,
.vmf-hero-stats span,
.vmf-hero-stats p,
.vmf-stats,
.vmf-stats span,
.vmf-stats p {
    color: rgba(255, 255, 255, 0.96) !important;
    opacity: 1;
}

/* =========================================================
   VMF – JEvents maandnavigatiekleuren
   Gecorrigeerd voor de werkelijke HTML-structuur
   ========================================================= */

/* Vorige en volgende maand */
#jevents_body .jev_toprow .jev_header2 div.previousmonth,
#jevents_body .jev_toprow .jev_header2 div.nextmonth {
    color: #ffffff !important;
    background: #0f766e !important;
    border-color: #0f766e !important;
}

/* Links in vorige en volgende maand */
#jevents_body .jev_toprow .jev_header2 div.previousmonth > a,
#jevents_body .jev_toprow .jev_header2 div.nextmonth > a {
    color: #ffffff !important;
    background: transparent !important;
    text-decoration: none !important;
}

/* Huidige maand */
#jevents_body .jev_toprow .jev_header2 div.currentmonth {
    color: #ffffff !important;
    background: #073f35 !important;
    border-color: #073f35 !important;
}

/* Hover op vorige en volgende maand */
#jevents_body .jev_toprow .jev_header2 div.previousmonth:hover,
#jevents_body .jev_toprow .jev_header2 div.nextmonth:hover {
    color: #073f35 !important;
    background: #dfff3f !important;
    border-color: #dfff3f !important;
}

#jevents_body .jev_toprow .jev_header2 div.previousmonth:hover > a,
#jevents_body .jev_toprow .jev_header2 div.nextmonth:hover > a {
    color: #073f35 !important;
}

/* =========================================================
   VMF – aanduiding huidige dag in JEvents
   ========================================================= */

#jevents_body .cal_today a.cal_daylink {
    color: #ffffff !important;
    background-color: #0f766e !important;
    border-radius: 10px !important;
}

/* Hover */
#jevents_body .cal_today a.cal_daylink:hover {
    color: #073f35 !important;
    background-color: #dfff3f !important;
}

/* =========================================================
   VMF - CONTACTPAGINA
   Paginaklasse: vmf-contact-page
   ========================================================= */

/* Maximale breedte van de contactpagina */
.vmf-contact-page .com-contact-contact {
    max-width: 900px;
    margin: 0 auto 60px;
}

/* Overbodige standaardtitels van Joomla verbergen */
.vmf-contact-page .com-contact-contact > h2,
.vmf-contact-page .contact-form > h3,
.vmf-contact-page .contact-form legend {
    display: none !important;
}

/* Bewerkknop iets minder opvallend */
.vmf-contact-page .icons {
    margin-bottom: 15px;
}

/* Contactgegevens als afzonderlijke kaart */
.vmf-contact-page .contact-address {
    background: #f3f8f7;
    border: 1px solid #dce9e7;
    border-left: 5px solid #0f766e;
    border-radius: 12px;
    padding: 20px 24px;
    margin: 15px 0 28px;
}

/* E-mailadres */
.vmf-contact-page .contact-address a {
    color: #0f766e;
    font-weight: 700;
    text-decoration: none;
}

.vmf-contact-page .contact-address a:hover {
    color: #0b5954;
    text-decoration: underline;
}

/* Formulierkaart */
.vmf-contact-page .contact-form {
    background: #ffffff;
    border: 1px solid #e2e8e7;
    border-radius: 16px;
    padding: 32px;
    margin-top: 25px;
    box-shadow: 0 10px 30px rgba(20, 45, 42, 0.08);
}

/* Introductietitel boven het formulier */
.vmf-contact-page .contact-form::before {
    content: "Stuur ons een bericht";
    display: block;
    color: #182421;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 8px;
}

/* Korte uitleg onder de titel */
.vmf-contact-page .contact-form form::before {
    content: "Heb je een vraag over VMF, onze werking of een evenement? Vul het formulier in. We beantwoorden je bericht zo snel mogelijk.";
    display: block;
    max-width: 700px;
    color: #5d6966;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

/* Verplicht-tekst subtieler maken */
.vmf-contact-page .contact-form .text-muted {
    display: block;
    color: #68736f !important;
    font-size: 14px;
    margin-bottom: 20px;
}

/* Labels */
.vmf-contact-page .contact-form label {
    color: #182421;
    font-weight: 700;
    margin-bottom: 7px;
}

/* Invoervelden */
.vmf-contact-page .contact-form input[type="text"],
.vmf-contact-page .contact-form input[type="email"],
.vmf-contact-page .contact-form textarea {
    width: 100%;
    min-height: 48px;
    padding: 11px 14px;
    color: #182421;
    background: #fbfcfc;
    border: 1px solid #cbd5d2;
    border-radius: 8px;
    box-shadow: none;
    transition:
        border-color 0.2s ease,
        box-shadow 0.2s ease,
        background-color 0.2s ease;
}

/* Berichtveld minder hoog */
.vmf-contact-page .contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

/* Focusweergave */
.vmf-contact-page .contact-form input:focus,
.vmf-contact-page .contact-form textarea:focus {
    background: #ffffff;
    border-color: #0f766e;
    box-shadow: 0 0 0 4px rgba(15, 118, 110, 0.13);
    outline: none;
}

/* Verzendknop in VMF-huisstijl */
.vmf-contact-page .contact-form button,
.vmf-contact-page .contact-form .btn-primary {
    min-height: 48px;
    padding: 11px 24px;
    color: #ffffff;
    background: #0f766e;
    border: 0;
    border-radius: 9px;
    font-weight: 700;
    box-shadow: 0 5px 14px rgba(15, 118, 110, 0.22);
    transition:
        background-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vmf-contact-page .contact-form button:hover,
.vmf-contact-page .contact-form .btn-primary:hover {
    color: #ffffff;
    background: #0b5f59;
    transform: translateY(-1px);
    box-shadow: 0 7px 18px rgba(15, 118, 110, 0.28);
}

/* Mobiele weergave */
@media (max-width: 767px) {
    .vmf-contact-page .com-contact-contact {
        margin-bottom: 35px;
    }

    .vmf-contact-page .contact-form {
        padding: 22px 18px;
        border-radius: 12px;
    }

    .vmf-contact-page .contact-form::before {
        font-size: 24px;
    }

    .vmf-contact-page .contact-form textarea {
        min-height: 150px;
    }

    .vmf-contact-page .contact-form button,
    .vmf-contact-page .contact-form .btn-primary {
        width: 100%;
    }
}
/* VMF contactpagina – resterende Joomla-titels verbergen */
.vmf-contact-page .com-contact__container > h2,
.vmf-contact-page .com-contact__form > h2,
.vmf-contact-page .com-contact__form > h3,
.vmf-contact-page .contact-form > h2,
.vmf-contact-page .contact-form > h3 {
    display: none !important;
}
/* VMF contactpagina – standaard Joomla-koppen verbergen */
.vmf-contact-page .com-contact__contact h2,
.vmf-contact-page .com-contact__container > h2,
.vmf-contact-page .com-contact__form > h2,
.vmf-contact-page .com-contact__form > h3,
.vmf-contact-page .contact-form > h2,
.vmf-contact-page .contact-form > h3,
.vmf-contact-page #contact-form > h2,
.vmf-contact-page #contact-form > h3 {
    display: none !important;
}
/* Verberg de twee Joomla-tussenkoppen op de VMF-contactpagina */
.vmf-contact-page h2 {
    display: none !important;
}

/* =========================================================
   VMF – OVER VMF-PAGINA
   Paginaklasse: vmf-over-page
   ========================================================= */

.vmf-over-page .article-details,
.vmf-over-page .com-content-article {
    margin: 0;
}

.vmf-over {
    --vmf-green: #0f766e;
    --vmf-green-dark: #084f4a;
    --vmf-green-soft: #e8f5f3;
    --vmf-lime: #cfff21;
    --vmf-dark: #18211f;
    --vmf-text: #3f4c49;
    --vmf-light: #f4f8f7;
    --vmf-border: #dce7e4;

    color: var(--vmf-text);
    font-size: 16px;
    line-height: 1.7;
}

.vmf-over *,
.vmf-over *::before,
.vmf-over *::after {
    box-sizing: border-box;
}

.vmf-over h2,
.vmf-over h3,
.vmf-over p {
    margin-top: 0;
}

.vmf-over h2,
.vmf-over h3 {
    color: var(--vmf-dark);
    line-height: 1.18;
}

.vmf-over h2 {
    margin-bottom: 22px;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
}

.vmf-over h3 {
    margin-bottom: 14px;
    font-size: 22px;
    font-weight: 750;
}

.vmf-over p:last-child {
    margin-bottom: 0;
}

.vmf-over .vmf-section {
    padding: 85px 0;
}

.vmf-over .vmf-section-label {
    display: block;
    margin-bottom: 13px;
    color: var(--vmf-green);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.6px;
    line-height: 1.4;
    text-transform: uppercase;
}

.vmf-over .vmf-label-light {
    color: var(--vmf-lime);
}

/* =========================================================
   KNOPPEN EN LINKS
   ========================================================= */

.vmf-over .vmf-button-row {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.vmf-over .vmf-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 23px;
    border: 2px solid transparent;
    border-radius: 999px;
    font-weight: 750;
    line-height: 1.2;
    text-decoration: none;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vmf-over .vmf-button:hover {
    text-decoration: none;
    transform: translateY(-2px);
}

.vmf-over .vmf-button-primary {
    color: var(--vmf-dark);
    background: var(--vmf-lime);
    box-shadow: 0 8px 20px rgba(115, 150, 0, 0.18);
}

.vmf-over .vmf-button-primary:hover {
    color: var(--vmf-dark);
    background: #dcff61;
    box-shadow: 0 11px 25px rgba(115, 150, 0, 0.24);
}

.vmf-over .vmf-button-secondary {
    color: var(--vmf-green-dark);
    background: #ffffff;
    border-color: rgba(15, 118, 110, 0.42);
}

.vmf-over .vmf-button-secondary:hover {
    color: #ffffff;
    background: var(--vmf-green);
    border-color: var(--vmf-green);
}

.vmf-over .vmf-text-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-top: 16px;
    color: var(--vmf-green-dark);
    font-weight: 800;
    text-decoration: none;
}

.vmf-over .vmf-text-link:hover {
    color: var(--vmf-green);
    gap: 13px;
    text-decoration: none;
}

/* =========================================================
   HERO
   ========================================================= */

.vmf-over .vmf-over-hero {
    position: relative;
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.75fr);
    gap: 50px;
    align-items: center;
    overflow: hidden;
    padding: 70px 65px;
    background:
        radial-gradient(
            circle at 90% 10%,
            rgba(207, 255, 33, 0.16),
            transparent 31%
        ),
        linear-gradient(135deg, #083f3b 0%, #0f766e 100%);
    border-radius: 24px;
    box-shadow: 0 20px 48px rgba(8, 79, 74, 0.18);
}

.vmf-over .vmf-over-hero::after {
    position: absolute;
    right: -90px;
    bottom: -110px;
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.055);
    border-radius: 50%;
    content: "";
}

.vmf-over .vmf-over-hero-content,
.vmf-over .vmf-over-quote {
    position: relative;
    z-index: 1;
}

.vmf-over .vmf-over-hero .vmf-section-label {
    color: var(--vmf-lime);
}

.vmf-over .vmf-over-hero h2 {
    margin-bottom: 23px;
    color: #ffffff;
    font-size: clamp(38px, 5vw, 62px);
    line-height: 1.03;
}

.vmf-over .vmf-over-hero h2 span {
    color: var(--vmf-lime);
}

.vmf-over .vmf-over-lead {
    max-width: 720px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 18px;
    line-height: 1.75;
}

.vmf-over .vmf-over-hero .vmf-button-secondary {
    color: #ffffff;
    background: transparent;
    border-color: rgba(255, 255, 255, 0.7);
}

.vmf-over .vmf-over-hero .vmf-button-secondary:hover {
    color: var(--vmf-green-dark);
    background: #ffffff;
    border-color: #ffffff;
}

.vmf-over .vmf-over-quote {
    padding: 35px 30px 30px;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.11);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 18px;
    backdrop-filter: blur(5px);
}

.vmf-over .vmf-over-quote-mark {
    display: block;
    height: 45px;
    color: var(--vmf-lime);
    font-family: Georgia, serif;
    font-size: 72px;
    line-height: 1;
}

.vmf-over .vmf-over-quote p {
    color: #ffffff;
    font-size: 19px;
    font-weight: 650;
    line-height: 1.55;
}

/* =========================================================
   INTRODUCTIE
   ========================================================= */

.vmf-over .vmf-over-intro-grid {
    display: grid;
    grid-template-columns: minmax(260px, 0.85fr) minmax(0, 1.15fr);
    gap: 80px;
    align-items: start;
}

.vmf-over .vmf-over-text {
    padding-left: 28px;
    border-left: 4px solid var(--vmf-lime);
}

.vmf-over .vmf-over-text p {
    margin-bottom: 18px;
    font-size: 17px;
}

/* =========================================================
   WERKING – KAARTEN
   ========================================================= */

.vmf-over .vmf-over-values {
    position: relative;
    padding-right: 42px;
    padding-left: 42px;
    background: var(--vmf-light);
    border-radius: 22px;
}

.vmf-over .vmf-section-heading {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.55fr);
    gap: 55px;
    align-items: end;
    margin-bottom: 42px;
}

.vmf-over .vmf-section-heading h2 {
    margin-bottom: 0;
}

.vmf-over .vmf-section-heading > p {
    margin-bottom: 6px;
    color: #53615e;
    font-size: 17px;
}

.vmf-over .vmf-over-card-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px;
}

.vmf-over .vmf-over-card {
    position: relative;
    padding: 34px 30px;
    overflow: hidden;
    background: #ffffff;
    border: 1px solid var(--vmf-border);
    border-radius: 17px;
    box-shadow: 0 9px 25px rgba(24, 33, 31, 0.055);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.vmf-over .vmf-over-card:hover {
    border-color: rgba(15, 118, 110, 0.35);
    box-shadow: 0 15px 34px rgba(24, 33, 31, 0.1);
    transform: translateY(-4px);
}

.vmf-over .vmf-over-card::before {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    height: 5px;
    background: var(--vmf-lime);
    content: "";
}

.vmf-over .vmf-over-card-number {
    margin-bottom: 26px;
    color: var(--vmf-green);
    font-size: 13px;
    font-weight: 850;
    letter-spacing: 1px;
}

.vmf-over .vmf-over-card p {
    color: #586460;
}

/* =========================================================
   CLUBONDERSTEUNING
   ========================================================= */

.vmf-over .vmf-over-clubs-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
    gap: 75px;
    align-items: center;
}

.vmf-over .vmf-over-clubs-heading > p {
    font-size: 17px;
}

.vmf-over .vmf-over-benefits {
    padding: 32px 34px;
    background: #ffffff;
    border: 1px solid var(--vmf-border);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(24, 33, 31, 0.07);
}

.vmf-over .vmf-over-benefits ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vmf-over .vmf-over-benefits li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    padding: 15px 0;
    border-bottom: 1px solid #e8efed;
}

.vmf-over .vmf-over-benefits li:first-child {
    padding-top: 0;
}

.vmf-over .vmf-over-benefits li:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.vmf-over .vmf-check {
    display: inline-flex;
    flex: 0 0 27px;
    align-items: center;
    justify-content: center;
    width: 27px;
    height: 27px;
    color: #ffffff;
    background: var(--vmf-green);
    border-radius: 50%;
    font-size: 14px;
    font-weight: 900;
}

/* =========================================================
   MOTORRIJDERS
   ========================================================= */

.vmf-over .vmf-over-riders {
    padding: 68px 55px;
    background:
        linear-gradient(
            90deg,
            rgba(232, 245, 243, 0.97),
            rgba(244, 248, 247, 0.82)
        );
    border-left: 7px solid var(--vmf-lime);
    border-radius: 0 20px 20px 0;
}

.vmf-over .vmf-over-riders-content {
    max-width: 850px;
}

.vmf-over .vmf-over-riders-content > p {
    font-size: 17px;
}

/* =========================================================
   DOELSTELLINGEN
   ========================================================= */

.vmf-over .vmf-over-goals {
    padding-right: 42px;
    padding-left: 42px;
}

.vmf-over .vmf-over-goals-heading {
    max-width: 760px;
    margin-bottom: 40px;
}

.vmf-over .vmf-over-goals-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.vmf-over .vmf-over-goal {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr);
    gap: 17px;
    align-items: center;
    min-height: 88px;
    padding: 18px 22px;
    background: #ffffff;
    border: 1px solid var(--vmf-border);
    border-radius: 13px;
}

.vmf-over .vmf-over-goal > span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 43px;
    height: 43px;
    color: var(--vmf-green-dark);
    background: var(--vmf-lime);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 850;
}

.vmf-over .vmf-over-goal p {
    margin: 0;
    color: var(--vmf-dark);
    font-weight: 650;
    line-height: 1.45;
}

/* =========================================================
   CONTACTBANNER
   ========================================================= */

.vmf-over .vmf-over-contact {
    padding-top: 35px;
    padding-bottom: 35px;
}

.vmf-over .vmf-over-contact-banner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 50px;
    align-items: center;
    padding: 48px 55px;
    background:
        radial-gradient(
            circle at 88% 18%,
            rgba(207, 255, 33, 0.15),
            transparent 30%
        ),
        var(--vmf-green-dark);
    border-radius: 21px;
    box-shadow: 0 16px 38px rgba(8, 79, 74, 0.18);
}

.vmf-over .vmf-over-contact-banner h2 {
    margin-bottom: 13px;
    color: #ffffff;
}

.vmf-over .vmf-over-contact-banner p {
    max-width: 760px;
    color: rgba(255, 255, 255, 0.84);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 991px) {
    .vmf-over .vmf-over-hero {
        grid-template-columns: 1fr;
        padding: 55px 42px;
    }

    .vmf-over .vmf-over-quote {
        max-width: 620px;
    }

    .vmf-over .vmf-over-intro-grid,
    .vmf-over .vmf-over-clubs-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .vmf-over .vmf-over-card-grid {
        grid-template-columns: 1fr;
    }

    .vmf-over .vmf-over-card {
        min-height: auto;
    }

    .vmf-over .vmf-section-heading {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* =========================================================
   MOBIEL
   ========================================================= */

@media (max-width: 767px) {
    .vmf-over {
        font-size: 15px;
    }

    .vmf-over .vmf-section {
        padding: 58px 0;
    }

    .vmf-over .vmf-over-hero {
        gap: 32px;
        padding: 40px 23px;
        border-radius: 16px;
    }

    .vmf-over .vmf-over-hero h2 {
        font-size: 38px;
    }

    .vmf-over .vmf-over-lead {
        font-size: 16px;
    }

    .vmf-over .vmf-button-row {
        flex-direction: column;
    }

    .vmf-over .vmf-button-row .vmf-button {
        width: 100%;
    }

    .vmf-over .vmf-over-quote {
        padding: 28px 23px 24px;
    }

    .vmf-over .vmf-over-intro-grid {
        gap: 22px;
    }

    .vmf-over .vmf-over-text {
        padding-left: 18px;
    }

    .vmf-over .vmf-over-values,
    .vmf-over .vmf-over-goals {
        padding-right: 20px;
        padding-left: 20px;
    }

    .vmf-over .vmf-over-values {
        border-radius: 15px;
    }

    .vmf-over .vmf-over-card {
        padding: 30px 23px;
    }

    .vmf-over .vmf-over-clubs-grid {
        gap: 28px;
    }

    .vmf-over .vmf-over-benefits {
        padding: 26px 21px;
    }

    .vmf-over .vmf-over-riders {
        padding: 45px 23px;
        border-left-width: 5px;
        border-radius: 0 15px 15px 0;
    }

    .vmf-over .vmf-over-goals-grid {
        grid-template-columns: 1fr;
    }

    .vmf-over .vmf-over-goal {
        grid-template-columns: 43px minmax(0, 1fr);
        padding: 17px;
    }

    .vmf-over .vmf-over-contact {
        padding-top: 20px;
    }

    .vmf-over .vmf-over-contact-banner {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 39px 24px;
        border-radius: 16px;
    }

    .vmf-over .vmf-over-contact-banner .vmf-button {
        width: 100%;
    }
}

/* =========================================================
   VMF – ALGEMENE FOOTER
   Modulepositie: bottom1
   ========================================================= */

/* Standaardruimte van de Helix Bottom-sectie verwijderen */
#sp-bottom {
    padding: 0;
    background: #073f3c;
}

#sp-bottom .container,
#sp-bottom .container-fluid {
    max-width: none;
    padding-right: 0;
    padding-left: 0;
}

#sp-bottom .row {
    margin-right: 0;
    margin-left: 0;
}

#sp-bottom [class*="col-"],
#sp-bottom .sp-module,
#sp-bottom .sp-module-content,
#sp-bottom .custom {
    padding-right: 0;
    padding-left: 0;
}

#sp-bottom .sp-module {
    margin: 0;
}

/* =========================================================
   BASIS
   ========================================================= */

.vmf-site-footer {
    --vmf-footer-green: #0f766e;
    --vmf-footer-dark: #073f3c;
    --vmf-footer-darker: #052f2d;
    --vmf-footer-lime: #cfff21;
    --vmf-footer-text: rgba(255, 255, 255, 0.76);
    --vmf-footer-border: rgba(255, 255, 255, 0.12);

    width: 100%;
    color: var(--vmf-footer-text);
    background: var(--vmf-footer-dark);
    font-size: 15px;
    line-height: 1.65;
}

.vmf-site-footer *,
.vmf-site-footer *::before,
.vmf-site-footer *::after {
    box-sizing: border-box;
}

.vmf-site-footer p,
.vmf-site-footer h2 {
    margin-top: 0;
}

.vmf-site-footer a {
    text-decoration: none;
}

/* =========================================================
   HOOFDGEDEELTE
   ========================================================= */

.vmf-footer-main {
    position: relative;
    overflow: hidden;
    padding: 70px max(24px, calc((100vw - 1320px) / 2));
    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(207, 255, 33, 0.08),
            transparent 25%
        ),
        linear-gradient(135deg, #073f3c 0%, #0a514d 100%);
}

.vmf-footer-main::after {
    position: absolute;
    right: -130px;
    bottom: -180px;
    width: 390px;
    height: 390px;
    background: rgba(255, 255, 255, 0.035);
    border-radius: 50%;
    content: "";
    pointer-events: none;
}

.vmf-footer-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns:
        minmax(260px, 1.45fr)
        minmax(150px, 0.65fr)
        minmax(170px, 0.75fr)
        minmax(240px, 1fr);
    gap: 55px;
    width: 100%;
    max-width: 1320px;
    margin: 0 auto;
    align-items: start;
}

/* =========================================================
   LOGO EN OMSCHRIJVING
   ========================================================= */

.vmf-footer-brand {
    max-width: 350px;
}

.vmf-footer-logo-link {
    display: inline-block;
    margin-bottom: 22px;
}

.vmf-footer-logo {
    display: block;
    width: auto;
    max-width: 210px;
    height: auto;
    max-height: 105px;
    object-fit: contain;
    object-position: left center;
}

.vmf-footer-brand p {
    max-width: 330px;
    margin-bottom: 0;
    color: var(--vmf-footer-text);
    font-size: 15px;
}

/* =========================================================
   KOLOMMEN EN LINKS
   ========================================================= */

.vmf-footer-column h2 {
    position: relative;
    margin-bottom: 25px;
    padding-bottom: 13px;
    color: #ffffff;
    font-size: 17px;
    font-weight: 800;
    line-height: 1.3;
}

.vmf-footer-column h2::after {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 38px;
    height: 3px;
    background: var(--vmf-footer-lime);
    border-radius: 999px;
    content: "";
}

.vmf-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.vmf-footer-column li {
    margin-bottom: 11px;
}

.vmf-footer-column li:last-child {
    margin-bottom: 0;
}

.vmf-footer-column li a {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: var(--vmf-footer-text);
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.vmf-footer-column li a::before {
    width: 0;
    height: 2px;
    margin-right: 0;
    overflow: hidden;
    background: var(--vmf-footer-lime);
    content: "";
    transition:
        width 0.2s ease,
        margin-right 0.2s ease;
}

.vmf-footer-column li a:hover,
.vmf-footer-column li a:focus-visible {
    color: #ffffff;
    transform: translateX(3px);
}

.vmf-footer-column li a:hover::before,
.vmf-footer-column li a:focus-visible::before {
    width: 13px;
    margin-right: 8px;
}

/* =========================================================
   CONTACT
   ========================================================= */

.vmf-footer-contact p {
    margin-bottom: 17px;
    color: var(--vmf-footer-text);
}

.vmf-footer-email {
    display: inline-block;
    margin-bottom: 22px;
    color: #ffffff;
    font-weight: 750;
    word-break: break-word;
}

.vmf-footer-email:hover,
.vmf-footer-email:focus-visible {
    color: var(--vmf-footer-lime);
}

.vmf-footer-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 11px 21px;
    color: #17201e;
    background: var(--vmf-footer-lime);
    border: 2px solid var(--vmf-footer-lime);
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.16);
    font-weight: 800;
    line-height: 1.2;
    transition:
        background-color 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vmf-footer-button:hover,
.vmf-footer-button:focus-visible {
    color: #17201e;
    background: #ddff62;
    border-color: #ddff62;
    box-shadow: 0 11px 27px rgba(0, 0, 0, 0.22);
    transform: translateY(-2px);
}

/* =========================================================
   ONDERSTE BALK
   ========================================================= */

.vmf-footer-bottom {
    display: flex;
    gap: 30px;
    align-items: center;
    justify-content: space-between;
    padding: 19px max(24px, calc((100vw - 1320px) / 2));
    color: rgba(255, 255, 255, 0.6);
    background: var(--vmf-footer-darker);
    border-top: 1px solid var(--vmf-footer-border);
    font-size: 13px;
}

.vmf-footer-bottom p {
    margin: 0;
}

.vmf-footer-credit {
    text-align: right;
}

/* =========================================================
   TOEGANKELIJKHEID
   ========================================================= */

.vmf-site-footer a:focus-visible {
    outline: 3px solid var(--vmf-footer-lime);
    outline-offset: 4px;
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
    .vmf-footer-grid {
        grid-template-columns: 1.25fr 0.75fr 0.85fr;
        gap: 45px;
    }

    .vmf-footer-contact {
        grid-column: 1 / -1;
        max-width: 600px;
        padding-top: 12px;
    }
}

@media (max-width: 850px) {
    .vmf-footer-main {
        padding-top: 58px;
        padding-bottom: 58px;
    }

    .vmf-footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 45px 50px;
    }

    .vmf-footer-brand {
        grid-column: 1 / -1;
        max-width: 500px;
    }

    .vmf-footer-contact {
        grid-column: auto;
        padding-top: 0;
    }
}

/* =========================================================
   MOBIEL
   ========================================================= */

@media (max-width: 600px) {
    .vmf-footer-main {
        padding: 48px 22px;
    }

    .vmf-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .vmf-footer-brand,
    .vmf-footer-contact {
        grid-column: auto;
    }

    .vmf-footer-logo {
        max-width: 175px;
        max-height: 90px;
    }

    .vmf-footer-column h2 {
        margin-bottom: 19px;
    }

    .vmf-footer-button {
        width: 100%;
    }

    .vmf-footer-bottom {
        flex-direction: column;
        gap: 7px;
        align-items: flex-start;
        padding: 20px 22px;
    }

    .vmf-footer-credit {
        text-align: left;
    }
}

/* VMF-footerlogo beter zichtbaar op donkere achtergrond */
.vmf-footer-logo {
    filter: brightness(0) invert(1);
    opacity: 0.92;
}
/* =========================================================
   VMF - ADMINISTRATIEBALK
   Alleen zichtbaar voor VMF-beheerders
   ========================================================= */

.vmf-adminbar {
    margin: 14px 0 24px;
    padding: 12px 16px;
    background: #073f36;
    border-left: 5px solid #cfff2e;
    border-radius: 10px;
    box-shadow: 0 5px 16px rgba(7, 63, 54, 0.14);
}

/* Standaard opsomming verwijderen */
.vmf-adminbar ul {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

/* Hoofditem laten fungeren als container */
.vmf-adminbar > ul > li {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0;
}

/* Tekst 'Websitebeheer' binnen het menu verbergen */
.vmf-adminbar > ul > li > .menu-heading,
.vmf-adminbar > ul > li > a:first-child {
    display: none;
}

/* Submenu horizontaal weergeven */
.vmf-adminbar ul ul {
    position: static !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    transform: none !important;
    width: auto !important;
    min-width: 0 !important;
    background: transparent;
    box-shadow: none;
}

/* Beheerknoppen */
.vmf-adminbar ul ul li {
    margin: 0;
    padding: 0;
}

.vmf-adminbar ul ul li a {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 8px 13px;
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.09);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 7px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none !important;
    transition: background-color 0.2s ease, color 0.2s ease;
}

.vmf-adminbar ul ul li a:hover,
.vmf-adminbar ul ul li a:focus {
    color: #073f36 !important;
    background: #cfff2e;
    border-color: #cfff2e;
}

/* Smartphone */
@media (max-width: 767px) {
    .vmf-adminbar {
        margin: 10px 12px 18px;
        padding: 10px;
    }

    .vmf-adminbar ul,
    .vmf-adminbar > ul > li,
    .vmf-adminbar ul ul {
        width: 100% !important;
        gap: 6px;
    }

    .vmf-adminbar ul ul li {
        flex: 1 1 calc(50% - 6px);
    }

    .vmf-adminbar ul ul li a {
        justify-content: center;
        width: 100%;
        min-height: 42px;
        padding: 8px;
        text-align: center;
        font-size: 12px;
    }
}