:root {
    --cream: #f4f0e8;
    --paper: #fbf8f2;
    --ink: #4f4a43;
    --dark: #243026;
    --line: #d9d1c4;
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Arial, Helvetica, sans-serif;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--ink);
    font-family: var(--sans);
    line-height: 1.65;
}

img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

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

.container {
    width: min(1180px, calc(100% - 40px));
    margin: auto;
}


/* --------------------------------------------------
   NAVIGATIE
-------------------------------------------------- */

.site-header {
    position: absolute;
    z-index: 20;
    top: 0;
    left: 0;
    right: 0;
    padding: 24px 0;
    color: #fff;
    background: rgba(36, 48, 38, 0.68);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.nav {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.brand {
    font-family: var(--serif);
    letter-spacing: .14em;
    text-transform: uppercase;
    font-size: 18px;
    line-height: 1.1;
}

.brand small {
    display: block;
    font-family: var(--sans);
    font-size: 8px;
    letter-spacing: .26em;
    margin-top: 7px;
    text-align: center;
}

.menu {
    display: flex;
    gap: 28px;
    align-items: center;
    font-size: 11px;
    letter-spacing: .14em;
    text-transform: uppercase;
}

.menu .book {
    border: 1px solid rgba(255,255,255,.65);
    padding: 11px 18px;
}

.menu-toggle {
    display: none;
    border: 1px solid rgba(255,255,255,.7);
    background: transparent;
    color: #fff;
    padding: 10px 12px;
    font-size: 18px;
}


/* --------------------------------------------------
   HERO HOMEPAGE
-------------------------------------------------- */

.hero {
    min-height: 88vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end;
    background: #39453d;
}

.hero > img {
    position: absolute;
    inset: 0;
}

.hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(25,28,22,.55),
            rgba(25,28,22,.05) 62%
        ),
        linear-gradient(
            0deg,
            rgba(20,25,18,.35),
            transparent 55%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 0 10vh;
    max-width: 720px;
}

.eyebrow {
    font-size: 10px;
    letter-spacing: .22em;
    text-transform: uppercase;
}

.hero h1,
.display {
    font-family: var(--serif);
    font-weight: 400;
}

.hero h1 {
    font-size: clamp(46px, 6vw, 84px);
    line-height: 1.02;
    margin: 14px 0 22px;
}

.hero p {
    max-width: 590px;
    font-size: 15px;
    letter-spacing: .03em;
}


/* --------------------------------------------------
   BUTTONS
-------------------------------------------------- */

.btn {
    display: inline-block;
    margin-top: 20px;
    padding: 13px 20px;
    border: 1px solid currentColor;
    font-size: 10px;
    letter-spacing: .16em;
    text-transform: uppercase;
    transition: .2s;
}

.btn:hover {
    background: currentColor;
}

.btn:hover span {
    color: #fff;
}


/* --------------------------------------------------
   ALGEMENE SECTIES
-------------------------------------------------- */

.section {
    padding: 90px 0;
}


/* --------------------------------------------------
   INTRO
-------------------------------------------------- */

.intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.4fr;
    gap: 80px;
    align-items: center;
}

.intro-copy h2 {
    font-size: 42px;
    line-height: 1.1;
    margin: 0 0 25px;
}

.intro-copy p {
    max-width: 430px;
}


/* --------------------------------------------------
   FOTO DRIELUIK
-------------------------------------------------- */

.photo-triptych {
    display: grid;
    grid-template-columns: 1fr 1fr .85fr;
    gap: 14px;
    height: 520px;
}

.photo-triptych img:nth-child(1) {
    object-position: center;
}

.photo-triptych img:nth-child(3) {
    object-position: center;
}


/* --------------------------------------------------
   ZWEMBAD / LANDSCAPE BANNER

   BELANGRIJK:
   De foto staat absoluut in het blok.
   Daardoor staat de tekst OVER de foto en niet eronder.
-------------------------------------------------- */

.landscape-banner {
    height: 520px;
    position: relative;
    color: #fff;
    display: grid;
    place-items: center;
    text-align: center;
    overflow: hidden;
}

