/* Basiskleuren en typografie */
:root {
    --green: rgba(62, 90, 71, 1);
    --green-light: rgba(98, 122, 104, 0.85);
    --brown: rgba(138, 99, 68, 1);
    --brown-soft: rgba(201, 165, 134, 0.85);
    --brown-40: rgba(156, 133, 92, 0.4);
    --bg-light: rgba(247, 243, 236, 0.85);
    --bg-lighter: rgba(251, 248, 243, 0.85);
    --text: rgba(47, 38, 32, 1);
    --text-soft: rgba(106, 90, 75, 0.85);
    --border-soft: rgba(224, 212, 196, 0.85);
    --max-width: 1100px;

    --h1-font-size: 2.5rem;
    --h2-font-size: 2rem;
    --h3-font-size: 1.75rem;
    --h4-font-size: 1.5rem;
    --h5-font-size: 1.25rem;
    --h6-font-size: 1rem;

    --h1-font-size-mobile: 1.75rem;
    --h2-font-size-mobile: 1.5rem;
    --h3-font-size-mobile: 1.25rem;
    --h4-font-size-mobile: 1.125rem;
    --h5-font-size-mobile: 1rem;
    --h6-font-size-mobile: 0.9375rem;

    --display-1-font-size: 4rem;
    --display-2-font-size: 3.5rem;
    --display-3-font-size: 3rem;
    --display-4-font-size: 2.5rem;
    --display-5-font-size: 2rem;
    --display-6-font-size: 1.75rem;

    --display-1-font-size-mobile: 2.25rem;
    --display-2-font-size-mobile: 2rem;
    --display-3-font-size-mobile: 1.75rem;
    --display-4-font-size-mobile: 1.625rem;
    --display-5-font-size-mobile: 1.5rem;
    --display-6-font-size-mobile: 1.375rem;

    --text-size-xs: 0.75rem;
    --text-size-sm: 0.875rem;
    --text-size-md: 1rem;
    --text-size-lg: 1.125rem;
    --text-size-xl: 1.25rem;

    --body-font-family: "Lora";
    --body-font-stack: var(--body-font-family), "Georgia", "Times New Roman", Times, serif;

    --heading-font-weight: 500;
}

@media only screen and (max-width: 768px) {
    :root {
        --h1-font-size: var(--h1-font-size-mobile) !important;
        --h2-font-size: var(--h2-font-size-mobile) !important;
        --h3-font-size: var(--h3-font-size-mobile) !important;
        --h4-font-size: var(--h4-font-size-mobile) !important;
        --h5-font-size: var(--h5-font-size-mobile) !important;
        --h6-font-size: var(--h6-font-size-mobile) !important;

        --display-1-font-size: var(--display-1-font-size-mobile) !important;
        --display-2-font-size: var(--display-2-font-size-mobile) !important;
        --display-3-font-size: var(--display-3-font-size-mobile) !important;
        --display-4-font-size: var(--display-4-font-size-mobile) !important;
        --display-5-font-size: var(--display-5-font-size-mobile) !important;
        --display-6-font-size: var(--display-6-font-size-mobile) !important
    }
}

.h-100 {
    height: 100% !important;
}

h1,h2,h3,h4,h5,h6 {
    font-weight: var(--heading-font-weight);
}

h2,h3,h4,h5,h6 {
    color: var(--green);
    /*margin-bottom: 0.5em;*/
}

h2 { font-size: var(--h2-font-size);}
h3 { font-size: var(--h3-font-size);}
h4 { font-size: var(--h4-font-size);}
h5 { font-size: var(--h5-font-size);}
h6 { font-size: var(--h6-font-size);}


