:root {
    --green-900: #0b4227;
    --green-800: #0d5a34;
    --green-700: #147244;
    --green-100: #edf6ef;
    --cream-100: #fbf7ef;
    --gold-500: #bf8a2f;
    --ink-900: #1b211d;
    --ink-700: #4a554d;
    --line-soft: rgba(11, 66, 39, 0.10);
    --shadow-soft: 0 18px 45px rgba(15, 39, 23, 0.10);
    --shadow-deep: 0 28px 80px rgba(12, 39, 24, 0.18);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: "Manrope", Arial, Helvetica, sans-serif;
    color: var(--ink-900);
    background:
        radial-gradient(circle at top, rgba(191, 138, 47, 0.08), transparent 24%),
        linear-gradient(180deg, #f8f4eb 0%, #fbfaf6 28%, #f3f7f2 100%);
    overflow-x: hidden;
}

body.nav-open {
    overflow: hidden;
}

.navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    padding: 0 28px;
    min-height: 78px;
    border-bottom: 1px solid rgba(11, 66, 39, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 10px 30px rgba(14, 33, 21, 0.06);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 8px;
    border: none;
    background: transparent;
    cursor: pointer;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--green-800);
    border-radius: 999px;
}

.logo img {
    height: 54px;
    width: auto;
    filter: drop-shadow(0 8px 14px rgba(11, 66, 39, 0.12));
}

.menu {
    list-style: none;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 25px;
    margin: 0;
    padding: 0;
}

.menu li {
    position: relative;
    padding: 10px 0
}

.menu a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    color: var(--ink-900);
    font-weight: 700;
    font-size: 15px;
    letter-spacing: 0.01em;
    padding-bottom: 10px;
    transition: color 0.2s ease;
}

.menu > li > a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 2px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--green-700), var(--gold-500));
    transition: width 0.2s ease;
}

.menu > li:hover > a,
.menu > li:focus-within > a {
    color: var(--green-800);
}

.menu > li:hover > a::after,
.menu > li:focus-within > a::after {
    width: 100%;
}

.dropdown {
    position: relative;
}

.dropdown:hover .submenu,
.dropdown:focus-within .submenu {
    display: block;
}

.dropdown::after {
    content: "";
    position: absolute;
    left: 0;
    top: 100%;
    width: 100%;
    height: 14px;
}

.submenu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    list-style: none;
    background: rgba(255, 255, 255, 0.98);
    border: 1px solid rgba(11, 66, 39, 0.08);
    border-radius: 18px;
    padding: 10px 8px;
    min-width: 180px;
    z-index: 1001;
    box-shadow: var(--shadow-soft);
}

.submenu li {
    padding: 0;
}

.submenu li a {
    display: block;
    color: var(--ink-900);
    border-radius: 12px;
    padding: 10px 14px;
    width: 100%;
}

.submenu li a:hover {
    background: var(--green-100);
    color: var(--green-800);
}

.search {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search form {
    display: flex;
    align-items: center;
    gap: 5px;
}

.search input {
    padding: 11px 14px;
    max-width: 180px;
    border-radius: 999px;
    border: 1px solid rgba(11, 66, 39, 0.12);
    background: rgba(247, 249, 245, 0.95);
    font: inherit;
}

.search button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
    color: white;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(11, 66, 39, 0.18);
}

.content {
    padding: 40px;
}

.footer {
    text-align: center;
    padding: 20px;
    border-top: 1px solid #bbb;
}

/* HERO / BANNER */

.hero {
    min-height: 500px;

    background-image: url('../images/site/voorpagina.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* dit is het "blijft staan" effect */

    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* GROENE OVERLAY */
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at top, rgba(220, 181, 106, 0.18), transparent 30%),
        linear-gradient(180deg, rgba(11, 66, 39, 0.48) 0%, rgba(11, 66, 39, 0.68) 100%);
}

/* Tekst boven de overlay */
.hero-text {
    position: relative;
    color: white;
    z-index: 1;
    max-width: 760px;
    padding: 40px 44px;
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.14);
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-deep);
}

.hero-text h1 {
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(42px, 6vw, 66px);
    margin-bottom: 12px;
    line-height: 1.02;
}

.hero-text p {
    font-size: clamp(18px, 3vw, 22px);
    color: rgba(255, 255, 255, 0.88);
}

/* HEADER SECTIE */

/* TEKST SECTIE */

.home-section {
    padding: 60px 20px;
    display: flex;
    justify-content: center;
}

.container {
    max-width: 900px;
    text-align: center;
}


/* BLOKKEN ONDERAAN */

.home-cards {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 20px;
}

.card {
    width: 250px;
    height: 150px;
    border: 1px solid #ddd;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    background-color: #fafafa;
}

.home-icons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: stretch;
    gap: 60px;

    margin-top: -44px;
    margin-bottom: 0;
    padding: 150px 20px 100px 20px;

    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(251, 248, 242, 0.98) 100%);
    border-radius: 44px;
    border: 1px solid rgba(255,255,255,0.7);
    box-shadow: var(--shadow-deep);
    text-align: center;
    position: relative;
    z-index: 2;
}


