/* --- KLEUREN & BASISSTIJL --- */
:root {
    --background-color: #fbfbf6;
    --text-color: #4a4a4a;
    --heading-color: #333;
}

body {
    margin: 0;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 300; /* Light variant */
    font-size: 15px;
    line-height: 1.5;
    background-color: var(--background-color);
    color: var(--heading-color);
    padding-top: 100px; 
    padding-bottom: 80px;
    box-sizing: border-box;
}

body.video-homepage {
    padding-top: 0;
    padding-bottom: 0;
    overflow: hidden;
}


/* --- VASTE HEADER & FOOTER (voor alle pagina's) --- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 2rem 4vw;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 100;
    transition: background-color 0.3s ease;
    background-color: var(--background-color);
}

.header-logo img {
    max-width: 250px;
    height: auto;
}

.main-nav a {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--heading-color);
    text-decoration: none;
    margin-left: 2rem;
    transition: opacity 0.2s;
}

.main-nav a:hover {
    opacity: 0.7;
}

.video-footer-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 4vw;
    box-sizing: border-box;
    text-align: center;
    z-index: 100;
    transition: background-color 0.3s ease;
    background-color: var(--background-color);
}

.video-footer-nav a {
    font-weight: 400;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    color: var(--heading-color);
    text-decoration: none;
    margin: 0 1.5rem;
    transition: opacity 0.2s;
}

.video-footer-nav a:hover {
    opacity: 0.7;
}


/* --- STYLING VOOR VIDEO HOMEPAGE (index.html) --- */
.video-homepage .main-header,
.video-homepage .video-footer-nav {
    background-color: transparent;
    border: none;
}

.video-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.video-background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* --- STYLING VOOR 'OUR HOUSE' PAGINA (our-house.html) --- */
.grid-container {
    display: grid;
    grid-template-columns: 4fr 6fr;
    align-items: start;
    gap: 4vw;
    padding: 0 4vw;
    max-width: 1920px;
    margin: auto;
}

.left-column {
    height: calc(100vh - 180px);
    position: -webkit-sticky;
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-sizing: border-box;
}

.left-column-top {
    text-align: left;
}

.our-house-details {
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.our-house-details p {
    margin: 0 0 1.5rem 0;
}

.button-primary {
    display: inline-block;
    background-color: var(--heading-color);
    color: var(--background-color);
    padding: 14px 35px;
    text-decoration: none;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 500;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    transition: background-color 0.2s;
    margin-top: 2rem;
    border: none;
}
.button-primary:hover {
    background-color: #000;
    color: #fff;
}

.scroll-column img {
    display: block;
    width: 100%;
    margin-bottom: 2vw;
}


/* --- STYLING VOOR CONTENT PAGINA'S (book, contact, privacy, about) --- */
.content-section {
    padding: 3rem 4vw 5rem 4vw;
    text-align: center;
}

.content-section h2 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 2.5rem;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--heading-color);
}

.page-subtitle {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto 3rem auto;
    line-height: 1.6;
    color: var(--text-color);
    opacity: 0.8;
}

.widget-container {
    border: none;
    padding: 0;
    margin-top: 1rem;
    text-align: left;
    min-height: auto;
    display: block;
}

.text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: left;
    line-height: 1.7;
}

.text-container h3 {
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.contact-page-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 180px);
    text-align: center;
    box-sizing: border-box;
}

.contact-details {
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.contact-details p {
    margin: 0;
}

.contact-details a {
    color: var(--heading-color);
    text-decoration: none;
    transition: opacity 0.2s;
}

.contact-details a:hover {
    opacity: 0.7;
}

.about-page-content {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 180px);
    padding: 2rem;
    box-sizing: border-box;
}

.about-text-block {
    max-width: 800px;
    text-align: left;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.1em;
    line-height: 1.8;
}

.about-text-block p {
    margin: 0 0 2.5rem 0;
}

.about-credits p {
    margin: 0;
}


/* --- RESPONSIVE GEDRAG --- */
@media (max-width: 991.98px) {
    body {
        padding-top: 120px;
        padding-bottom: 80px;
    }
    
    .main-header {
        padding: 1.5rem 2rem;
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    body:not(.video-homepage) .main-header {
        background-color: var(--background-color);
    }

    body:not(.video-homepage) .video-footer-nav {
        background-color: var(--background-color);
    }

    .main-nav {
        text-align: center;
    }
    
    .main-nav a {
        display: inline-block;
        margin: 0 1rem;
    }
    
    /* --- DE FIX --- */
    .video-footer-nav {
        padding: 1rem;
        position: fixed; /* Expliciet herhalen voor mobiel */
        bottom: 0;
        left: 0;
        width: 100%;
    }
    /* Einde fix */

    .video-footer-nav a {
        margin: 0 0.5rem;
        font-size: 0.7rem;
    }

    .grid-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
        margin-bottom: 3rem;
    }
    .left-column {
        height: auto;
        position: static;
        overflow-y: visible;
        top: auto;
    }

    .scroll-column {
        padding-bottom: 80px;
    }
}