/* De foto vult de volledige banner */
.landscape-banner > img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    /*
       Hiermee tonen we zoveel mogelijk van de onderzijde
       van de originele zwembadfoto.
    */
    object-position: center bottom;
}

/* Donkere transparante laag boven de foto */
.landscape-banner:after {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(28,34,24,.35);
}

/* Tekst ligt boven foto en overlay */
.landscape-banner .inner {
    position: relative;
    z-index: 2;
    max-width: 600px;
    padding: 30px 24px;
}

.landscape-banner h2 {
    font-size: 52px;
    line-height: 1.05;
    margin: 10px 0;
}


/* --------------------------------------------------
   GÎTE CARDS
-------------------------------------------------- */

.cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.stay-card {
    height: 500px;
    position: relative;
    color: #fff;
    overflow: hidden;
}

.stay-card:after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(20,25,18,.55),
            rgba(20,25,18,.08)
        );
}

.stay-card .overlay {
    position: absolute;
    z-index: 2;
    inset: auto 30px 34px;
    text-align: center;
}

.stay-card h3 {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 400;
    margin: 6px;
}

.meta {
    font-size: 10px;
    letter-spacing: .14em;
    text-transform: uppercase;
}


/* --------------------------------------------------
   POOL SECTION
-------------------------------------------------- */

.pool {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    background: var(--cream);
}

.pool .copy {
    padding: 80px;
}

.pool .image {
    min-height: 560px;
}

.pool h2 {
    font-size: 48px;
    line-height: 1.08;
}


/* --------------------------------------------------
   QUOTE
-------------------------------------------------- */

.quote {
    text-align: center;
    padding: 72px 20px;
}

.quote p {
    font-family: var(--serif);
    font-size: 34px;
    max-width: 760px;
    margin: 10px auto 30px;
}


/* --------------------------------------------------
   PAGE HERO
-------------------------------------------------- */

.page-hero {
    height: 66vh;
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end;
}

.page-hero:after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(18,23,17,.6),
            transparent 70%
        );
}

.page-hero .content {
    position: relative;
    z-index: 2;
    padding-bottom: 55px;
}

.page-hero h1 {
    font-family: var(--serif);
    font-size: 64px;
    font-weight: 400;
    margin: 8px 0;
}


/* --------------------------------------------------
   DETAILS
-------------------------------------------------- */

.details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
}

.details h2 {
    font-family: var(--serif);
    font-size: 44px;
    font-weight: 400;
    line-height: 1.1;
}


/* --------------------------------------------------
   FACTS
-------------------------------------------------- */

.facts {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    margin: 35px 0;
}

.fact {
    padding: 22px 15px;
    border-right: 1px solid var(--line);
    text-align: center;
}

.fact:last-child {
    border-right: 0;
}

.fact strong {
    display: block;
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 400;
}


/* --------------------------------------------------
   GALLERY
-------------------------------------------------- */

.gallery {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    grid-auto-rows: 330px;
    gap: 12px;
}

.gallery .wide {
    grid-column: span 2;
}

.gallery .tall {
    grid-row: span 2;
}


/* --------------------------------------------------
   INFO
-------------------------------------------------- */

.info-list {
    columns: 2;
    gap: 40px;
    padding: 0;
    list-style: none;
}

.info-list li {
    padding: 7px 0;
    border-bottom: 1px solid #e6e0d6;
}


/* --------------------------------------------------
   FOOTER
-------------------------------------------------- */

.footer {
    background: #273027;
    color: #eee8dc;
    padding: 55px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
}

.footer h4 {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin: 0 0 15px;
}

.footer p,
.footer a {
    font-size: 12px;
    color: #d8d2c6;
}

.subtle {
    font-size: 12px;
    opacity: .72;
}


/* --------------------------------------------------
   RESERVEREN
-------------------------------------------------- */

.sticky-book {
    display: none;
}

.reserve-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.reserve-card {
    padding: 40px;
    border: 1px solid var(--line);
    background: #fff;
}

.reserve-card h3 {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 400;
    margin: 0 0 8px;
}


/* --------------------------------------------------
   REGIO
-------------------------------------------------- */

