:root {
    --green: #294c3c;
    --green-dark: #1d382d;
    --green-light: #dce7df;

    --cream: #fbf7f0;
    --cream-dark: #f1e8da;

    --orange: #e58955;
    --orange-light: #f3c19f;

    --brown: #493b33;
    --text: #403a35;
    --muted: #776f67;

    --white: #ffffff;

    --radius: 28px;

    --shadow: 0 20px 60px rgba(45, 38, 31, 0.10);
}


/* =========================================
   RESET
========================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--cream);
    color: var(--text);
    line-height: 1.7;
}

img {
    width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    font-family: inherit;
}

.container {
    width: min(1120px, 90%);
    margin: 0 auto;
}

.section {
    padding: 110px 0;
}

h1,
h2,
h3 {
    line-height: 1.1;
}

h1,
h2 {
    font-family: "Playfair Display", serif;
}

h2 {
    font-size: clamp(2.6rem, 5vw, 4.5rem);
}

h2 span {
    color: var(--orange);
}

.eyebrow {
    display: inline-block;
    color: var(--orange);
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .15em;
    margin-bottom: 18px;
}


/* =========================================
   NAV
========================================= */

.navbar {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    color: white;
    transition: .3s ease;
}

.navbar.scrolled {
    position: fixed;
    background: rgba(41, 76, 60, .96);
    backdrop-filter: blur(10px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, .08);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
}

.logo {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 700;
}

nav {
    display: flex;
    align-items: center;
    gap: 20px;
}

nav a {
    font-size: .82rem;
    font-weight: 600;
    transition: .2s;
}

nav a:hover {
    opacity: .7;
}

.nav-cta {
    padding: 11px 18px;
    border-radius: 50px;
    background: white;
    color: var(--green);
}

.mobile-menu {
    display: none;
    border: none;
    background: transparent;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}


/* =========================================
   HERO
========================================= */

.hero {
    min-height: 800px;
    position: relative;
    display: flex;
    align-items: center;
    color: white;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    inset: 0;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(
            90deg,
            rgba(22, 43, 33, .90) 0%,
            rgba(22, 43, 33, .65) 45%,
            rgba(22, 43, 33, .10) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;

.hero-badge {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .13);
    border: 1px solid rgba(255, 255, 255, .25);
    backdrop-filter: blur(8px);
    font-size: .85rem;
    margin-bottom: 25px;
}
}

.hero h1 {
    font-size: clamp(4rem, 8vw, 7rem);
    letter-spacing: -.04em;
    margin-bottom: 30px;
}

.hero h1 span {
    color: var(--orange-light);
}

.hero-description {
    max-width: 650px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .88);
    margin-bottom: 35px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 24px;
    border-radius: 50px;
    font-weight: 700;
    transition: .25s ease;
}

.button:hover {
    transform: translateY(-3px);
}

.button-primary {
    background: var(--orange);
    color: white;
    box-shadow: 0 10px 30px rgba(229, 137, 85, .25);
}

.button-light {
    color: white;
    border: 1px solid rgba(255, 255, 255, .4);
}

.button-dark {
    background: var(--green);
    color: white;
}

.hero-trust {
    display: flex;
    gap: 45px;
    margin-top: 60px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .2);
}

.hero-trust div {
    display: flex;
    flex-direction: column;
}

.hero-trust strong {
    font-family: "Playfair Display", serif;
    font-size: 1.35rem;
}

.hero-trust span {
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
}

.hero-scroll {
    position: absolute;
    bottom: 30px;
    right: 5%;
    color: rgba(255, 255, 255, .65);
    font-size: .75rem;
    text-transform: uppercase;
    letter-spacing: .12em;
}


/* =========================================
   INTRO
========================================= */

.intro {
    background: var(--cream);
}

.intro-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 100px;
    align-items: center;
}

.scribble {
    font-family: "Pacifico", cursive;
    color: var(--orange);
    font-size: 1.4rem;
}

.intro-title h2 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    margin-top: 10px;
}

.intro-copy {
    color: var(--muted);
    font-size: 1.05rem;
}

.big-copy {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    color: var(--brown);
    line-height: 1.35;
    margin-bottom: 25px;
}

.big-copy strong {
    color: var(--green);
}

.intro-copy p {
    margin-bottom: 18px;
}


/* =========================================
   AVAILABILITY
========================================= */