h4:first-of-type {
    margin-top: 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Voorwaarden: genummerde items hebben al handmatige nummering */
.voorwaarden ul {
    list-style: none;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--body-font-stack);
    color: var(--text);
    background-color: var(--brown-40);
    line-height: 1.6;
    padding-top: 70px;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

section {
    padding-block: 2rem;
    padding-block: clamp(2rem, 8.53vw, 3.5rem);
    /*padding-block: 3.5rem;*/
    scroll-margin-top: clamp(2rem, 8.53vw, 80px);
}

.page {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: var(--display-3-font-size);
    margin-bottom: .5em;
    color: var(--green);
}

.section-title:has(+ .section-subtitle) {
    margin-bottom: 0;
}

.section-subtitle {
    color: var(--text-soft);
    font-size: var(--text-size-lg);
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .section-title ,
    .section-subtitle {
        text-align: center;
    }
}

.section-heading-sm {
    font-size: var(--h4-font-size);
    margin-bottom: 0.7rem;
}

/* Utilities */
.mt-08 {
    margin-top: 0.8rem;
}

/* Taal zichtbaar / onzichtbaar */
body.lang-nl .lang-en {
    display: none;
}

body.lang-en .lang-nl {
    display: none;
}

/* =========================================================
   HEADER + RESPONSIVE MENU
   ========================================================= */
header {
    background-color: #ffffff;
    border-bottom: 1px solid var(--border-soft);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 0.9rem 1rem;
    max-width: var(--max-width);
    margin: 0 auto;
    transition: padding 0.2s ease;
}

.header-inner-mobile {
    display: flex;
    align-items: center;
    gap: 1rem;
}

@media (max-width: 640px) {
    .header-inner {
        gap: 1rem;
    }
}

body.scrolled header .header-inner {
    padding: 0.45rem 1rem;
}

.brand {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

a.brand {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a.brand:hover {
    color: inherit;
}

.brand-title {
    font-size: var(--h4-font-size);
    letter-spacing: 0.09em;
    text-transform: uppercase;
    color: var(--brown);
    user-select: none;
}

.brand-subtitle {
    font-size: var(--text-size-sm);
    color: var(--text-soft);
    transition: opacity 0.2s ease, height 0.2s ease, margin 0.2s ease;
}

/* Tagline variants */
.tagline-short {
    display: none;
}

body.scrolled .brand-subtitle {
    opacity: 0;
    height: 0;
    margin: 0;
    overflow: hidden;
}

/* Desktop-nav */
.navigation {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    font-size: var(--text-size-sm);
}

.navigation a {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: var(--text-size-sm);
    border-bottom: 2px solid transparent;
}

.navigation a:not(.nav-cta):hover {
    border-color: var(--brown-soft);
}



.btn-primary,
.nav-cta {
    background-color: var(--green);
    color: #fff;
}
.btn-primary:hover,
.nav-cta:hover {
    background-color: var(--green-light);
}

/* Navigation CTA */
.nav-cta {
	height: 32px;
    padding: .25rem 1.125rem;
    border-radius: 999px;
    border-bottom: none;
    transition: background-color 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: var(--text-size-sm);
}

.nav-cta:hover {
    border-color: transparent;  
}

/* Mobiele CTA - alleen op mobiel tonen */
.nav-cta-mobile {
    display: none;
}

/* Language switch */
.lang-switch {
    display: inline-flex;
    border-radius: 999px;
    border: 1px solid var(--border-soft);
    overflow: hidden;
}

.lang-btn {
    border: 3px solid transparent;
    background: transparent;
    padding: 0.2rem 0.7rem;
    font-size: var(--text-size-xs);
    font-family: var(--body-font-stack);
    cursor: pointer;
    height: 32px;
}

/*.lang-btn.active {*/
/*    background-color: var(--green-light);*/
/*    color: #fff;*/
/*}*/


.lang-btn.active {
    /*border-color: var(--brown-soft);*/
    border-color: inherit;
    border-radius: inherit;
}

/*.lang-btn.nl {*/
/*    border-top-right-radius: 0;*/
/*    border-bottom-right-radius: 0;*/
/*}*/
/*.lang-btn.en {*/
/*    border-top-left-radius: 0;*/
/*    border-bottom-left-radius: 0;*/
/*}*/


.lang-btn.nl.active {
    margin-right: -6px;
}
.lang-btn.en.active {
    margin-left: -6px;
}


/* Hamburger-knop (desktop: verborgen) */
.menu-toggle {
    display: none;
    width: 32px;
    height: 28px;
    flex-shrink: 0;
    border: none;
    background: transparent;
    cursor: pointer;
    padding: 0;
    position: relative;
}

.menu-toggle span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--text);
    border-radius: 3px;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle span:nth-child(1) {
    top: 4px;
}

.menu-toggle span:nth-child(2) {
    top: 12px;
}

.menu-toggle span:nth-child(3) {
    top: 20px;
}

/* Kruis-animatie */
body.nav-open .menu-toggle span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.nav-open .menu-toggle span:nth-child(2) {
    opacity: 0;
}

body.nav-open .menu-toggle span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* =========================================================
   HERO
   ========================================================= */
.hero {
    position: relative;
    color: #fff;
    /*min-height: 60vh;*/
    display: flex;
    align-items: center;
    background-color: #000;
    overflow: hidden;
    height: clamp(200px, 100vh, 75svh);
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    opacity: 0.85;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    /*background: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), rgba(0, 0, 0, 0.65));*/
    background: radial-gradient(rgb(0 0 0 / 40%), transparent 75%), linear-gradient(rgba(0, 0, 0, 0.25), rgba(0, 0, 0, 0.25));
    z-index: 0;
}

.hero-inner {
    position: relative;
    z-index: 1;
    max-width: 820px;
    margin: 0 auto;
    padding: 4.5rem 1.5rem 3rem;
    text-align: center;
}

.hero-tagline {
    font-size: var(--h4-font-size);
    font-weight: var(--heading-font-weight);
    letter-spacing: 0.03em;
    margin-bottom: 0.5rem;
    color: #ffffff;
}

.hero-title {
    font-size: var(--display-1-font-size);
    line-height: 1.15;
    font-weight: var(--heading-font-weight);
    margin: 0.25rem 0 1rem 0;
    color: #ffffff;
}

.hero-sub {
    font-size: var(--text-size-md);
    max-width: 610px;
    margin: 0.3rem auto 1.1rem;
    color: #f8eee1;
    text-wrap: balance;
}

.text-shadow {
    text-shadow: 0 .075em .15em rgb(0 0 0 / .7);
}

.hero-location {
    font-size: var(--text-size-sm);
    color: #e9dccb;
    margin-bottom: 1.5rem;
}

/* Tekst in hero beter leesbaar */
.hero-sub,
.hero-location {
    color: rgba(255, 255, 255, 0.92); /* bijna wit, hoog contrast */
}

.hero-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
}

/* Buttons */
.btn {
    display: inline-block;
    border-radius: 999px;
    padding: 0.6rem 1.5rem;
    font-size: var(--text-size-lg);
    font-weight: var(--heading-font-weight);
    border: 1px solid transparent;
    cursor: pointer;
}

.btn-light {
    background-color: #f7e6cf;
    color: var(--text);
}
.btn-light:hover {
    background-color: #f0d9ba;
}

/* =========================================================
   BLokken en kolommen
   ========================================================= */
.two-column {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2.5rem;
    align-items: flex-start;
}

.text-block {
    background-color: #fff;
    border: 1px solid var(--border-soft);
    padding: 2rem;
    height: 100%;
}

.text-block p + p {
    margin-top: 0.8rem;
}

.feature-list {
    list-style: none;
    margin-top: 1rem;
}

.feature-list li + li {
    margin-top: .75em;
}

.feature-list li::before {
    content: "• ";
    color: var(--green);
    margin-right: 2px;
}

/* Lichte sectieachtergrond */
.section-bg-light {
    background-color: var(--bg-light);
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

/* Kleine foto's bij tekst */
.photo-inline {
    margin-bottom: 1rem;
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--border-soft);
}

.photo-inline img {
    width: 100%;
    height: auto;
}

.info-label {
    font-weight: var(--heading-font-weight);
    color: var(--green);
}

/* Eenkoloms FAQ-sectie */
.info-single-column {
    max-width: 800px; /* breedte die lekker leest */
    margin: 0 auto; /* centreren */
    display: block; /* geen grid */
}

.info-single-column .text-block {
    width: 100%;
}

/* ---------- Basis ---------- */

.faq-item {
    border-bottom: 1px solid var(--border-soft);
    position: relative;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-summary {
    cursor: pointer;
    list-style: none;
    font-size: var(--text-size-lg);
    padding: 1rem 2rem 1rem 0; /* hele gebied klikbaar */
    position: relative;
    color: var(--text);
}

/* standaard marker weg */
.faq-summary::-webkit-details-marker {
    display: none;
}

/* ---------- Plusje / minnetje ---------- */

.faq-summary::before,
.faq-summary::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    width: 14px;
    height: 2px;
    background: var(--text-soft);
    border-radius: 9999px;
    transform: translateY(-50%);
    transition: transform .2s ease, background .2s ease;
}

/* verticale streep -> maakt het plusje */
.faq-summary::after {
    transform: translateY(-50%) rotate(90deg);
}

/* ---------- Hover & open state ---------- */

.faq-item:hover .faq-summary,
.faq-item[open] .faq-summary {
    color: var(--green);
}

.faq-item:hover .faq-summary::before,
.faq-item:hover .faq-summary::after,
.faq-item[open] .faq-summary::before,
.faq-item[open] .faq-summary::after {
    background: var(--green-light);
}

/* Als open → minnetje (verticale streep draait weg) */
.faq-item[open] .faq-summary::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Body */

.faq-body {
    padding-bottom: 1.25rem;
    color: var(--text-soft);
    line-height: 1.6;
}

/* FAQ afbeelding */
.faq-image {
    display: block;
    margin-top: 1rem;
}

.faq-image img {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 12px;
}


/* Horizontal Gallery */
.horizontal-gallery {
    padding: 3rem 0;
    /*background-color: var(--bg-light);*/
    width: 100%;
    overflow: hidden;
}

.gallery-container-start {
    --gallery-spacing: 1rem;
    width: 100%;
    padding: 0 var(--gallery-spacing);
}

@media (min-width: 1100px) {
    .gallery-container-start {
        --gallery-spacing: 2rem;
    }
}

/* Desktop: Masonry Grid */
.gallery-scroll {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--gallery-spacing);
    max-width: 2400px;
    margin: 0 auto;
    grid-auto-flow: dense;
}