.icon-block {
    flex: 1 1 220px;
    max-width: 250px;
    padding: 18px 18px 10px;
    border-radius: 28px;
    transition: transform 0.25s ease, background 0.25s ease;
}

.icon-block:hover {
    transform: translateY(-4px);
    background: rgba(237, 246, 239, 0.7);
}

.icon-circle {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    background:
        radial-gradient(circle at 30% 30%, rgba(255,255,255,0.15), transparent 28%),
        linear-gradient(135deg, var(--green-700), var(--green-900));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    transition: 0.3s ease;
    text-decoration: none;
}

.icon-circle i {
    color: white;
    font-size: 40px;
}

.icon-circle:hover {
    transform: scale(1.1);
    box-shadow: 0 16px 26px rgba(0,0,0,0.18);
}

.icon-block h3 {
    margin-bottom: 10px;
    color: var(--green-900);
    font-size: 1.9rem;
    font-family: "Fraunces", Georgia, serif;
}

.icon-block p {
    color: var(--ink-700);
    line-height: 1.5;
}

.sponsors {
    position: relative;
    margin: -44px 0 0 0;
    padding: 124px 0 80px 0;

    background-image: url('../images/site/voorpagina.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;

    overflow: hidden;
}

/* groene overlay zoals bovenaan */
.sponsors::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(0, 80, 0, 0.55);
    z-index: 0;
}

.sponsor-window {
    position: relative;
    z-index: 1;
    overflow: hidden;
    max-width: 1000px;
    margin: 0 auto;
}

.sponsor-track {
    display: flex;
    gap: 40px;
    transition: transform 0.8s ease;
}

.sponsor-track img {
    width: calc((100% - 80px) / 3);
    height: 120px;
    object-fit: contain;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.96);
    padding: 15px;
    border-radius: 22px;
    box-shadow: 0 16px 30px rgba(9, 32, 20, 0.12);
}

