:root {
    --green-900: #17331f;
    --green-700: #2f6f3d;
    --green-500: #6fb347;
    --sky-500: #2f9fbd;
    --cream: #f8f4ec;
    --paper: #fffdf8;
    --ink: #1f2a24;
    --muted: #65736a;
    --line: rgba(23, 51, 31, 0.16);
    --shadow: 0 20px 50px rgba(23, 51, 31, 0.16);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    background: var(--paper);
    color: var(--ink);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
}

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

a {
    color: inherit;
}

.section-inner {
    width: min(1120px, calc(100% - 40px));
    margin: 0 auto;
}

.site-header {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 20;
    display: flex;
    width: min(1120px, calc(100% - 32px));
    min-height: 66px;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    padding: 10px 14px 10px 18px;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;
    background: rgba(255, 253, 248, 0.9);
    box-shadow: 0 14px 40px rgba(0, 0, 0, 0.12);
    backdrop-filter: blur(12px);
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.logo-link img {
    width: auto;
    height: 58px;
    max-width: 190px;
    object-fit: contain;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    border-radius: 8px;
    padding: 9px 13px;
    color: var(--green-900);
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
    background: #e8f3df;
    outline: none;
}

.hero {
    position: relative;
    min-height: 680px;
    overflow: hidden;
    background: var(--green-900);
}

.hero-slider {
    position: relative;
    min-height: 680px;
}

.slide {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.8s ease;
}

.slide.active {
    opacity: 1;
    pointer-events: auto;
}

.slide::after {
    position: absolute;
    inset: 0;
    content: "";
    background:
        linear-gradient(90deg, rgba(13, 31, 18, 0.76) 0%, rgba(13, 31, 18, 0.52) 46%, rgba(13, 31, 18, 0.2) 100%),
        linear-gradient(0deg, rgba(13, 31, 18, 0.32), rgba(13, 31, 18, 0.06));
}

.slide img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(1120px, calc(100% - 40px));
    margin-top: 60px;
    color: white;
}

.eyebrow,
.section-label {
    margin: 0 0 12px;
    color: #d6efc6;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.hero-content h1 {
    max-width: 100%;
    margin: 0;
    font-size: clamp(44px, 7vw, 86px);
    line-height: 0.98;
    letter-spacing: 0;
    overflow-wrap: break-word;
    word-break: keep-all;
    white-space: normal;
}

.hero-content > p:not(.eyebrow) {
    max-width: 620px;
    margin: 24px 0 0;
    color: rgba(255, 255, 255, 0.9);
    font-size: 20px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    border: 2px solid transparent;
    border-radius: 8px;
    padding: 12px 18px;
    font-weight: 800;
    text-decoration: none;
    transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.button:hover,
.button:focus-visible {
    transform: translateY(-2px);
    outline: none;
}

.button.primary {
    background: var(--green-500);
    color: #0f2615;
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.72);
    color: white;
}

.button.secondary:hover,
.button.secondary:focus-visible {
    background: white;
    color: var(--green-900);
}

.slider-button {
    position: absolute;
    top: 50%;
    z-index: 5;
    display: inline-grid;
    width: 46px;
    height: 46px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.78);
    color: var(--green-900);
    cursor: pointer;
    transform: translateY(-50%);
    transition: background 0.2s ease, transform 0.2s ease;
}

.slider-button:hover,
.slider-button:focus-visible {
    background: white;
    outline: none;
    transform: translateY(-50%) scale(1.05);
}

.hero-prev {
    left: max(18px, calc((100vw - 1120px) / 2 - 72px));
}

.hero-next {
    right: max(18px, calc((100vw - 1120px) / 2 - 72px));
}

.intro-section {
    padding: 88px 0 72px;
    background: var(--paper);
}

.intro-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 56px;
    align-items: start;
}

.section-label {
    color: var(--green-700);
}

.intro-grid h2,
.section-heading h2 {
    margin: 0;
    color: var(--green-900);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
    letter-spacing: 0;
}

.intro-copy p {
    margin: 0 0 18px;
    color: var(--muted);
    font-size: 18px;
}

.feature-band {
    padding: 46px 0;
    background: #eef6e8;
    border-block: 1px solid var(--line);
}

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

.feature-grid article {
    min-height: 190px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 12px 30px rgba(23, 51, 31, 0.08);
}

.feature-grid i {
    display: inline-grid;
    width: 42px;
    height: 42px;
    margin-bottom: 18px;
    place-items: center;
    border-radius: 50%;
    background: #e0f2d3;
    color: var(--green-700);
}

.feature-grid h3,
.agenda-panel h3,
.site-footer h2 {
    margin: 0 0 10px;
    color: var(--green-900);
    font-size: 22px;
    line-height: 1.2;
}

.feature-grid p {
    margin: 0;
    color: var(--muted);
}

.agenda-section {
    padding: 86px 0 96px;
    background:
        linear-gradient(180deg, rgba(248, 244, 236, 0.96), rgba(255, 253, 248, 0.98)),
        url("images/boerenmarkt2-web.jpg") center / cover;
}

.section-heading {
    max-width: 680px;
    margin-bottom: 32px;
}

