:root {
    /*--green: #a2ae4c;*/
    --green: #A2AE4C;
    --yellow: #f8d531;
    --yellow-logo: #ffd63c;
    --white: #ffffff;
    --ink: #30331e;
    --cream: #fff9e6;
    --radius-large: 42px;
    --radius-card: 28px;
    --shadow: 0 24px 60px rgba(56, 62, 20, 0.18);
}


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

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--green);
    line-height: 1.6;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}


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

.hero {
    min-height: 100vh;
    padding: 24px clamp(18px,5vw,72px) 90px;
    background: radial-gradient( circle at 15% 20%, rgba(255,255,255,.12), transparent 28% ), var(--green);
}


/* =====================================
   NAVIGATIE
===================================== */

.nav {
    width: min(1240px,100%);
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
}

.nav-brand {
    color: var(--yellow);
    font-weight: 700;
    letter-spacing: .12em;
}

.nav-links {
    display: flex;
    gap: clamp(18px,3vw,42px);
    color: var(--white);
    font-weight: 600;
}

    .nav-links a {
        position: relative;
    }

        .nav-links a::after {
            content: "";
            position: absolute;
            left: 0;
            right: 100%;
            bottom: -5px;
            height: 3px;
            border-radius: 99px;
            background: var(--yellow);
            transition: right .25s ease;
        }

        .nav-links a:hover::after,
        .nav-links a:focus-visible::after {
            right: 0;
        }


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

.hero-content {
    width: min(1120px,100%);
    margin: 70px auto 0;
    display: grid;
    justify-items: center;
    text-align: center;
}

/*.main-logo-wrap {
    width: min(390px,78vw);
    aspect-ratio: 1;
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 50%;
    border: 12px solid rgba(255,255,255,.85);
    background: var(--yellow-logo);
    box-shadow: var(--shadow);
}*/
.main-logo-wrap {
    width: min(390px,78vw);
    aspect-ratio: 1;
    margin-bottom: 26px;
    overflow: hidden;
    border-radius: 50%;
    border: none;
    background: transparent;
    box-shadow: none;
}

.main-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-text {
    max-width: 720px;
    margin: 14px auto 24px;
    color: var(--white);
    font-size: clamp(18px,2vw,25px);
    font-weight: 500;
}

.primary-button {
    min-height: 56px;
    padding: 14px 30px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    background: var(--yellow);
    color: var(--ink);
    font-weight: 700;
    box-shadow: 0 14px 30px rgba(56,62,20,.18);
    transition: transform .2s ease, box-shadow .2s ease;
}

    .primary-button:hover {
        transform: translateY(-3px);
        box-shadow: 0 18px 36px rgba(56,62,20,.24);
    }


/* =====================================
   ALGEMENE SECTIES
===================================== */

.section {
    width: min(1240px,calc(100% - 36px));
    margin: 0 auto 90px;
}


/* =====================================
   OVER ONS
===================================== */

.about {
    display: grid;
    grid-template-columns: .85fr 1.15fr;
    gap: clamp(28px,5vw,70px);
    align-items: center;
    padding: clamp(30px,5vw,70px);
    background: var(--cream);
    border-radius: var(--radius-large);
    box-shadow: var(--shadow);
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--green-deep);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.section-copy h1 {
    margin-bottom: 22px;
    color: var(--green-deep);
    font-size: clamp(34px,5vw,68px);
    line-height: 1.05;
}

.section-copy p {
    font-size: clamp(17px,1.6vw,21px);
}

.sfeer-wrap {
    position: relative;
    min-height: 430px;
    overflow: hidden;
    border-radius: 34px;
}

.sfeer-image {
    width: 100%;
    height: 100%;
    min-height: 430px;
    object-fit: cover;
    transition: opacity .28s ease;
}

.sfeer-image.is-changing {
    opacity: .18;
}