.region-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.region-grid .block {
    min-height: 420px;
    position: relative;
    color: #fff;
    display: flex;
    align-items: flex-end;
    padding: 30px;
    overflow: hidden;
}

.region-grid .block:after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            0deg,
            rgba(20,25,18,.55),
            transparent
        );
}

.region-grid .block div {
    z-index: 2;
}

.region-grid h3 {
    font-family: var(--serif);
    font-size: 36px;
    margin: 0;
}


/* --------------------------------------------------
   LIGHTBOX
-------------------------------------------------- */

.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,.92);
    display: none;
    place-items: center;
    z-index: 100;
    padding: 30px;
}

.lightbox.open {
    display: grid;
}

.lightbox img {
    max-width: 95vw;
    max-height: 90vh;
    width: auto;
    height: auto;
}

.close-lb {
    position: absolute;
    right: 25px;
    top: 18px;
    color: white;
    font-size: 34px;
    cursor: pointer;
}


/* ==================================================
   TABLET / SMALL LAPTOP
================================================== */

@media (max-width: 900px) {

    .menu {
        display: none;
        position: absolute;
        top: 72px;
        left: 20px;
        right: 20px;
        background: rgba(30,36,29,.97);
        padding: 25px;
        flex-direction: column;
        align-items: flex-start;
    }

    .menu.open {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }

    .hero {
        min-height: 78vh;
    }

    .hero-content {
        padding-bottom: 8vh;
    }

    .intro-grid,
    .details,
    .pool,
    .footer-grid,
    .reserve-grid {
        grid-template-columns: 1fr;
    }

    .photo-triptych {
        height: auto;
        grid-template-columns: 1fr 1fr;
    }

    .photo-triptych img {
        height: 360px;
    }

    .photo-triptych img:nth-child(3) {
        grid-column: span 2;
        height: 300px;
    }

    .pool .copy {
        padding: 55px 30px;
    }

    .cards,
    .region-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery .wide {
        grid-column: span 2;
    }

    .page-hero h1 {
        font-size: 52px;
    }

    .sticky-book {
        display: block;
        position: fixed;
        z-index: 30;
        bottom: 12px;
        left: 12px;
        right: 12px;
        background: #283226;
        color: #fff;
        text-align: center;
        padding: 14px;
        font-size: 11px;
        letter-spacing: .14em;
        text-transform: uppercase;
        box-shadow: 0 7px 28px rgba(0,0,0,.22);
    }
}


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