.agenda-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.agenda-panel {
    display: flex;
    min-height: 360px;
    flex-direction: column;
    gap: 16px;
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
}

.agenda-panel.accent {
    background: var(--green-900);
    color: white;
}

.agenda-panel.accent h3,
.agenda-panel.accent .agenda-item p {
    color: white;
}

.agenda-panel.accent .agenda-item {
    border-color: rgba(255, 255, 255, 0.22);
}

.agenda-panel.accent .agenda-item span {
    background: #d6efc6;
    color: var(--green-900);
}

.agenda-item {
    display: grid;
    grid-template-columns: 86px 1fr;
    gap: 14px;
    align-items: start;
    padding-top: 16px;
    border-top: 1px solid var(--line);
}

.agenda-item span {
    display: inline-flex;
    min-height: 34px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #e8f3df;
    color: var(--green-900);
    font-size: 14px;
    font-weight: 800;
    text-align: center;
}

.agenda-item p {
    margin: 0;
    color: var(--muted);
}

.location-section {
    padding: 86px 0;
    background: var(--paper);
}

.location-grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 44px;
    align-items: center;
}

.location-image {
    overflow: hidden;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.location-image img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.location-content h2 {
    margin: 0 0 18px;
    color: var(--green-900);
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.08;
}

.location-content p {
    margin: 0;
    color: var(--muted);
    font-size: 18px;
}

.quick-facts {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.quick-facts span {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 14px 16px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 10px 24px rgba(23, 51, 31, 0.07);
}

.quick-facts strong {
    min-width: 64px;
    color: var(--green-700);
}

.participants {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 44px;
}

.participants span {
    display: inline-flex;
    min-height: 42px;
    align-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 9px 13px;
    background: white;
    color: var(--green-900);
    font-weight: 800;
    box-shadow: 0 8px 22px rgba(23, 51, 31, 0.07);
}

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

.story-grid article {
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: var(--shadow);
}

.story-grid img {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.story-grid h3 {
    margin: 26px 26px 12px;
    color: var(--green-900);
    font-size: 24px;
    line-height: 1.18;
}

.story-grid p {
    margin: 0 26px 28px;
    color: var(--muted);
}

.site-footer {
    background: #17251c;
    color: rgba(255, 255, 255, 0.82);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 34px;
    align-items: start;
    padding: 54px 0 38px;
}

.site-footer h2 {
    color: white;
}

.site-footer p {
    max-width: 520px;
    margin: 0;
}

.site-footer address {
    display: grid;
    gap: 8px;
    margin-top: 18px;
    font-style: normal;
}

.site-footer a {
    color: rgba(255, 255, 255, 0.86);
    text-decoration: none;
}

.site-footer a:hover,
.site-footer a:focus-visible {
    color: #d6efc6;
    outline: none;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.contact-person {
    font-weight: 400;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
}

.footer-partners p {
    margin: 0 0 16px;
}

.partner-logos {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    align-items: center;
    margin-bottom: 16px;
}

.partner-logos img {
    width: 100%;
    max-height: 92px;
    object-fit: contain;
    border-radius: 8px;
    background: white;
    padding: 12px;
}

.copyright {
    margin: 0;
    padding: 18px 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.64);
    font-size: 14px;
    text-align: center;
}

@media (max-width: 980px) {
    .hero,
    .hero-slider {
        min-height: 620px;
    }

    .intro-grid,
    .feature-grid,
    .agenda-grid,
    .location-grid,
    .story-grid,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .agenda-panel {
        min-height: auto;
    }
}

@media (max-width: 720px) {
    .section-inner {
        width: min(100% - 28px, 1120px);
    }

    .site-header {
        top: 10px;
        width: calc(100% - 20px);
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 12px;
    }

    .logo-link img {
        width: auto;
        height: 54px;
    }

    .site-nav {
        width: 100%;
        justify-content: space-between;
    }

    .site-nav a {
        padding: 8px 9px;
        font-size: 14px;
    }

    .hero,
    .hero-slider {
        min-height: 680px;
    }

    .hero-content {
        width: min(100% - 30px, 1120px);
        margin-top: 110px;
    }

    .hero-content h1 {
        font-size: 34px;
        line-height: 1.08;
    }

    .hero-content > p:not(.eyebrow) {
        font-size: 18px;
    }

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

    .button {
        width: 100%;
    }

    .slider-button {
        top: auto;
        bottom: 22px;
        transform: none;
    }

    .slider-button:hover,
    .slider-button:focus-visible {
        transform: scale(1.05);
    }

    .hero-prev {
        left: 18px;
    }

    .hero-next {
        right: 18px;
    }

    .intro-section,
    .agenda-section {
        padding: 62px 0;
    }

    .feature-grid article,
    .agenda-panel {
        padding: 22px;
    }

    .agenda-item {
        grid-template-columns: 1fr;
        gap: 9px;
    }

    .agenda-item span {
        width: fit-content;
        padding: 0 12px;
    }

    .quick-facts span {
        align-items: flex-start;
        flex-direction: column;
        gap: 3px;
    }

    .participants span {
        width: 100%;
    }

    .partner-logos {
        grid-template-columns: 1fr;
    }
}