.availability {
    background: white;
}

.availability-heading {
    margin-bottom: 45px;
}

.section-top {
    display: grid;
    grid-template-columns: 1fr .7fr;
    gap: 80px;
    align-items: end;
}

.section-top > p {
    color: var(--muted);
    font-size: 1.05rem;
}

.availability-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
}

.availability-card {
    background: var(--cream);
    border-radius: 22px;
    padding: 28px;
    border: 1px solid #eee7dd;
}

.availability-day {
    color: var(--orange);
    text-transform: uppercase;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .12em;
}

.availability-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.6rem;
    margin: 8px 0;
}

.availability-card p {
    color: var(--muted);
    font-size: .9rem;
}

.availability-card strong {
    color: var(--green);
}

.availability-note {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-top: 25px;
    padding: 20px 25px;
    background: var(--green-light);
    border-radius: 18px;
    color: var(--green);
}

.availability-note span {
    font-size: .9rem;
}


/* =========================================
   SERVICES
========================================= */

.services {
    background: var(--cream);
}

.service-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.service-card {
    position: relative;
    padding: 50px;
    border-radius: var(--radius);
    overflow: hidden;
    transition: .3s ease;
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
}

.service-group {
    background: var(--green);
    color: white;
}

.service-individual {
    background: var(--cream-dark);
}

.card-number {
    position: absolute;
    top: 30px;
    right: 35px;
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    opacity: .45;
}

.service-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.3rem;
    margin-bottom: 8px;
}

.service-tagline {
    color: var(--orange);
    font-weight: 700;
    margin-bottom: 20px;
}

.service-card p {
    color: var(--muted);
    margin-bottom: 25px;
}

.service-group p {
    color: rgba(255, 255, 255, .75);
}

.service-card ul {
    list-style: none;
    display: grid;
    gap: 9px;
    margin-bottom: 30px;
}

.card-link {
    font-weight: 700;
    color: var(--green);
}

.service-group .card-link {
    color: var(--orange-light);
}

.care-note {
    margin-top: 25px;
    padding: 18px 22px;
    background: var(--green-light);
    color: var(--green);
    border-radius: 16px;
    font-size: .9rem;
}

.care-note strong {
    margin-right: 5px;
}


/* =========================================
   PRICES
========================================= */

.prices {
    background: var(--cream-dark);
}

.price-heading {
    margin-bottom: 50px;
}

.price-intro {
    color: var(--muted);
    margin-top: 15px;
    max-width: 650px;
}

.price-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 20px;
}

.price-card {
    background: white;
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, .04);
}

.price-highlight {
    background: var(--green);
    color: white;
}

.price-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    margin-bottom: 25px;
}

.price-main {
    font-family: "Playfair Display", serif;
    font-size: 3rem;
    color: var(--orange);
    margin-bottom: 25px;
}

.price-main small {
    display: block;
    font-family: "DM Sans", sans-serif;
    font-size: .8rem;
    color: rgba(255, 255, 255, .65);
}

.price-list {
    border-top: 1px solid rgba(255, 255, 255, .15);
}

.price-row {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .15);
    font-size: .9rem;
}

.price-row strong {
    color: var(--orange-light);
    white-space: nowrap;
}

.price-card > p {
    color: var(--muted);
    margin-top: 20px;
    font-size: .9rem;
}

.price-highlight > p {
    color: rgba(255, 255, 255, .7);
}

.individual-prices {
    display: grid;
    gap: 18px;
    margin-bottom: 25px;
}

.individual-prices div {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.individual-prices strong {
    font-family: "Playfair Display", serif;
    font-size: 2.3rem;
    color: var(--green);
}

.individual-prices span {
    color: var(--muted);
    font-size: .85rem;
}

.price-checks {
    list-style: none;
    margin-top: 25px;
    display: grid;
    gap: 8px;
    color: var(--green);
    font-size: .9rem;
}

.weekend-price {
    font-family: "Playfair Display", serif;
    color: var(--orange);
    font-size: 3rem;
    margin-bottom: 15px;
}

.weekend-examples {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 20px;
    color: var(--green);
}

.price-note {
    margin-top: 25px;
    color: var(--muted);
    font-size: .85rem;
}


/* =========================================
   HOW
========================================= */

.how {
    background: white;
}

.section-center {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 70px;
}

.section-center p {
    color: var(--muted);
    margin-top: 20px;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 25px;
}

.step {
    display: flex;
    gap: 20px;
    padding: 25px;
    border-bottom: 1px solid #e7e1d8;
}

.step-number {
    flex-shrink: 0;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--green);
    color: white;
    font-weight: 700;
    font-size: .8rem;
}