/* FOOTER STYLES */
footer{
    background:
        linear-gradient(180deg, rgba(251, 247, 239, 0.6) 0%, rgba(231, 240, 233, 0.4) 100%),
        #f4efe2;
    border-top: 1px solid rgba(11, 66, 39, 0.08);
}
.footerContainer{
    width: 100%;
    padding: 70px 30px 24px;
}
.footerTop{
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}
.footerBrand{
    display: flex;
    align-items: center;
    gap: 18px;
    max-width: 460px;
}
.footerBrand img{
    width: 86px;
    height: 86px;
    object-fit: contain;
    border-radius: 22px;
    background: rgba(255,255,255,0.68);
    padding: 10px;
    box-shadow: 0 12px 24px rgba(11, 66, 39, 0.10);
}
.footerBrandText h3{
    margin: 0 0 8px;
    color: var(--green-900);
    font-family: "Fraunces", Georgia, serif;
    font-size: 1.8rem;
}
.footerBrandText p{
    margin: 0;
    color: var(--ink-700);
    line-height: 1.6;
}
.footerLinksWrap{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
.socialIcons{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.socialIcons a{
    text-decoration: none;
    width: 56px;
    height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
    margin: 10px 0;
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(11, 66, 39, 0.18);
}
.socialIcons a i{
    font-size: 1.4em;
    color: white;
}
.socialIcons a:hover{
    background: white;
    transform: translateY(-2px);
    transition: 0.3s;
}
.socialIcons a:hover i{
    color: var(--green-800);
    transition: 0.3s;
}
.footerNav{
    margin: 0 0 20px;
}
.footerNav ul{
    display: flex;
    justify-content: center;
    gap: 12px 20px;
    flex-wrap: wrap;
    list-style-type: none;
}
.footerNav ul li a{
    color: var(--ink-900);
    margin: 0;
    text-decoration: none;
    font-size: 1rem;
    font-weight: 700;
    opacity: 0.82;
    transition: 0.25s;

}
.footerNav ul li a:hover{
    opacity: 1;
    color: var(--green-800);
}
.footerBottom{
    background:
        linear-gradient(90deg, var(--green-900) 0%, var(--green-800) 65%, #125431 100%);
    padding: 22px;
    text-align: center;
}
.footerLegal{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 30px;
    margin-bottom: 14px;
}
.footerLegal p{
    margin: 0;
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
}
.footerLegal strong{
    color: white;
}
.footerBottom p{
    margin: 0;
    color: white;
}
.designer{
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 400;
    margin: 0px 5px;
}
@media (max-width: 700px){
    .footerTop{
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }
    .footerBrand{
        align-items: flex-start;
    }
    .footerLinksWrap{
        width: 100%;
        align-items: flex-start;
    }
    .footerNav ul{
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: flex-start;
    } 
    .footerNav ul li{
        width:auto;
        text-align: left;
        margin: 6px 10px 6px 0;
    }
    .socialIcons a{
        padding: 8px;
        margin: 4px;
    }
    .footerLegal{
        flex-direction: column;
        gap: 6px;
    }
}
/* END FOOTER STYLES */

/* begin vereniging */
.page {
    background:
        radial-gradient(circle at top left, rgba(220, 181, 106, 0.26), transparent 28%),
        radial-gradient(circle at top right, rgba(20, 114, 68, 0.16), transparent 24%),
        linear-gradient(180deg, #f7efdf 0%, #edf6ef 100%);
}

.page-hero {
    position: relative;
    overflow: hidden;
    background:
        radial-gradient(circle at top right, rgba(255, 221, 152, 0.42), transparent 24%),
        radial-gradient(circle at bottom left, rgba(255,255,255,0.20), transparent 30%),
        linear-gradient(135deg, #062c1a 0%, #0d5a34 52%, #199457 100%);
    color: white;
    padding: 74px 20px 88px;
    text-align: center;
}

.page-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 -1px;
    height: 16px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 214, 128, 0.9) 20%, rgba(255,255,255,0.55) 50%, rgba(255, 214, 128, 0.9) 80%, transparent 100%);
}

.page-hero h1,
.page-content h2,
.history-entry-top h3,
.iere-item h2,
.ieregallerij-item h2,
.programma-content h3 {
    font-family: "Fraunces", Georgia, serif;
}

.page-content {
    max-width: 1000px;
    margin: -34px auto 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(8px);
    padding: 60px;
    border-radius: 34px 34px 0 0;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: var(--shadow-soft);
}

.page-content h2 {
    margin-top: 50px;
    color: var(--green-800);
}

.page-content p {
    line-height: 1.7;
    margin-bottom: 15px;
    color: var(--ink-700);
}

.page-content ul {
    margin-left: 20px;
}

.page-content table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.page-content table td {
    padding: 10px;
    border-bottom: 1px solid rgba(11, 66, 39, 0.10);
}

.columns {
    columns: 2;
}
/* einde vereniging */

.history-entry,
.hoeglostigheid-image-wrap,
.markies-image-wrap,
.ieregallerij-item,
.fotopaasj-image-wrap,
.lyrics-card,
.disclaimer-card,
.contact-card,
.contact-person,
.programma-item,
.programma-empty {
    box-shadow: 0 16px 34px rgba(10, 92, 47, 0.10);
    border: 1px solid rgba(11, 66, 39, 0.08);
}

.history-entry,
.ieregallerij-item,
.programma-item {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(243, 247, 242, 0.96) 100%);
}

.hoeglostigheid-card h2,
.markies-card h2,
.lyrics-card h3,
.disclaimer-card h3,
.contact-card h3,
.contact-person h3,
.programma-intro h2,
.contact-intro h2,
.clubleedsje-intro h2,
.disclaimer-intro h2 {
    font-family: "Fraunces", Georgia, serif;
}

/* begin gesjiedenis */
.timeline {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.timeline-item {
    padding: 25px;
    border-left: 5px solid #0a5c2f;
    background: #f9f9f9;
}

.timeline-item h3 {
    margin-bottom: 10px;
    color: #0a5c2f;
}
/* einde gesjiedenis */

.history-page {
    background:
        radial-gradient(circle at top left, rgba(191, 138, 47, 0.14), transparent 28%),
        linear-gradient(180deg, #f7f1e6 0%, #f4f6ef 46%, #eef5ef 100%);
}

.history-content {
    display: flex;
    flex-direction: column;
    gap: 42px;
}

.history-section-header p {
    max-width: 700px;
    margin: 10px 0 0;
    color: #4d5a4f;
    line-height: 1.7;
}

.history-strip-wrap {
    position: sticky;
    top: 108px;
    z-index: 15;
    margin: 10px 0 32px;
    padding: 16px 18px;
    border-radius: 28px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(244, 247, 239, 0.72)),
        linear-gradient(180deg, rgba(11, 66, 39, 0.08), rgba(191, 138, 47, 0.06));
    border: 1px solid rgba(11, 66, 39, 0.10);
    backdrop-filter: blur(14px);
    box-shadow: 0 22px 44px rgba(13, 47, 27, 0.12);
}

.history-strip {
    display: flex;
    align-items: center;
    gap: 16px;
}

.history-viewport {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    border-bottom: 1px solid rgba(11, 66, 39, 0.16);
    mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%);
    scrollbar-width: none;
}

.history-viewport::-webkit-scrollbar {
    display: none;
}

.history-years {
    display: flex;
    align-items: flex-end;
    gap: 14px;
    width: max-content;
    padding: 0 18px 18px;
}

.history-year {
    position: relative;
    min-width: clamp(150px, 18vw, 220px);
    padding: 0;
    border: none;
    background: transparent;
    color: rgba(11, 66, 39, 0.34);
    font-family: "Fraunces", Georgia, serif;
    font-size: clamp(42px, 6vw, 84px);
    font-weight: 700;
    line-height: 0.95;
    cursor: pointer;
    opacity: 0.55;
    transform: scale(0.88);
    transform-origin: center bottom;
    transition: color 0.26s ease, opacity 0.26s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
}

.history-year::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -25px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    transform: translateX(-50%);
    background: rgba(11, 66, 39, 0.28);
    box-shadow: 0 0 0 5px rgba(11, 66, 39, 0.10);
}