.sfeer-arrow {
    position: absolute;
    top: 50%;
    z-index: 2;
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    border: 1px solid rgba(255,255,255,.7);
    border-radius: 50%;
    background: rgba(48,51,30,.56);
    color: var(--white);
    font: inherit;
    font-size: 29px;
    line-height: 1;
    cursor: pointer;
    box-shadow: 0 8px 22px rgba(0,0,0,.18);
    transition: background .2s ease, transform .2s ease;
}

.sfeer-arrow:hover,
.sfeer-arrow:focus-visible {
    background: rgba(48,51,30,.82);
    transform: translateY(-50%) scale(1.06);
}

.sfeer-arrow:focus-visible {
    outline: 3px solid var(--yellow);
    outline-offset: 3px;
}

.sfeer-arrow-left {
    left: 16px;
}

.sfeer-arrow-right {
    right: 16px;
}


/* =====================================
   TITELAFBEELDINGEN
===================================== */

/*.wordmark {
    display: block;
    height: auto;
    border-radius: 22px;
    object-fit: cover;
    box-shadow: 0 18px 45px rgba(56,62,20,.13);
}*/

.wordmark {
    display: block;
    height: auto;
    border-radius: 0;
    object-fit: cover;
    box-shadow: none;
}

.wordmark-section {
    width: min(460px,82vw);
    margin: 0 auto;
}

.wordmark-contact {
    width: min(500px,82vw);
    margin: 0 auto;
}


/* =====================================
   MENU
===================================== */

.menu-section {
    padding-top: 25px;
}

.section-intro,
.contact-intro {
    max-width: 680px;
    margin: 28px auto;
    color: var(--white);
    text-align: center;
    font-size: clamp(17px,1.8vw,22px);
}


/* =====================================
   FILTERKNOPPEN
===================================== */

.filter-buttons {
    width: 100%;
    margin: 34px auto 46px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;
}