.step h3 {
    margin-bottom: 8px;
}

.step p {
    color: var(--muted);
    font-size: .9rem;
}


/* =========================================
   ABOUT
========================================= */

.about {
    background: var(--cream);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 90px;
    align-items: center;
}

.about-photo {
    position: relative;
}

.about-photo img {
    aspect-ratio: 4 / 5;
    object-fit: cover;
    border-radius: 35px;
    box-shadow: var(--shadow);
}

.photo-note {
    position: absolute;
    bottom: 25px;
    left: 25px;
    padding: 18px 22px;
    background: white;
    border-radius: 18px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}

.photo-note span {
    color: var(--orange);
    font-size: .8rem;
}

.photo-note strong {
    color: var(--green);
    font-family: "Playfair Display", serif;
    font-size: 1.2rem;
}

.about-content h3 {
    font-family: "Playfair Display", serif;
    color: var(--green);
    font-size: 1.7rem;
    margin: 30px 0 10px;
}

.about-content p {
    margin-bottom: 18px;
}

.signature {
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    color: var(--green);
}

.signature span {
    font-family: "Pacifico", cursive;
    color: var(--orange);
    font-size: 1.4rem;
}

.signature small {
    color: var(--muted);
}


/* =========================================
   ROELIE
========================================= */

.roelie-box {
    margin-top: 100px;
    display: grid;
    grid-template-columns: .7fr 1fr;
    background: var(--green);
    border-radius: 35px;
    overflow: hidden;
    color: white;
}

.roelie-image img {
    height: 100%;
    min-height: 350px;
    object-fit: cover;
}

.roelie-content {
    padding: 60px;
}

.roelie-content h3 {
    font-family: "Playfair Display", serif;
    font-size: 3.2rem;
    margin-bottom: 10px;
}

.roelie-content p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 18px;
}


/* =========================================
   LOCATION
========================================= */

.location {
    background: var(--orange);
    color: white;
    padding: 100px 0;
}

.location .eyebrow {
    color: white;
    opacity: .8;
}

.location h2 span {
    color: white;
    opacity: .7;
}

.location-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
}

.location-inner p {
    margin-top: 20px;
    max-width: 600px;
    color: rgba(255, 255, 255, .85);
}

.location-pills {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-pills span {
    padding: 13px 22px;
    border-radius: 50px;
    background: rgba(255, 255, 255, .15);
    border: 1px solid rgba(255, 255, 255, .2);
    font-weight: 600;
}


/* =========================================
   REQUIREMENTS
========================================= */

.requirements {
    background: var(--cream-dark);
}

.requirements-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.requirements-grid > div:first-child p {
    color: var(--muted);
    margin-bottom: 18px;
}

.requirements-card {
    background: white;
    padding: 45px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.requirements-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.8rem;
    margin-bottom: 25px;
}

.requirement {
    display: flex;
    gap: 15px;
    padding: 14px 0;
    border-bottom: 1px solid #eee;
}

.requirement span {
    color: var(--green);
    font-weight: 700;
}

.requirement p {
    font-size: .9rem;
    color: var(--muted);
}

.individual-note {
    margin-top: 20px;
    padding: 15px;
    border-radius: 15px;
    background: var(--green-light);
    color: var(--green);
    font-size: .9rem;
    font-weight: 600;
}


/* =========================================
   EDUCATION
========================================= */

.education {
    background: var(--green);
    color: white;
}

.education-inner {
    display: grid;
    grid-template-columns: 1.5fr .7fr;
    gap: 100px;
    align-items: center;
}

.education h2 span {
    color: var(--orange-light);
}

.education-text p {
    color: rgba(255, 255, 255, .75);
    margin-bottom: 18px;
}

.education-text strong {
    color: white;
}

.education-link {
    display: inline-block;
    margin-top: 10px;
    color: var(--orange-light);
    font-weight: 700;
}

.education-badge {
    aspect-ratio: 1;
    border-radius: 50%;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .15);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
}

.graduation-icon {
    font-size: 3rem;
    margin-bottom: 15px;
}

.education-badge strong {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
}