.history-year:hover {
    color: rgba(11, 66, 39, 0.72);
}

.history-year.is-near {
    opacity: 0.76;
    transform: scale(0.95);
}

.history-year.is-active {
    color: var(--green-800);
    opacity: 1;
    transform: scale(1);
}

.history-year.is-active::after {
    background: var(--gold-500);
    box-shadow: 0 0 0 5px rgba(191, 138, 47, 0.18);
}

.history-arrow {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    border: 1px solid rgba(11, 66, 39, 0.16);
    background: rgba(255, 255, 255, 0.88);
    color: var(--green-800);
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, opacity 0.18s ease, background-color 0.18s ease;
}

.history-arrow:hover:not(:disabled) {
    transform: translateY(-1px);
    background: white;
    box-shadow: 0 10px 20px rgba(11, 66, 39, 0.14);
}

.history-arrow:disabled {
    opacity: 0.35;
    cursor: not-allowed;
}

.history-stack {
    display: grid;
    gap: 28px;
}

.history-entry {
    scroll-margin-top: 240px;
    opacity: 0;
    transform: translateY(34px);
    transition: opacity 0.42s ease, transform 0.52s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.22s ease, border-color 0.22s ease;
}

.history-entry.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.history-entry-shell {
    padding: 30px;
    border-radius: 28px;
    border: 1px solid rgba(11, 66, 39, 0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(243, 247, 242, 0.98) 100%);
    box-shadow: 0 16px 34px rgba(10, 92, 47, 0.10);
}

.history-entry.is-active .history-entry-shell {
    border-color: rgba(191, 138, 47, 0.32);
    box-shadow: 0 24px 54px rgba(12, 47, 27, 0.15);
}

.history-entry-top {
    margin-bottom: 20px;
}

.history-entry-year {
    display: inline-block;
    margin: 0 0 10px;
    color: var(--gold-500);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.history-entry-section {
    display: inline-block;
    margin-bottom: 12px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(11, 66, 39, 0.08);
    color: var(--green-800);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.history-entry-top h3 {
    margin: 0;
    color: var(--green-800);
    font-size: clamp(28px, 3.3vw, 44px);
    line-height: 1.06;
}

.history-entry-body p,
.history-entry-body h4 {
    margin: 0 0 16px;
}

.history-entry-body p {
    color: #223126;
    line-height: 1.82;
}

.history-entry-body h4 {
    margin-top: 26px;
    color: var(--green-800);
    font-size: 18px;
    line-height: 1.4;
}

.error-page {
    background:
        radial-gradient(circle at top left, rgba(191, 138, 47, 0.14), transparent 24%),
        linear-gradient(180deg, #f8f4eb 0%, #f3f7f2 100%);
}

.error-content {
    display: flex;
    justify-content: center;
}

.error-shell {
    width: min(760px, 100%);
    padding: clamp(28px, 5vw, 46px);
    border-radius: 30px;
    border: 1px solid rgba(11, 66, 39, 0.10);
    background:
        linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(243, 247, 242, 0.96) 100%);
    box-shadow: 0 24px 52px rgba(12, 47, 27, 0.12);
    text-align: center;
}

.error-kicker {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(11, 66, 39, 0.08);
    color: var(--green-800);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.10em;
    text-transform: uppercase;
}

.error-shell h2 {
    margin: 0 0 14px;
    color: var(--green-800);
    font-size: clamp(28px, 4vw, 44px);
    line-height: 1.08;
    font-family: "Fraunces", Georgia, serif;
}

.error-shell p {
    max-width: 56ch;
    margin: 0 auto;
    color: var(--ink-700);
    line-height: 1.8;
}

.error-actions {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.error-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 180px;
    padding: 14px 20px;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 800;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.error-button.primary {
    background: linear-gradient(135deg, var(--green-700), var(--green-900));
    color: white;
    box-shadow: 0 14px 26px rgba(11, 66, 39, 0.18);
}

.error-button.secondary {
    border: 1px solid rgba(11, 66, 39, 0.14);
    background: white;
    color: var(--green-800);
}

.error-button:hover {
    transform: translateY(-1px);
}

.error-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 14px 18px;
    margin-top: 28px;
}

.error-links a {
    color: var(--green-800);
    font-weight: 700;
    text-decoration: none;
}

.error-links a:hover {
    color: var(--gold-500);
}

@media (max-width: 980px) {
    .history-strip-wrap {
        top: 92px;
    }
}

@media (max-width: 720px) {
    .history-content {
        gap: 34px;
    }

    .history-strip-wrap {
        top: 84px;
        padding: 12px 12px 14px;
        border-radius: 22px;
    }

    .history-strip {
        gap: 10px;
    }

    .history-arrow {
        width: 40px;
        height: 40px;
        font-size: 24px;
    }

    .history-year {
        min-width: 110px;
        font-size: clamp(32px, 12vw, 52px);
    }

    .history-entry-shell {
        padding: 22px 18px;
        border-radius: 20px;
    }

    .error-shell {
        border-radius: 22px;
        text-align: left;
    }

    .error-actions,
    .error-links {
        justify-content: flex-start;
    }

    .error-shell p {
        margin-left: 0;
    }
}

/* logo smv */
.smv-page .page-content {
    margin-top: 24px;
    border-radius: 34px;
}

.page-logo {
    text-align: center;
    margin-top: 40px;
    position: relative;
    z-index: 2;
}

.page-logo img {
    max-width: 200px;
    height: auto;
    filter: drop-shadow(0 14px 24px rgba(11, 66, 39, 0.16));
}
/* einde logo smv */

/* begin hoeglostigheid */
.hoeglostigheid-page {
    padding-top: 40px;
}

.hoeglostigheid-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 56px;
    align-items: stretch;
}

.hoeglostigheid-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.hoeglostigheid-card h2 {
    margin: 0 0 14px;
    color: #0a5c2f;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
    min-height: 2.4em;
}

.hoeglostigheid-image-wrap {
    display: flex;
    flex: 1;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    border-radius: 18px;
    padding: 18px;
    min-height: 560px;
    background: linear-gradient(180deg, #f8faf7 0%, #eef2ec 100%);
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 16px 34px rgba(10, 92, 47, 0.10);
}

.hoeglostigheid-image-wrap img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 520px;
    object-fit: contain;
    object-position: center;
    border-radius: 12px;
    background: white;
}

.hoeglostigheid-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 520px;
    padding: 20px;
    color: #4d5a4f;
    text-align: center;
    border-radius: 12px;
    background: white;
}

