:root {
    --bg: #f5f3ee;
    --line: #d8d2c8;
    --green: #5c6f5c;
}

html {
    scroll-behavior: smooth;
}

@font-face {
    font-family: 'Stefan';
    src: url('../fonts/ABCStefan-Simple.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    margin: 0;
    background: var(--bg);
    font-family: 'Inter', sans-serif;
    color: #2c2c2c;
    position: relative;
}

/* GRAIN */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    background: url('../images/grain.png');
    opacity: 0.08;
    pointer-events: none;
    z-index: 9999;
}

/* NAV */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;

    padding: 20px 8%;

    display: flex;
    justify-content: space-between;
    align-items: center;

    z-index: 10;
    color: white;

    box-sizing: border-box;

    /* Nieuw: donkergroen balkje */
    background: #3a5a3a;
        background: rgba(58, 90, 58, 0.6);
    backdrop-filter: blur(8px);
}

a {
    color: var(--green);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: opacity 0.2s ease;
}

a:hover {
    opacity: 0.85;
}

.navbar a {
    margin-left: 25px;
    text-decoration: none;
    color: white;
    font-size: 0.9rem;
}

.navbar img{
    height: 40px;
    width: auto;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    z-index: 11;
}

.nav-links {
    display: flex;
    gap: 20px;
}

/* HERO */
.hero {
    height: 100vh;
    display: flex;
    align-items: flex-start;
    padding: 140px 8% 0 8%;
    position: relative;
    color: white;
}

.hero.hero-short {
    height: 85vh;
}

.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 510px;
}

.hero img {
    width: 320px;}

.hero h1{
    font-family: 'Stefan', serif;
    font-size: clamp(2rem, 3vw, 2.8rem);
    margin-bottom: 20px;
}

.hero p {
    font-size: clamp(1rem, 1.3vw, 1.2rem);
    line-height: 1.6;
    margin-bottom: 25px;
}

/* CTA (GROOT + ORGANISCH) */
.cta {
    font-family: 'Stefan', sans-serif;
    display: inline-block;
    padding: 22px 38px;
    background: rgba(255,255,255,0.92);
    color: black;
    text-decoration: none;
    font-size: 1.05rem;

    border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    transition: 0.4s ease;

    margin-left: 10px;
}

.cta:hover {
    transform: scale(1.05);
    border-radius: 50% 60% 40% 60% / 60% 40% 60% 40%;
}

/* SECTIONS */
.section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--line);
}

/* IMAGE */
.image {
    position: relative;
    min-height: 400px;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.image::after {
    content: "";
    position: absolute;
    inset: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    opacity: 1;
    transform: translateY(0);
    transition: none;
}

.image.overlay-1::after { background-image: url('../images/overlay1.png'); }
.image.overlay-2::after { background-image: url('../images/overlay2.png'); }
.image.overlay-3::after { background-image: url('../images/overlay3.png'); }

/* TEXT SIDE */
.text-side {
    position: relative;
    padding: 80px 60px;
    overflow: hidden;
}

/* TEXT BG (zelfde gedrag als overlay) */
.text-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 2;
    pointer-events: none;
}

/* CONTENT */
.text-inner {
    position: relative;
    max-width: 420px;
    z-index: 1;
}

/* asymmetrie */
.section:nth-child(odd) .text-inner {
    transform: translateX(20px);
}

.section:nth-child(even) .text-inner {
    transform: translateX(-20px) translateY(20px);
}

.text-inner h2 {
    font-family: 'Stefan', serif;
}

.button {
    display: inline-block;
    margin-top: 10px;
    text-decoration: none;
    border-bottom: 1px solid var(--green);
    color: var(--green);
}

/* FOOTER */
.footer {
    border-top: 1px solid var(--line);
    padding: 60px;
    text-align: center;
}

.footer-logo {
    height: 80px;
    width: auto;
    margin-bottom: 20px;
}

/* FAQ */

.faq {
    max-width: 900px;
    margin: 0 auto;
}

.faq details {
    border-bottom: 1px solid var(--line);
    padding: 0;
}

.faq details:first-child {
    border-top: 1px solid var(--line);
}

.faq summary {
    list-style: none;
    cursor: pointer;

    padding: 24px 50px 24px 0;

    position: relative;

    font-family: 'Inter', sans-serif;
    font-size: 1.35rem;
    color: #2c2c2c;

    transition: color 0.3s ease;
}

.faq summary:hover {
    color: var(--green);
}

/* verberg standaard pijltje */
.faq summary::-webkit-details-marker {
    display: none;
}

.faq summary::after {
    content: "+";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    
    font-family: 'Inter', sans-serif;
    font-size: 1.8rem;
    color: var(--green);

    transition: transform 0.3s ease;
}

.faq details[open] summary::after {
    transform: translateY(-50%) rotate(45deg);
}