.education-badge span {
    color: rgba(255, 255, 255, .7);
    font-size: .85rem;
    margin-top: 8px;
}

.education-badge small {
    margin-top: 15px;
    color: var(--orange-light);
}


/* =========================================
   GALLERY
========================================= */

.gallery {
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 270px 270px;
    gap: 15px;
    margin-bottom: 30px;
}

.gallery-photo {
    position: relative;
    overflow: hidden;
    border-radius: 22px;
}

.gallery-photo.photo-big {
    grid-row: span 2;
}

.gallery-photo img {
    height: 100%;
    object-fit: cover;
    transition: .5s ease;
}

.gallery-photo:hover img {
    transform: scale(1.05);
}

.gallery-photo span {
    position: absolute;
    left: 18px;
    bottom: 18px;
    padding: 8px 13px;
    border-radius: 50px;
    background: rgba(0, 0, 0, .55);
    color: white;
    font-size: .75rem;
    backdrop-filter: blur(5px);
}

.photo-sharing {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: var(--cream);
    border-radius: 22px;
}

.social-icon {
    font-size: 2rem;
}

.photo-sharing div:nth-child(2) {
    flex: 1;
}

.photo-sharing h3 {
    margin-bottom: 4px;
}

.photo-sharing p {
    color: var(--muted);
    font-size: .9rem;
}


/* =========================================
   CONTACT
========================================= */

.contact {
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr .8fr;
    gap: 100px;
    align-items: center;
}

.contact-copy p {
    color: var(--muted);
    max-width: 600px;
    margin-top: 20px;
}

.contact-card {
    background: white;
    padding: 45px;
    border-radius: 30px;
    box-shadow: var(--shadow);
    text-align: center;
}

.contact-card h3 {
    font-family: "Playfair Display", serif;
    font-size: 2.2rem;
}

.contact-card > p {
    color: var(--muted);
    margin-bottom: 25px;
}

.contact-item {
    display: block;
    padding: 14px;
    background: var(--cream);
    border-radius: 12px;
    margin-bottom: 10px;
    color: var(--green);
    font-weight: 600;
}

.contact-button {
    width: 100%;
    margin-top: 15px;
}

.contact-small {
    margin-top: 15px;
    font-size: .8rem;
    color: var(--muted);
}


/* =========================================
   FOOTER
========================================= */

footer {
    background: var(--green-dark);
    color: white;
    padding: 60px 0 25px;
}

.footer-main {
    display: flex;
    justify-content: space-between;
    gap: 50px;
}

.footer-logo {
    font-family: "Playfair Display", serif;
    font-size: 1.7rem;
    font-weight: 700;
}

.footer-main p {
    margin-top: 12px;
    color: rgba(255, 255, 255, .55);
}

.footer-links {
    display: flex;
    gap: 20px;
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.footer-links a {
    font-size: .85rem;
    color: rgba(255, 255, 255, .75);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, .1);
    margin-top: 50px;
    padding-top: 20px;
    font-size: .75rem;
    color: rgba(255, 255, 255, .4);
}


/* =========================================
   TABLET / MOBILE
========================================= */

@media (max-width: 1050px) {

    nav {
        gap: 12px;
    }

    nav a {
        font-size: .75rem;
    }

    .availability-grid {
        grid-template-columns: 1fr 1fr;
    }

    .price-grid {
        grid-template-columns: 1fr;
    }

    .price-highlight {
        transform: none;
    }
}