@media (max-width: 780px) {
    .hoeglostigheid-grid {
        grid-template-columns: 1fr;
        gap: 34px;
    }

    .hoeglostigheid-image-wrap {
        min-height: 380px;
        padding: 14px;
    }

    .hoeglostigheid-image-wrap img,
    .hoeglostigheid-placeholder {
        max-height: 350px;
        min-height: 350px;
    }
}
/* einde hoeglostigheid */

/* begin markiezengallerij */
.markiezen-page {
    padding-top: 30px;
}

.markiezen-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 22px;
}

.markies-card h2 {
    margin: 12px 0 0;
    color: #0a5c2f;
    font-size: 18px;
    line-height: 1.35;
    text-align: center;
}

.markies-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    padding: 12px;
    border-radius: 16px;
    background: linear-gradient(180deg, #f9fbf8 0%, #eef2ec 100%);
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 12px 24px rgba(10, 92, 47, 0.08);
}

.markies-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
    background: white;
}

.markies-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    background: white;
    color: #4d5a4f;
    text-align: center;
}

@media (max-width: 1200px) {
    .markiezen-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
}

@media (max-width: 980px) {
    .markiezen-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 700px) {
    .markiezen-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 460px) {
    .markiezen-grid {
        grid-template-columns: 1fr;
    }
}
/* einde markiezengallerij */

/* begin ieremedaalje */
.iere-page {
    padding-top: 20px;
}

.iere-list {
    display: flex;
    flex-direction: column;
    gap: 54px;
}

.iere-item {
    text-align: center;
}

.iere-item h2 {
    margin: 0 0 22px;
    color: #1f9a4e;
    font-size: clamp(34px, 4vw, 56px);
    line-height: 1.1;
    font-weight: 700;
}

.iere-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 980px;
    margin: 0 auto;
    padding: 10px;
}

.iere-image-wrap img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 760px;
    object-fit: contain;
}

.iere-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: min(980px, 100%);
    min-height: 420px;
    background: #f1f1f1;
    color: #4d5a4f;
}

@media (max-width: 780px) {
    .iere-list {
        gap: 38px;
    }

    .iere-item h2 {
        font-size: clamp(26px, 8vw, 42px);
    }
}
/* einde ieremedaalje */

/* begin ieregallerij */
.ieregallerij-page {
    padding-top: 24px;
}

.ieregallerij-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
    max-width: 900px;
    margin: 0 auto;
}

.ieregallerij-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 26px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f9fbf8 0%, #eef2ec 100%);
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 12px 24px rgba(10, 92, 47, 0.08);
}

.ieregallerij-year {
    flex: 0 0 110px;
    color: #c28a2c;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.ieregallerij-item h2 {
    margin: 0;
    color: #0a5c2f;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

@media (max-width: 640px) {
    .ieregallerij-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        padding: 18px 18px;
    }

    .ieregallerij-year {
        flex: none;
    }
}
/* einde ieregallerij */

/* begin fotopaasj */
.fotopaasj-page {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.fotopaasj-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    margin-top: 18px;
}