.faq details p {
    margin: 0;
    padding: 0 0 24px 0;

    line-height: 1.8;
    font-size: 1rem;
    color: #444;
}

.faq details p + p {
    margin-top: 1rem;
}

@media (max-width: 800px) {

    .faq {
        padding: 0 20px;
    }

    .faq summary {
        font-size: 1.1rem;
        padding: 18px 40px 18px 0;
        line-height: 1.4;
    }

    .faq summary::after {
        font-size: 1.4rem;
        right: 0;
    }

    .faq details p {
        font-size: 0.95rem;
        line-height: 1.7;
        padding-bottom: 18px;
    }

    .faq details {
        padding: 0;
    }

    .faq details:first-child {
        border-top: 1px solid var(--line);
    }

    /* makes tap interaction feel better */
    .faq summary {
        -webkit-tap-highlight-color: transparent;
    }
}

/* CONTACT SECTION*/

#contact.section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 100px 8%;
    border-top: 1px solid var(--line);
    background: rgba(58, 90, 58, 0.6);
    position: relative;
}

/* container zoals je text-side */
#contact .container {
    max-width: 700px;
    width: 100%;
    padding: 60px;
    position: relative;

    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);

    border: 1px solid var(--line);
}

/* titel consistent met rest */
#contact h2 {
    font-family: 'Stefan', serif;
    margin-bottom: 15px;
    color: #2c2c2c;
}

/* tekst */
#contact p {
    line-height: 1.6;
    margin-bottom: 25px;
    color: #444;
}

/* form layout */
.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* inputs in zelfde zachte stijl */
.newsletter-form input,
.newsletter-form textarea {
    font-family: 'Inter', sans-serif;
    padding: 14px 16px;
    border: 1px solid var(--line);
    background: rgba(245, 243, 238, 0.6);
    outline: none;
    font-size: 0.95rem;
    color: #2c2c2c;
}

/* focus state subtiel groen */
.newsletter-form input:focus,
.newsletter-form textarea:focus {
    border-color: var(--green);
}

/* CTA knop match hero button */
.cta-button {
    font-family: 'Stefan', sans-serif;
    padding: 16px 26px;
    background: rgba(92, 111, 92, 0.9);
    color: white;
    border: none;
    cursor: pointer;

    border-radius: 60% 40% 55% 45% / 55% 60% 40% 45%;
    transition: 0.4s ease;
}

.cta-button:hover {
    transform: scale(1.05);
}

/* feedback */
.feedback-message {
    margin-top: 15px;
    font-size: 0.9rem;
}

.footer {
    border-top: 1px solid var(--line);
    padding: 80px 8% 40px;
    background: var(--bg);
}

/* grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

/* kolommen */
.footer-col p,
.footer-col a {
    font-size: 0.95rem;
    color: #2c2c2c;
    line-height: 1.6;
    text-decoration: none;
}

/* titles */
.footer-title {
    font-family: 'Stefan', serif;
    margin-bottom: 10px;
    font-size: 1.1rem;
}

/* links */
.footer-col a {
    display: block;
    margin-bottom: 6px;
    color: var(--green);
    transition: 0.3s ease;
}

.footer-col a:hover {
    opacity: 0.7;
}

/* socials */
.socials {
    display: flex;
    gap: 14px;
    margin-top: 12px;
    align-items: center;
    justify-content: center;
}

.socials img {
    display: block;
    align-items: center;
    opacity: 0.7;
    transition: opacity 0.2s;
    width: 24px;
}

.socials a:hover img {
    opacity: 1;
}

/* bottom bar */
.footer-bottom {
    margin-top: 50px;
    padding-top: 20px;
    border-top: 1px solid var(--line);
    text-align: center;
    font-size: 0.85rem;
    color: #666;
}

/* responsive */
@media (max-width: 800px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

/* MOBILE */
@media (max-width: 800px) {


    #contact.section {
        padding: 60px 20px;
    }

    #contact .container {
        width: 100%;
        max-width: 100%;
        padding: 30px 20px;
        box-sizing: border-box;
    }

    .newsletter-form input,
    .newsletter-form textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .navbar {
        padding: 15px 20px;
        gap: 15px;
    }

    .menu-toggle {
        display: none;
    }

    .nav-links {
        display: flex;
        flex-direction: row;
        gap: 15px;
    }

    .nav-links a {
        font-size: 0.85rem;
        margin-left: 0;
    }

    .hero {
        align-items: center;
        text-align: center;
        padding: 0 20px;
        margin-top: 60px;
    }

    .section {
        grid-template-columns: 1fr;
        display: flex;
        flex-direction: column;
    }

    #kamp {
        flex-direction: column-reverse;
    }

    .text-side {
        padding: 40px 25px;
    }

    .text-inner {
        transform: none !important;
    }

    .cta {
        margin-left: 0;
        padding: 18px 28px;
        font-size: 1rem;
    }

    .hide-on-mobile {
        display: none;
    }
  }