@media (min-width: 1500px) {
    .gallery-scroll {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-item {
    position: relative;
    overflow: hidden;
    background: linear-gradient(110deg, #f0f0f0 8%, #f8f8f8 18%, #f0f0f0 33%);
    background-size: 200% 100%;
    animation: shimmer 1.5s linear infinite;
    /* Toekomstige mogelijkheid voor grotere items:
       grid-column: span 2;
       grid-row: span 2;
    */
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.gallery-item img,
.gallery-item picture {
    width: 100%;
    height: auto;
    display: block;
}

.gallery-item img {
    background-color: transparent;
    aspect-ratio: 4/3;
    object-fit: cover;
}

/* Mobiel: Horizontal Slider */
@media (max-width: 768px) {
	.section-bnb {
		display: flex;
		    flex-direction: column-reverse;
	}
	
    .horizontal-gallery {
        padding: 2rem 0;
    }
	
	.section-bnb .horizontal-gallery {
        padding-top: 0;
    }

    .gallery-container-start {
        max-width: var(--max-width);
        margin: 0 auto;
        padding: 0 1rem;
    }

    .gallery-scroll {
        column-count: 1;
        display: flex;
        gap: 1rem;
        overflow-x: auto;
        /*scroll-snap-type: x proximity;*/
        scroll-behavior: smooth;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
        /* Break uit container */
        margin-left: -1rem;
        margin-right: -1rem;
        padding-inline: 1rem;
        max-width: none;
    }

    .gallery-scroll::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex-shrink: 0;
        scroll-snap-align: start;
        max-width: clamp(10px, 80%, 480px);
        height: auto;
        margin: 0;
    }

    .gallery-item img {
        height: 100%;
        width: 100%;
        object-fit: cover;
    }
}

/* Prijsnotitie */
.price-note {
    font-style: italic;
    color: var(--text-soft);
    margin-top: 0.8rem;
}

/* Contact */
.contact-wrap {
    display: grid;
    /*grid-template-columns: minmax(0, 1.2fr) minmax(0, 1.1fr);*/
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 2rem;
    align-items: flex-start;
}

.contact-box {
    background-color: #fff;
    border: 1px solid var(--border-soft);
    padding: 1.6rem 1.5rem;
    font-size: 0.95rem;
}

.contact-box p + p {
    margin-top: 0.6rem;
}

.contact-box address {
    font-style: normal;
}

.contact-box a {
    text-decoration: underline;
    text-decoration-color: var(--brown-soft);
}

/* Footer */
footer {
    background-color: #ffffff;
    border-top: 1px solid var(--border-soft);
    padding: 1rem 0.5rem 1.5rem;
    font-size: var(--text-size-sm);
    text-align: center;
    color: var(--text-soft);
    margin-top: 2rem;
}

footer .footer-line {
    margin-top: 0.3rem;
}

footer a {
    text-decoration: underline;
    text-decoration-color: var(--brown-soft);
}

/* =========================================================
   RESPONSIEF
   ========================================================= */

@media (max-width: 900px) {
    .two-column,
    .contact-wrap {
        grid-template-columns: minmax(0, 1fr);
    }

    .header-inner {
        flex-wrap: wrap;
        justify-content: space-between;
    }
}

@media (max-width: 768px) {
    .header-inner {
        position: relative;
    }

    /* Tagline kort op mobiel */
    .brand-subtitle {
        font-size: var(--text-size-xs);
    }

    .tagline-full {
        display: none;
    }

    .tagline-short {
        display: inline;
    }

    /* Toon mobiele CTA altijd - kleiner op mobiel */
    .nav-cta-mobile {
        display: inline-block;
        padding: 0.4rem 0.8rem;
        font-size: var(--text-size-xs);
    }

    /* Verberg CTA in navigation op mobiel */
    .navigation .nav-cta {
        display: none;
    }

    /* Hamburger kleiner op mobiel */
    .menu-toggle {
        display: inline-flex;
        justify-content: center;
        align-items: center;
        width: 28px;
        height: 24px;
    }

    .menu-toggle span {
        height: 2px;
    }

    /* Mobiel menu onder header */
    .navigation {
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: #fff;
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
        padding: 0.75rem 1rem 1rem;
        border-top: 1px solid var(--border-soft);
        display: none;
    }

    body.nav-open .navigation {
        display: flex;
    }

    .navigation a {
        width: 100%;
        padding: 0.3rem 0;
        border-bottom: 1px solid rgba(0, 0, 0, 0.03);
    }

    .navigation a:last-of-type {
        border-bottom: none;
    }

    .lang-switch {
        margin-top: 0.5rem;
    }

    .two-column {
        gap: 1.8rem;
    }
}