.filter-button {
    min-height: 50px;
    padding: 11px 22px;
    border: 2px solid var(--yellow);
    border-radius: 999px;
    background: transparent;
    color: var(--white);
    font: inherit;
    font-size: 15px;
    font-weight: 700;
    white-space: nowrap;
    cursor: pointer;
    transition: background .2s ease, color .2s ease, border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

    .filter-button:hover {
        background: rgba(248,213,49,.16);
        transform: translateY(-2px);
    }

    .filter-button.active,
    .filter-button[aria-pressed="true"] {
        background: var(--yellow);
        color: var(--ink);
        transform: translateY(-2px);
        box-shadow: 0 10px 24px rgba(56,62,20,.18);
    }

    .filter-button:focus-visible {
        outline: 3px solid var(--white);
        outline-offset: 4px;
    }

/* =====================================
   PRODUCTGRID
===================================== */

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

.product {
    overflow: hidden;
    border-radius: var(--radius-card);
    background: var(--cream);
    box-shadow: 0 18px 42px rgba(56, 62, 20, .17);
    transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
}

    .product:hover {
        transform: translateY(-8px);
        box-shadow: 0 24px 50px rgba(56, 62, 20, .22);
    }

    .product.is-hidden {
        display: none;
    }

    .product img {
        width: 100%;
        height: 245px;
        object-fit: cover;
    }

.product-info {
    padding: 22px;
}

    .product-info h2 {
        margin-bottom: 10px;
        color: var(--green-deep);
        font-size: 23px;
        line-height: 1.2;
    }

    .product-info p {
        min-height: 52px;
        margin-bottom: 16px;
        color: #62654a;
        font-size: 14px;
    }

    .product-info strong {
        display: inline-block;
        padding: 7px 14px;
        border-radius: 999px;
        background: var(--yellow);
        color: var(--green-deep);
        font-size: 15px;
    }


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

.contact-section {
    padding: 80px max(18px, calc((100vw - 1240px) / 2)) 34px;
    background: var(--green-deep);
}

.contact-grid {
    margin-top: 34px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

    .contact-grid a {
        padding: 24px;
        display: grid;
        gap: 4px;
        border-radius: 24px;
        background: var(--cream);
        text-align: center;
        transition: transform .2s ease, box-shadow .2s ease;
    }

        .contact-grid a:hover {
            transform: translateY(-5px);
            box-shadow: 0 18px 35px rgba(0,0,0,.15);
        }

    .contact-grid span {
        color: var(--green-deep);
        font-weight: 600;
    }

    .contact-grid strong {
        overflow-wrap: anywhere;
    }

.copyright {
    margin-top: 40px;
    color: rgba(255,255,255,.75);
    text-align: center;
    font-size: 14px;
}


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

@media (max-width:980px) {

    .about {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2,minmax(0,1fr));
    }

    .filter-buttons {
        max-width: 760px;
    }
}


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

@media (max-width:700px) {

    .hero {
        min-height: auto;
        padding-inline: 18px;
        padding-bottom: 70px;
    }

    .nav {
        align-items: flex-start;
    }

    .nav-links {
        flex-direction: column;
        gap: 6px;
        text-align: right;
    }

    .hero-content {
        margin-top: 46px;
    }

    .main-logo-wrap {
        border-width: 8px;
    }

    .wordmark {
        border-radius: 14px;
    }

    .wordmark-section {
        width: min(340px,82vw);
    }

    .wordmark-contact {
        width: min(430px,88vw);
    }

    .about {
        padding: 28px 22px;
        border-radius: 28px;
    }

    .sfeer-wrap,
    .sfeer-image {
        min-height: 320px;
    }

    .sfeer-arrow {
        width: 42px;
        height: 42px;
        font-size: 24px;
    }

    .sfeer-arrow-left {
        left: 10px;
    }

    .sfeer-arrow-right {
        right: 10px;
    }

    .filter-buttons {
        justify-content: flex-start;
        flex-wrap: nowrap;
        overflow-x: auto;
        overscroll-behavior-inline: contain;
        scrollbar-width: thin;
        padding-bottom: 12px;
        gap: 10px;
    }

    .filter-button {
        flex: 0 0 auto;
        min-height: 46px;
        padding: 10px 18px;
        font-size: 14px;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product img {
        height: 280px;
    }

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


/* =====================================
   MINDER BEWEGING
===================================== */

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}

@media (prefers-reduced-motion: reduce) {

    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition: none !important;
        animation: none !important;
    }
}


.contact-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 170px;
    padding: 28px 20px;
    font: inherit;
    text-align: center;
    text-decoration: none;
    color: inherit;
    background-color: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.14);
    border-radius: 18px;
    cursor: pointer;
    transition: transform .25s ease, border-color .25s ease, background-color .25s ease;
}

.contact-card:hover {
        transform: translateY(-4px);
        border-color: currentColor;
        background-color: rgba(255, 255, 255, .35);
    }

.contact-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 16px;
    fill: none;
    stroke: currentColor;
    stroke-width: 1.7;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.contact-card span {
    margin-bottom: 6px;
    font-size: .8rem;
    letter-spacing: .12em;
    text-transform: uppercase;
    opacity: .65;
}

.contact-card strong {
    font-size: 1rem;
    font-weight: 600;
}



    .contact-phone:hover {
        background-color: rgba(255, 255, 255, .35) !important;
    }

.phone-feedback {
    min-height: 18px;
    margin-top: 8px;
    font-size: .75rem;
    opacity: .7;
}
/* =====================================
   SFEERCARROUSEL - VASTE AFMETING
   Houdt alle sfeerafbeeldingen even groot
   ===================================== */
.sfeer-wrap {
    height: 430px;
    min-height: 430px;
    position: relative;
}

.sfeer-image {
    width: 100%;
    height: 100%;
    min-height: 0;
    object-fit: cover;
    object-position: center;
}

@media (max-width: 700px) {
    .sfeer-wrap {
        height: 320px;
        min-height: 320px;
    }

    .sfeer-image {
        height: 100%;
        min-height: 0;
    }
}