@media (max-width: 850px) {

    .section {
        padding: 85px 0;
    }

    nav {
        display: none;
    }

    .mobile-menu {
        display: block;
    }

    .hero {
        min-height: 760px;
    }

    .hero h1 {
        font-size: 4rem;
    }

    .hero-trust {
        gap: 25px;
    }

    .intro-grid,
    .section-top,
    .about-grid,
    .requirements-grid,
    .education-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 45px;
    }

    .availability-grid {
        grid-template-columns: 1fr 1fr;
    }

    .service-grid {
        grid-template-columns: 1fr;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .roelie-box {
        grid-template-columns: 1fr;
    }

    .roelie-image img {
        min-height: 300px;
    }

    .location-inner {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-pills {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .footer-main {
        flex-direction: column;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .footer-bottom {
        flex-direction: column;
        gap: 8px;
    }
}


@media (max-width: 500px) {

    .container {
        width: min(92%, 1120px);
    }

    .hero h1 {
        font-size: 3.2rem;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-trust {
        flex-wrap: wrap;
    }

    .availability-grid {
        grid-template-columns: 1fr;
    }

    .availability-note {
        padding: 18px;
    }

    .service-card,
    .requirements-card,
    .contact-card,
    .price-card {
        padding: 30px;
    }

    .price-row {
        align-items: flex-start;
    }

    .price-row span {
        max-width: 65%;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 230px);
    }

    .gallery-photo.photo-big {
        grid-column: auto;
        grid-row: auto;
    }

    .photo-sharing {
        flex-direction: column;
        align-items: flex-start;
    }

    .location-pills {
        flex-direction: column;
        width: 100%;
    }

    .location-pills span {
        width: 100%;
    }
}
/* =========================================
LOGO
========================================= */

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    width: 150px;
    height: auto;
    max-height: 55px;
    object-fit: contain;
}


/* =========================================
HERO
========================================= */

.hero {
    min-height: 780px;
    position: relative;
    display: flex;
    align-items: flex-end;
    color: white;
    overflow: hidden;
    padding-bottom: 80px;
}

.hero-image {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.hero-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            rgba(22, 43, 33, .78) 0%,
            rgba(22, 43, 33, .40) 50%,
            rgba(22, 43, 33, .05) 100%
        );
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero-description {
    max-width: 650px;
    font-size: 1.2rem;
    color: rgba(255, 255, 255, .92);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
}

.hero-trust {
    display: flex;
    gap: 45px;
    margin-top: 45px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, .25);
}

.hero-scroll {
    display: none;
}


/* =========================================
BESCHIKBAARHEID EXTRA INFO
========================================= */

.availability-info {
    display: flex;
    flex-direction: column;
    gap: 5px;

    margin-bottom: 25px;
    padding: 20px 25px;

    background: var(--green-light);
    border-radius: 18px;

    color: var(--green);
}

.availability-info strong {
    font-size: 1rem;
}

.availability-info span {
    font-size: .9rem;
}


/* =========================================
FOOTER LOGO
========================================= */

.footer-logo {
    display: inline-flex;
    align-items: center;
}

.footer-logo img {
    width: 150px;
    height: auto;
}


/* =========================================
MOBIEL
========================================= */

@media (max-width: 850px) {

    .logo img {
        width: 125px;
    }

    .hero {
        min-height: 720px;
        padding-bottom: 55px;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-description {
        font-size: 1.05rem;
    }

    .hero-trust {
        gap: 25px;
        flex-wrap: wrap;
    }
}


@media (max-width: 500px) {

    .hero {
        min-height: 680px;
    }

    .hero-image img {
        object-position: center;
    }

    .hero-trust {
        gap: 18px;
    }

    .hero-trust div {
        min-width: 120px;
    }

    .logo img {
        width: 115px;
    }
}
.button-instagram {
    width: 100%;
    margin-top: 10px;
    background: var(--green-light);
    color: var(--green);
}

.button-instagram:hover {
    background: var(--orange-light);
    color: var(--green);
}
/* =========================================
   ALGEMENE VOORWAARDEN
========================================= */

.terms-box {
    margin-top: 0;
    background: rgba(255, 255, 255, .65);
    border: 1px solid #e4ddd3;
    border-radius: 20px;
    overflow: hidden;
}

.terms-box {
margin-top: -15px;
}

.terms-toggle {
    width: 100%;
    padding: 18px 22px;
    border: none;
    background: transparent;
    color: var(--green);
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: "DM Sans", sans-serif;
    font-size: .9rem;
    font-weight: 700;
    cursor: pointer;
    text-align: left;
}

.terms-toggle span {
    font-size: 1.3rem;
    color: var(--orange);
    transition: .2s ease;
}

.terms-content {
    display: none;
    padding: 0 22px 25px;
    color: var(--muted);
    font-size: .78rem;
    line-height: 1.6;
}

.terms-content.open {
    display: block;
}

.terms-content h4 {
    color: var(--green);
    font-size: .85rem;
    margin: 20px 0 7px;
}

.terms-content p {
    margin-bottom: 12px;
}

.terms-content ul {
    padding-left: 18px;
    margin: 0;
}

.terms-content li {
    margin-bottom: 5px;
}

.terms-toggle.active span {
    transform: rotate(45deg);
}