/* =========================================================
   BASIS
========================================================= */

:root {
    --background: #f7f3eb;
    --white: #ffffff;
    --text: #30342f;
    --muted: #686d65;

    --olive: #58654b;
    --olive-dark: #354235;
    --olive-light: #eef0e7;

    --sand: #ede3d3;

    --max-width: 1180px;
    --radius: 10px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--text);
    background: var(--background);
    line-height: 1.7;
}

img {
    display: block;
    width: 100%;
}

a {
    color: inherit;
}

.container {
    width: min(90%, var(--max-width));
    margin-inline: auto;
}


/* =========================================================
   TYPOGRAFIE
========================================================= */

h1,
h2,
h3,
p {
    margin-top: 0;
}

h1,
h2 {
    line-height: 1.1;
    font-weight: 500;
}

h1 {
    font-size: clamp(2.8rem, 6vw, 5.5rem);
    max-width: 850px;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.4rem);
    margin-bottom: 24px;
}

p {
    font-size: 1.08rem;
}

.eyebrow {
    margin-bottom: 14px;
    text-transform: uppercase;
    letter-spacing: 0.16em;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--olive);
}

.eyebrow.light {
    color: #dce5d7;
}


/* =========================================================
   HEADER
========================================================= */

.site-header {
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(0, 0, 0, 0.07);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
}

.logo {
    font-size: 1.35rem;
    font-weight: 700;
    text-decoration: none;
}

nav ul {
    list-style: none;
    display: flex;
    gap: 28px;
    margin: 0;
    padding: 0;
}

nav a {
    text-decoration: none;
}

nav a:hover {
    color: var(--olive);
}


/* =========================================================
   HERO
========================================================= */

.hero {
    min-height: calc(100vh - 76px);
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(15, 23, 14, 0.72) 0%,
            rgba(15, 23, 14, 0.42) 55%,
            rgba(15, 23, 14, 0.10) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    padding-top: 90px;
    padding-bottom: 90px;
}

.hero .eyebrow {
    color: #f0eadf;
}

.hero-text {
    max-width: 650px;
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    margin-bottom: 34px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}


/* =========================================================
   KNOPPEN
========================================================= */

.button {
    display: inline-block;
    padding: 14px 24px;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.2s ease;
}

.button-primary {
    background: var(--olive-dark);
    color: white;
}

.button-primary:hover {
    background: #29342a;
}

.button-secondary {
    border: 1px solid white;
    color: white;
    background: rgba(0, 0, 0, 0.10);
}

.button-secondary:hover {
    background: white;
    color: var(--olive-dark);
}

.button-outline {
    border: 1px solid var(--olive-dark);
    color: var(--olive-dark);
}

.button-outline:hover {
    background: var(--olive-dark);
    color: white;
}

.button-light {
    background: white;
    color: var(--olive-dark);
}

.button-ghost {
    border: 1px solid rgba(255, 255, 255, 0.7);
    color: white;
}

.text-link {
    color: var(--olive-dark);
    font-weight: 700;
    text-decoration: none;
}


/* =========================================================
   SECTIES
========================================================= */

.section {
    padding: 100px 0;
}

.section-heading {
    max-width: 760px;
    margin-bottom: 55px;
}

.section-heading h2 + p {
    max-width: 680px;
}

.center {
    text-align: center;
    margin-top: 45px;
}


/* =========================================================
   FEATURES
========================================================= */

.intro {
    background: var(--background);
}

.features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d8d4cc;
    border-left: 1px solid #d8d4cc;
}

.feature {
    min-height: 165px;
    padding: 30px;
    display: flex;
    flex-direction: column;
    border-right: 1px solid #d8d4cc;
    border-bottom: 1px solid #d8d4cc;
}

.feature-icon {
    font-size: 1.7rem;
    margin-bottom: 12px;
}

.feature strong {
    font-size: 1.08rem;
}