/* ---- Styles from original wiezijnwij.html ---- */

/* Intro section */
.intro{
    padding:120px 8%;
    max-width:1200px;
}

.intro h2{
    font-family:'Stefan',serif;
    font-size:2.5rem;
    margin-bottom:30px;
}

.intro p{
    line-height:1.9;
    font-size:1.05rem;
}

.map-row{
    display:flex;
    gap:40px;
    align-items:flex-start;
    margin-top:30px;
}

.map-text{
    flex:1.1;
    min-width:280px;
}

.map-text p{
    margin-bottom:1.5rem;
}

.map-frame{
    flex:0.95;
    min-width:320px;
    max-width:600px;
    width:100%;
    aspect-ratio: 4 / 3;
    min-height:320px;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 18px 80px rgba(0,0,0,0.12);
}

.map-frame iframe{
    width:100%;
    height:100%;
    border:0;
    display:block;
}

@media(max-width:900px){
    .map-row{
        flex-direction:column;
    }

    .map-frame{
        max-width:100%;
        min-width:100%;
        min-height:280px;
    }
}

/* Split sections */
.split {
    display: flex;
    flex-direction: column;
}

.person-card {
    display: flex;
    min-height: 600px; /* choose your preferred height */
    border-top: 1px solid var(--line);
}

/* Start with TEXT → IMAGE */
.person-card:nth-child(odd) {
    flex-direction: row-reverse;
}

/* Then IMAGE → TEXT */
.person-card:nth-child(even) {
    flex-direction: row;
}

.person-card .image,
.person-card .text {
    width: 50%;
    flex: 0 0 50%;
}

.person-card .image {
    background-size: cover;
    background-position: center;
}

.person-card .image.moos {
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    margin-bottom: 20px;
}

.person-card .text {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px;
    box-sizing: border-box;
}

.text-inner {
    max-width: 500px;
}

.text {
    display: flex;
    align-items: center;
    padding: 80px;
}

.text-inner{
    max-width:520px;
}

.text-inner h2{
    font-family:'Stefan',serif;
    font-size:2.2rem;
    margin-bottom:20px;
}

.text-inner p{
    line-height:1.9;
}




/* Values */
.values{
    border-top:1px solid var(--line);
    padding:120px 8%;
}

.values h2{
    font-family:'Stefan',serif;
    font-size:2.5rem;
    margin-bottom:60px;
}

.values-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:50px;
}

.value h3{
    font-family:'Playfair Display',serif;
    margin-bottom:15px;
}

.value p{
    line-height:1.8;
}

/* Quote */
.quote{
    border-top:1px solid var(--line);
    padding:160px 8%;
    text-align:center;
}

.quote p{
    max-width:900px;
    margin:auto;
    font-size:clamp(1.6rem,3vw,2.6rem);
    line-height:1.6;
    font-family:'Playfair Display',serif;
}

/* large CTA section (from wiezijnwij) */
.cta-section{
    height:70vh;
    background: url('../images/hero.jpg') center/cover no-repeat;
    position:relative;
    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:white;
}

.cta-section::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.35);
}

.cta-inner{
    position:relative;
    z-index:2;
}

.cta-inner h2{
    font-family:'Stefan',serif;
    font-size:3rem;
    margin-bottom:25px;
}

/* large CTA button inside the big .cta-section only */
.cta-section .button{
    display:inline-block;
    padding:18px 32px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:60% 40% 55% 45% / 55% 60% 40% 45%;
    transition:0.3s;
}

.cta-section .button:hover{
    transform:scale(1.05);
}

.cta-image {
    background: url('../images/hero.jpg') center/cover no-repeat;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* reuse your existing CTA overlay style */
.cta-image::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.35);
}

/* make inner content sit above overlay */
.cta-image .cta-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
}

.cta-image .button{
    display:inline-block;
    padding:18px 32px;
    background:white;
    color:black;
    text-decoration:none;
    border-radius:60% 40% 55% 45% / 55% 60% 40% 45%;
    transition:0.3s;
}

.cta-image .button:hover{
    transform:scale(1.05);
}

@media(max-width:900px){

     .person-card {
        flex-direction: column !important;
        min-height: auto;
    }

    .person-card .image,
    .person-card .text {
        width: 100%;
        flex: 0 0 100%;
    }

    .person-card .image {
        height: 300px; /* adjust if you want taller/shorter images */
    }

    .person-card .text {
        padding: 40px 25px;
    }

    .person-card .image {
        order: 1;
    }

    .person-card .text {
        order: 2;
    }
}

/* ---- end of wiezijnwij styles ---- */