.fotopaasj-image-wrap {
    overflow: hidden;
    border-radius: 18px;
    background: linear-gradient(180deg, #f9fbf8 0%, #eef2ec 100%);
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 12px 24px rgba(10, 92, 47, 0.08);
}

.fotopaasj-image-wrap img {
    display: block;
    width: 100%;
    height: 320px;
    object-fit: cover;
}

@media (max-width: 900px) {
    .fotopaasj-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 620px) {
    .fotopaasj-grid {
        grid-template-columns: 1fr;
    }
}
/* einde fotopaasj */

/* begin clubleedsje */
.clubleedsje-page {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.clubleedsje-intro {
    padding: 28px 32px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0a5c2f 0%, #157d43 100%);
    color: white;
}

.clubleedsje-intro h2 {
    margin: 0 0 10px;
    color: white;
}

.clubleedsje-intro p {
    margin: 0;
    color: rgba(255,255,255,0.92);
}

.clubleedsje-intro a {
    color: white;
    font-weight: 700;
}

.clubleedsje-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    color: white;
    font: inherit;
    font-weight: 800;
    cursor: pointer;
    transition: transform 0.18s ease, background-color 0.18s ease, opacity 0.18s ease;
}

.clubleedsje-play-button:hover:not(:disabled) {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, 0.20);
}

.clubleedsje-play-button:disabled {
    opacity: 0.84;
    cursor: default;
}

.clubleedsje-audio-status {
    margin-top: 14px !important;
    font-size: 14px;
    color: rgba(255,255,255,0.86) !important;
}

.lyrics-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.lyrics-card {
    padding: 26px;
    border-radius: 20px;
    background: #f8faf7;
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 12px 24px rgba(10, 92, 47, 0.08);
}