@media (max-width: 600px) {

    .container {
        width: min(100% - 28px,1180px);
    }

    .site-header {
        padding: 18px 0;
    }

    .brand {
        font-size: 15px;
    }

    /* Homepage: hero-tekst onder de header laten beginnen */
    .hero {
        padding-top: 80px;
    }

    .hero-content {
        padding-top: 20px;
    }

    .hero h1 {
        font-size: 48px;
    }

    .section {
        padding: 64px 0;
    }

    .intro-grid {
        gap: 36px;
    }

    .intro-copy h2,
    .pool h2 {
        font-size: 36px;
    }

    .photo-triptych {
        grid-template-columns: 1fr;
    }

    .photo-triptych img,
    .photo-triptych img:nth-child(3) {
        grid-column: auto;
        height: 330px;
    }


    /* Zwembadbanner op mobiel */
    .landscape-banner {
        height: 430px;
    }

    .landscape-banner > img {
        object-position: center bottom;
    }

    .landscape-banner .inner {
        width: min(100% - 40px, 600px);
        padding: 20px 0;
    }

    .landscape-banner h2 {
        font-size: 40px;
        line-height: 1.08;
    }


    .stay-card {
        height: 420px;
    }

    .details {
        gap: 35px;
    }

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

    .fact {
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .fact:last-child {
        border-bottom: 0;
    }

    .gallery {
        grid-template-columns: 1fr;
        grid-auto-rows: 340px;
    }

    .gallery .wide {
        grid-column: auto;
    }

    .gallery .tall {
        grid-row: auto;
    }

    .info-list {
        columns: 1;
    }

    .page-hero {
        height: 58vh;
    }

    .page-hero h1 {
        font-size: 46px;
    }

    .quote p {
        font-size: 28px;
    }

    .pool .image {
        min-height: 420px;
    }

    .region-grid .block {
        min-height: 360px;
    }
}
/* Donkerder achtergrondvlak op de gîte pagina's */
.page-hero {
    background: linear-gradient(
        135deg,
        #667064 0%,
        #4b554b 100%
    );
}
/* --------------------------------------------------
   OMGEVING - EDITORIAL BLOKKEN
-------------------------------------------------- */

.region-editorial {
    padding: 80px 0;
}

.region-feature {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto 110px;
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    align-items: center;
    gap: 80px;
}

.region-feature.reverse {
    grid-template-columns: 1.15fr 0.85fr;
}

.region-feature.reverse .region-feature-copy {
    order: 2;
}

.region-feature.reverse .region-feature-image {
    order: 1;
}

.region-feature-copy {
    padding: 20px 0;
}

.region-feature-copy .eyebrow {
    display: block;
    margin-bottom: 12px;
    color: #676d61;
}

.region-feature-copy h2 {
    margin: 0 0 28px;
    font-family: var(--serif);
    font-size: 48px;
    line-height: 1.08;
    font-weight: 400;
    color: var(--ink);
}

.region-feature-copy p {
    max-width: 500px;
    margin: 0 0 20px;
    font-size: 16px;
    line-height: 1.8;
}

.region-feature-image {
    height: 520px;
    overflow: hidden;
}

.region-feature-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


/* TABLET */
@media (max-width: 900px) {

    .region-feature,
    .region-feature.reverse {
        grid-template-columns: 1fr;
        gap: 35px;
        margin-bottom: 80px;
    }

    .region-feature.reverse .region-feature-copy,
    .region-feature.reverse .region-feature-image {
        order: initial;
    }

    .region-feature-image {
        height: 440px;
    }

    .region-feature-copy h2 {
        font-size: 42px;
    }
}


/* MOBIEL */
@media (max-width: 600px) {

    .region-editorial {
        padding: 55px 0;
    }

    .region-feature {
        width: min(100% - 28px, 1180px);
        margin-bottom: 70px;
        gap: 28px;
    }

    .region-feature-image {
        height: 330px;
    }

    .region-feature-copy h2 {
        font-size: 36px;
    }

    .region-feature-copy p {
        font-size: 15px;
    }
}
/* ==================================================
   MOBIELE FIX VOOR PAGE HERO
   Gîte 1, Gîte 2 en De omgeving
================================================== */

@media (max-width: 900px) {

    .page-hero {
        display: block !important;
        height: auto !important;
        min-height: 0 !important;
        overflow: hidden !important;
    }

    /* Foto bovenaan */
    .page-hero > img {
        position: relative !important;
        inset: auto !important;
        width: 100% !important;
        height: 55vh !important;
        min-height: 340px !important;
        object-fit: cover !important;
    }

    /* Donkere overlay van desktop uitschakelen */
    .page-hero:after {
        display: none !important;
    }

    /* Tekstblok volledig onder de foto */
    .page-hero .content {
        position: relative !important;
        width: 100% !important;
        max-width: none !important;
        height: auto !important;
        min-height: 0 !important;

        margin: 0 !important;
        padding: 42px 28px !important;

        background: linear-gradient(
            160deg,
            #596457 0%,
            #303a31 100%
        ) !important;

        color: #fff !important;
    }

    .page-hero h1 {
        font-size: 48px !important;
        line-height: 1.05 !important;
        margin: 12px 0 22px !important;
    }
}
/* ==================================================
   TAALKEUZE / LANGUAGE SWITCHER
================================================== */
.language-switch {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-left: 2px;
    font-size: 10px;
    letter-spacing: .12em;
    white-space: nowrap;
}

.language-switch a {
    opacity: .72;
    padding: 4px 1px;
}

.language-switch a:hover,
.language-switch a.active {
    opacity: 1;
}

.language-switch a.active {
    border-bottom: 1px solid currentColor;
}

.language-switch span {
    opacity: .45;
}

@media (max-width: 900px) {
    .language-switch {
        margin: 6px 0 0;
        font-size: 11px;
    }
}