.feature span:last-child {
    color: var(--muted);
    font-size: 0.95rem;
}


/* =========================================================
   GALERIJ
========================================================= */

.gallery-section {
    background: var(--white);
}

.gallery {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: repeat(2, 280px);
    gap: 12px;
}

.gallery figure {
    margin: 0;
    overflow: hidden;
}

.gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-large {
    grid-row: 1 / 3;
}


/* =========================================================
   PUGLIA
========================================================= */

.puglia-section {
    background: var(--olive-light);
}

.split {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 80px;
    align-items: center;
}

.split-image {
    aspect-ratio: 3 / 2;
    overflow: hidden;
}

.split-image img {
    height: 100%;
    object-fit: cover;
}

.split-content {
    max-width: 520px;
}


/* =========================================================
   PERSOONLIJK
========================================================= */

.personal-section {
    background: var(--sand);
}

.personal-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 90px;
    align-items: center;
}

.personal-text {
    max-width: 650px;
}

.personal-image {
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.personal-image img {
    height: 100%;
    object-fit: cover;
}


/* =========================================================
   CTA
========================================================= */

.cta-section {
    background: var(--olive-dark);
    color: white;
    padding: 105px 0;
}

.cta-content {
    max-width: 780px;
}

.cta-content h2 {
    color: white;
}

.price {
    font-size: 1.4rem;
    margin: 28px 0 12px;
}

.price strong {
    font-size: 2.4rem;
}


/* =========================================================
   FOOTER
========================================================= */

footer {
    background: #222922;
    color: #d8ddd7;
    padding: 35px 0;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 25px;
}

.footer-content p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-content nav {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 900px) {

    .features {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }

    .gallery figure {
        aspect-ratio: 3 / 2;
    }

    .gallery-large {
        grid-column: 1 / 3;
        grid-row: auto;
        aspect-ratio: 16 / 9;
    }

    .split,
    .personal-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .personal-image {
        max-width: 600px;
    }
}


/* =========================================================
   MOBIEL
========================================================= */

@media (max-width: 650px) {

    .section {
        padding: 70px 0;
    }

    .site-header {
        position: relative;
    }

    .nav-container {
        flex-direction: column;
        align-items: flex-start;
        padding: 18px 0;
        gap: 14px;
    }

    nav ul {
        flex-wrap: wrap;
        gap: 10px 20px;
        font-size: 0.9rem;
    }

    .hero {
        min-height: 680px;
    }

    .hero-content {
        padding-top: 70px;
        padding-bottom: 70px;
    }

    .features {
        grid-template-columns: 1fr;
    }

    .gallery {
        display: block;
    }

    .gallery figure,
    .gallery-large {
        margin-bottom: 12px;
        aspect-ratio: 3 / 2;
    }

    .footer-content {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* =========================================================
   BINNENPAGINA HERO
========================================================= */

.hero-small {
    min-height: 560px;
}


/* =========================================================
   VOORZIENINGEN
========================================================= */

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.amenity-card {
    background: #ffffff;
    padding: 30px;
    border: 1px solid #dedbd3;
}

.amenity-card h3 {
    margin-top: 0;
    margin-bottom: 18px;
    font-size: 1.25rem;
}

.amenity-card ul {
    margin: 0;
    padding-left: 20px;
}

.amenity-card li {
    margin-bottom: 8px;
}


/* TABLET */

@media (max-width: 900px) {

    .amenities-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}


/* MOBIEL */

@media (max-width: 650px) {

    .hero-small {
        min-height: 480px;
    }

    .amenities-grid {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   ZIEN & DOEN - PLAATSKAARTEN
========================================================= */

.places-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 45px;
}

.place-card {
    background: #fff;
    border: 1px solid #dedbd3;
    overflow: hidden;
}

.place-card img {
    display: block;
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.place-content {
    padding: 30px;
}

.place-content h3 {
    margin: 5px 0 15px;
    font-size: 1.6rem;
}

.place-distance {
    margin: 0;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.place-content a {
    display: inline-block;
    margin-top: 12px;
    font-weight: 700;
}


/* Links in luchthavenblokken */

.feature a {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.9rem;
    font-weight: 700;
}


/* Mobiel */

@media (max-width: 700px) {

    .places-grid {
        grid-template-columns: 1fr;
    }

    .place-card img {
        height: 240px;
    }

}
/* =========================================================
   STRANDFOTO'S
========================================================= */


.beach-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin: 35px 0;
}

.beach-images img {
    width: 100%;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* MOBIEL */

@media (max-width: 700px) {

    .beach-images {
        grid-template-columns: 1fr;
    }

}
/* =========================================================
   PRIJZEN
========================================================= */

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 45px;
}

.price-card {
    background: #fff;
    border: 1px solid #dedbd3;
    padding: 35px;
}

.price-season {
    font-weight: 700;
    margin-bottom: 20px;
}

.price-amount {
    font-size: 2.6rem;
    line-height: 1;
    color: var(--olive-dark);
    margin-bottom: 18px;
}

.price-amount span {
    display: block;
    font-size: 0.9rem;
    font-weight: 400;
    margin-top: 8px;
    color: var(--muted);
}

.price-extra {
    margin-top: 25px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #d8d4cc;
    border-left: 1px solid #d8d4cc;
}

.price-extra > div {
    padding: 24px;
    border-right: 1px solid #d8d4cc;
    border-bottom: 1px solid #d8d4cc;
}

.price-extra strong,
.price-extra span {
    display: block;
}

.price-extra span {
    margin-top: 5px;
    color: var(--muted);
}


/* =========================================================
   INBEGREPEN
========================================================= */

.included-list {
    padding-left: 22px;
    margin: 25px 0;
}

.included-list li {
    margin-bottom: 8px;
}


/* =========================================================
   RESERVEREN
========================================================= */

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.booking-step {
    padding: 30px 0;
}

.booking-step > span {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--olive);
    border-radius: 50%;
    color: var(--olive);
    font-weight: 700;
    margin-bottom: 20px;
}

.booking-step h3 {
    margin-bottom: 12px;
}

.payment-info {
    max-width: 760px;
    margin-top: 45px;
    padding-top: 35px;
    border-top: 1px solid #d8d4cc;
}


/* =========================================================
   CONTACT
========================================================= */

.contact-section {
    background: var(--sand);
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.75fr 1.25fr;
    gap: 80px;
    align-items: start;
}

.contact-intro {
    max-width: 460px;
}

.contact-form {
    background: #fff;
    padding: 42px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.form-group {
    margin-bottom: 22px;
}

.form-group label {
    display: block;
    margin-bottom: 7px;
    font-size: 0.9rem;
    font-weight: 700;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 14px;
    border: 1px solid #cbc8c0;
    background: #fff;
    color: var(--text);
    font: inherit;
}

.form-group textarea {
    resize: vertical;
}

/* =========================================================
   TABLET / MOBIEL
========================================================= */

@media (max-width: 900px) {

    .price-grid,
    .booking-steps {
        grid-template-columns: 1fr;
    }

    .price-extra {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {

    .split-images {
        grid-template-columns: 1fr;
    }

    .split-images img {
        height: auto;
    }
}



@media (max-width: 650px) {

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form {
        padding: 25px;
    }

}

.split-images {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.split-images img {
    width: 100%;
    height: 420px;
    object-fit: contain;
    background: #f3f1ec;
    display: block;
}

.train-photo {
    margin-top: 24px;
}

.train-photo img {
    display: block;
    width: 100%;
    max-width: 500px;
    height: auto;
}


.practical-content h2 {
    margin-bottom: 22px;
}

.practical-section {
    padding-top: 50px;
    padding-bottom: 50px;
}

.personal-content {
    max-width: 820px;
    margin: 0 auto;
}