.lyrics-card-highlight {
    background: linear-gradient(180deg, #f7fbf3 0%, #edf5e7 100%);
}

.lyrics-card h3 {
    margin: 0 0 14px;
    color: #0a5c2f;
    font-size: 24px;
}

.lyrics-card p {
    margin: 0;
    line-height: 1.9;
}

.clubleedsje-credits {
    padding: 24px 28px;
    border-left: 5px solid #c28a2c;
    background: #faf7ef;
    border-radius: 16px;
}

.clubleedsje-credits p {
    margin: 0 0 10px;
}

.clubleedsje-credits p:last-child {
    margin-bottom: 0;
}

@media (max-width: 780px) {
    .lyrics-grid {
        grid-template-columns: 1fr;
    }

    .clubleedsje-intro,
    .lyrics-card,
    .clubleedsje-credits {
        padding: 20px 18px;
    }
}
/* einde clubleedsje */

/* begin disclaimer */
.disclaimer-page {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.disclaimer-intro {
    padding: 30px 34px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0a5c2f 0%, #157d43 100%);
    color: white;
}

.disclaimer-intro h2 {
    margin: 0 0 12px;
    color: white;
}

.disclaimer-intro p {
    margin: 0;
    color: rgba(255,255,255,0.94);
    line-height: 1.8;
}

.disclaimer-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.disclaimer-card {
    padding: 28px;
    border-radius: 20px;
    background: #f8faf7;
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 12px 24px rgba(10, 92, 47, 0.08);
}

.disclaimer-card h3 {
    margin: 0 0 14px;
    color: #0a5c2f;
    font-size: 24px;
}

.disclaimer-card p {
    margin: 0 0 12px;
    line-height: 1.8;
}

.disclaimer-card p:last-child {
    margin-bottom: 0;
}

.disclaimer-card a {
    color: #0a5c2f;
    font-weight: 700;
}

.disclaimer-footer {
    padding: 18px 0 0;
    border-top: 1px solid rgba(10, 92, 47, 0.12);
}

.disclaimer-footer p {
    margin: 0;
    color: #0a5c2f;
    font-weight: 700;
}

@media (max-width: 780px) {
    .disclaimer-grid {
        grid-template-columns: 1fr;
    }

    .disclaimer-intro,
    .disclaimer-card {
        padding: 22px 18px;
    }
}
/* einde disclaimer */

/* begin contact */
.contact-page {
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.contact-intro {
    padding: 28px 32px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0a5c2f 0%, #157d43 100%);
    color: white;
}

.contact-intro h2 {
    margin: 0 0 10px;
    color: white;
}

.contact-intro p {
    margin: 0;
    color: rgba(255,255,255,0.94);
}

.contact-intro a {
    color: white;
    font-weight: 700;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
    gap: 24px;
}

.contact-card,
.contact-person {
    padding: 28px;
    border-radius: 20px;
    background:
        radial-gradient(circle at top right, rgba(191, 138, 47, 0.10), transparent 34%),
        linear-gradient(180deg, #fbfcfa 0%, #f1f6f1 100%);
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 12px 24px rgba(10, 92, 47, 0.08);
}

.contact-card h3,
.contact-person h3 {
    margin: 0 0 14px;
    color: #0a5c2f;
    font-size: 24px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid rgba(10, 92, 47, 0.16);
    border-radius: 12px;
    background: white;
    box-sizing: border-box;
    font: inherit;
}

.contact-form textarea {
    min-height: 180px;
    resize: vertical;
}

.contact-form button {
    align-self: flex-start;
    margin-top: 8px;
    padding: 12px 22px;
    border: none;
    border-radius: 999px;
    background: #0a5c2f;
    color: white;
    cursor: pointer;
    font: inherit;
    font-weight: 700;
}

.contact-message {
    margin-bottom: 16px;
    padding: 12px 14px;
    border-radius: 12px;
    font-weight: 700;
}

.contact-message.is-success {
    background: #e6f6ea;
    color: #0a5c2f;
}

.contact-message.is-error {
    background: #fde8e8;
    color: #8a1f1f;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-person {
    position: relative;
    overflow: hidden;
}

.contact-person::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(180deg, var(--green-700), var(--gold-500));
}

.contact-role {
    display: inline-flex;
    align-items: center;
    margin: -2px 0 20px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(191, 138, 47, 0.12);
    color: #9f6d18;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    font-size: 12px;
}

.contact-person p {
    margin: 0 0 10px;
    line-height: 1.7;
}

.contact-person p:last-child {
    margin-bottom: 0;
}

.contact-person a {
    color: #0a5c2f;
    font-weight: 700;
}

.contact-person-meta {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.76);
    border: 1px solid rgba(10, 92, 47, 0.08);
}

.contact-person-meta + .contact-person-meta {
    margin-top: 12px;
}

.contact-person-label {
    color: var(--ink-700);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.search-results {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.search-result-card {
    padding: 24px 26px;
    border-radius: 20px;
    background: linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(243, 247, 242, 0.96) 100%);
    border: 1px solid rgba(11, 66, 39, 0.08);
    box-shadow: 0 16px 34px rgba(10, 92, 47, 0.10);
}

.search-result-top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
}

.search-result-heading {
    min-width: 0;
}

.search-result-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 10px;
    margin-bottom: 10px;
}

.search-result-badge {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(11, 66, 39, 0.08);
    color: var(--green-800);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.search-result-page {
    color: var(--ink-700);
    font-size: 14px;
    font-weight: 700;
}

.search-result-card h2 {
    margin: 0 0 10px;
}

.search-result-card h2 a {
    color: var(--green-800);
    text-decoration: none;
}

.search-result-card h2 a:hover {
    text-decoration: underline;
}

.search-result-action {
    flex: 0 0 auto;
    width: 54px;
    height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    text-decoration: none;
    background:
        radial-gradient(circle at top left, rgba(255,255,255,0.14), transparent 28%),
        linear-gradient(135deg, var(--green-700), var(--green-900));
    color: white;
    box-shadow: 0 12px 24px rgba(11, 66, 39, 0.18);
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-radius 0.2s ease;
}

.search-result-action:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 16px 28px rgba(11, 66, 39, 0.22);
    border-radius: 22px;
}

.search-result-action i {
    font-size: 1.35rem;
    line-height: 1;
}

.search-result-card p {
    margin: 0;
}

@media (max-width: 720px) {
    .search-result-top {
        flex-direction: column;
    }

    .search-result-action {
        align-self: flex-end;
    }
}

.search-highlight-live {
    padding: 0.12em 0.34em;
    border-radius: 0.45em;
    background: linear-gradient(90deg, rgba(255, 214, 128, 0.95), rgba(255, 236, 186, 0.95));
    box-shadow: 0 0 0 3px rgba(255, 214, 128, 0.22);
    color: var(--ink-900);
    animation: searchHighlightPulse 1.4s ease-in-out infinite;
    transition: opacity 1s ease, box-shadow 1s ease, background 1s ease;
}

.search-highlight-live.is-fading {
    opacity: 0;
    box-shadow: 0 0 0 0 rgba(255, 214, 128, 0);
    background: rgba(255, 214, 128, 0);
}

@keyframes searchHighlightPulse {
    0%,
    100% {
        box-shadow: 0 0 0 3px rgba(255, 214, 128, 0.18);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 214, 128, 0.26);
    }
}

@media (max-width: 860px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-intro,
    .contact-card,
    .contact-person {
        padding: 22px 18px;
    }

    .contact-form button {
        width: 100%;
        align-self: stretch;
    }
}
/* einde contact */

@media (max-width: 1100px) {
    .navbar {
        gap: 18px;
        height: auto;
        min-height: 70px;
        padding: 12px 20px;
    }

    .menu {
        gap: 18px;
    }

    .search input {
        max-width: 140px;
    }

    .home-icons {
        gap: 36px;
    }
}

@media (max-width: 960px) {
    .navbar {
        flex-wrap: wrap;
        align-items: center;
    }

    .navbar.is-menu-open {
        align-content: flex-start;
        max-height: 100vh;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }

    .nav-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .site-nav,
    .search {
        display: none;
        width: 100%;
    }

    .site-nav.is-open,
    .site-nav.is-open + .search {
        display: block;
    }

    .menu {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 12px 0 0;
    }

    .menu li {
        width: 100%;
        padding: 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }

    .menu a {
        display: block;
        padding: 14px 0;
    }

    .submenu {
        display: block;
        position: static;
        border: none;
        padding: 0 0 8px 14px;
        min-width: 0;
        background: transparent;
    }

    .submenu li {
        border-bottom: none;
    }

    .submenu li a {
        padding: 8px 0;
    }

    .search {
        padding-top: 12px;
    }

    .search form {
        width: 100%;
    }

    .search input {
        flex: 1;
        max-width: none;
    }

    .hero,
    .sponsors {
        background-attachment: scroll;
    }

    .page-content {
        padding: 36px 24px;
        border-radius: 28px 28px 0 0;
    }

    .columns {
        columns: 1;
    }

    .sponsor-track img {
        width: calc((100% - 40px) / 2);
    }
}

@media (max-width: 640px) {
    .navbar {
        padding: 12px 16px;
    }

    .logo img {
        height: 42px;
    }

    .hero {
        min-height: 380px;
        padding: 0 16px;
    }

    .hero-text {
        padding: 28px 22px;
        border-radius: 22px;
    }

    .home-icons {
        margin-bottom: 0;
        padding: 48px 16px;
        gap: 28px;
        border-radius: 30px;
    }

    .icon-block {
        max-width: none;
    }

    .icon-circle {
        width: 92px;
        height: 92px;
    }

    .icon-circle i {
        font-size: 34px;
    }

    .sponsors {
        margin-top: 0;
        padding: 48px 0;
    }

    .sponsor-window {
        padding: 0 16px;
    }

    .sponsor-track img {
        width: 100%;
        height: 100px;
    }

    .footerContainer {
        padding: 50px 20px 20px;
    }

    .page-hero {
        padding: 40px 16px;
    }

    .page-content {
        padding: 28px 16px;
        margin-top: -20px;
        border-radius: 22px 22px 0 0;
    }

    .page-content h2 {
        margin-top: 34px;
    }

    .content {
        padding: 24px 16px;
    }
}

/* begin programma */
.programma-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.programma-intro {
    padding: 28px 32px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0a5c2f 0%, #157d43 100%);
    color: white;
}

.programma-intro h2 {
    margin: 0 0 10px;
    color: white;
}

.programma-intro p {
    margin: 0;
    color: rgba(255,255,255,0.94);
}

.programma-list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.programma-section {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.programma-section h2 {
    margin: 0;
}

.programma-section > p {
    margin: 0;
}

.programma-item {
    display: grid;
    grid-template-columns: 180px minmax(0, 1fr);
    gap: 24px;
    align-items: center;
    padding: 22px 26px;
    border-radius: 20px;
    background: linear-gradient(180deg, #f9fbf8 0%, #eef2ec 100%);
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 12px 24px rgba(10, 92, 47, 0.08);
}

.programma-date {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 72px;
    padding: 12px 18px;
    border-radius: 16px;
    background: #0a5c2f;
    color: white;
    font-size: 22px;
    font-weight: 700;
}

.programma-content h3 {
    margin: 0;
    color: #0a5c2f;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.2;
}

.programma-item.is-past {
    opacity: 0.82;
    background: linear-gradient(180deg, #f6f7f5 0%, #ecefea 100%);
}

.programma-item.is-past .programma-date {
    background: #5e6f64;
}

.programma-section-past {
    padding-top: 12px;
    border-top: 1px solid rgba(10, 92, 47, 0.10);
}

.programma-empty {
    padding: 24px;
    border-radius: 18px;
    background: #f8faf7;
    border: 1px solid rgba(10, 92, 47, 0.08);
    color: #4d5a4f;
}

@media (max-width: 780px) {
    .programma-intro {
        padding: 22px 18px;
    }

    .programma-item {
        grid-template-columns: 1fr;
        gap: 16px;
        padding: 18px;
    }

    .programma-date {
        justify-content: flex-start;
    }
}
/* einde programma */

/* begin media */
.media-page {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.media-intro {
    padding: 28px 32px;
    border-radius: 22px;
    background: linear-gradient(135deg, #0a5c2f 0%, #157d43 100%);
    color: white;
}

.media-intro h2 {
    margin: 0 0 10px;
    color: white;
}

.media-intro p {
    margin: 0;
    color: rgba(255,255,255,0.94);
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.media-card {
    padding: 28px;
    border-radius: 20px;
    background: #f8faf7;
    border: 1px solid rgba(10, 92, 47, 0.08);
    box-shadow: 0 12px 24px rgba(10, 92, 47, 0.08);
}

.media-card h3 {
    margin: 0 0 12px;
    color: #0a5c2f;
    font-size: 24px;
}

.media-card p {
    margin: 0 0 16px;
    line-height: 1.7;
}

.media-card a {
    color: #0a5c2f;
    font-weight: 700;
}

@media (max-width: 900px) {
    .media-grid {
        grid-template-columns: 1fr;
    }

    .media-intro,
    .media-card {
        padding: 22px 18px;
    }
}
/* einde media */
