body {
    margin: 0;
    background-color: #F5F1ED;
    color: #2f261f;
    font-family: Arial, sans-serif;
    overflow-x: hidden;
}

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

header {
    height: 5.5rem;
    background-color: #EDE7DF;
    display: flex;
    justify-content: center;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 20;
    padding: 0 1rem;
    border-bottom: 1px solid #E5E1DC;
    box-shadow: 0 10px 22px rgba(134, 115, 94, 0.08);
}

.logo-link {
    position: absolute;
    left: 0;
}

.logo {
    width: 9rem;
    height: 5.5rem;
    display: block;
}

.navigatie {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0 25.5rem 0 9rem;
}

.navigatie ul {
    display: flex;
    align-items: center;
    gap: clamp(1.25rem, 3vw, 5rem);
    list-style: none;
    margin: 0;
    padding: 0;
}

.navigatie a {
    font-size: 1.2rem;
}

.navigatie a:hover {
    color: #D4A373;
}

.line1 {
    display: block;
    background-color: black;
    width: 1px;
    height: 2.5rem;
}

.button1 {
    background-color: #D4A373;
    color: white;
    width: 17%;
    min-width: 13rem;
    height: 4.5vh;
    border: 1px solid #4B9758;
    border-radius: 10px;
    position: absolute;
    right: 2rem;
    font-weight: bold;
    cursor: pointer;
}

.button1:hover {
    background-color: white;
    color: #D4A373;
}

.header-actions {
    position: absolute;
    right: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.header-actions .button1,
.header-actions .button-offerte {
    box-sizing: border-box;
    position: static;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: auto;
    min-width: 0;
    height: 2.9rem;
    padding: 0 1.15rem;
    border-radius: 999px;
    font-size: 0.95rem;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
}

.header-actions .button1 {
    position: relative;
    inset: auto;
    border: 1px solid rgba(212, 163, 115, 0.45);
    background: linear-gradient(135deg, #D4A373 0%, #b9824e 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(143, 98, 54, 0.2);
}

.header-actions .button1::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -55%;
    width: 42%;
    height: 180%;
    background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.5), transparent);
    transform: rotate(18deg);
    transition: left 0.45s ease;
}

.header-actions .button1:hover {
    background: linear-gradient(135deg, #e0b07d 0%, #c18d58 100%);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 18px 32px rgba(143, 98, 54, 0.28);
}

.header-actions .button1:hover::before {
    left: 125%;
}

.header-actions .button-offerte {
    border: 1px solid rgba(23, 63, 29, 0.22);
    background: linear-gradient(135deg, #173f1d 0%, #4B9758 100%);
    color: #fff;
    box-shadow: 0 12px 24px rgba(23, 63, 29, 0.2);
}

.header-actions .button-offerte:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, #214f27 0%, #5aa767 100%);
    color: #fff;
}

.menu-knop {
    display: none;
}

main {
    width: 96%;
    max-width: 1200px;
    margin: 2rem auto 0 auto;
}

.banner {
    position: relative;
    height: 48vh;
    min-height: 300px;
    overflow: hidden;
    border-radius: 50px;
}

.banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    opacity: 0.9;
}

.banner-tekst {
    position: absolute;
    left: 3rem;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    max-width: 600px;
}

.banner-tekst h1 {
    margin: 0 0 1rem 0;
    font-size: 2.6rem;
}

.banner-tekst p {
    margin: 0;
    font-size: 1.3rem;
}

.over-ons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 4rem;
}

.tekst,
.kaart,
.werkwijze {
    background-color: #EDE7DF;
    padding: 2rem;
    border-radius: 18px;
}

h2 {
    margin-top: 0;
    font-size: 2rem;
}

p,
li {
    font-size: 1.1rem;
    line-height: 1.7;
}

.kaart ul {
    margin-bottom: 0;
    padding-left: 1.2rem;
}

.werkwijze {
    margin-top: 2rem;
}

.stappen {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stappen div {
    background-color: #F5F1ED;
    padding: 1.4rem;
    border-radius: 14px;
}

.footer {
    background-color: #173f1d;
    margin-top: 6rem;
    padding: 1rem 1.7rem 0.85rem 1.7rem;
}

.footer-title {
    margin: 0;
    text-align: center;
    color: #f3eee5;
    font-family: 'Poltawski Nowy', serif;
    font-size: 1.8rem;
}

.footer-line {
    display: block;
    width: 92%;
    height: 1px;
    background-color: #f3eee5;
    margin: 1rem auto 1.3rem auto;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1.2rem;
}

.logo-footer {
    width: 10rem;
    height: 10rem;
    border-radius: 50%;
    object-fit: cover;
}

.footer-heading,
.footer-contact p,
.footer-links a,
.footer-social a,
.footer-copy {
    color: #f3eee5;
    font-family: 'Poltawski Nowy', serif;
}

.footer-heading {
    margin: 0 0 0.8rem 0;
    font-size: 1.6rem;
    font-weight: 400;
    opacity: 0.86;
}

.footer-contact {
    max-width: 20rem;
}

.footer-contact p {
    margin: 0 0 0.7rem 0;
    font-size: 1.20rem;
    opacity: 0.86;
}

.footer-small {
    max-width: 18rem;
    line-height: 1.45;
    font-size: 1.05rem;
    opacity: 0.74;
}

.footer-links {
    min-width: 11rem;
    padding-top: 0.2rem;
}

.footer-links a {
    display: block;
    margin: 0 0 0.8rem 0;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.86;
    transition: opacity 0.3s ease, transform 0.3s ease, font-weight 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    transform: scale(1.04);
    font-weight: 600;
    font-size: 1.5rem;
}

.footer-social {
    min-width: 11rem;
    padding-top: 0.2rem;
}

.footer-social a {
    display: block;
    margin: 0 0 0.8rem 0;
    font-size: 1.5rem;
    text-decoration: none;
    opacity: 0.86;
    transition: opacity 0.3s ease, transform 0.3s ease, font-weight 0.3s ease, color 0.3s ease;
}

.footer-social a:hover {
    opacity: 1;
    transform: scale(1.04);
    font-weight: 600;
    font-size: 1.5rem;
    color: #D4A373;
}

.footer-social {
    border-left: 1px solid rgba(243, 238, 229, 0.3);
    padding-left: 2rem;
}

.footer-copy {
    margin: 0.7rem 0 0 0;
    text-align: center;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    opacity: 0.65;
}

.footer-copy a {
    color: inherit;
    font: inherit;
    text-decoration: underline;
    text-underline-offset: 0.18em;
}

.footer-copy a:hover {
    color: #D4A373;
    font-size: 1rem;
}

.menu-knop {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 0.35rem;
    width: 3rem;
    height: 3rem;
    border: 0;
    border-radius: 999px;
    background-color: #d4a373;
    box-shadow: 0 8px 18px rgba(134, 115, 94, 0.16);
    cursor: pointer;
}

.menu-knop span {
    display: block;
    width: 1.35rem;
    height: 2px;
    margin: 0 auto;
    background-color: #fff;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-knop.open span:nth-child(1) {
    transform: translateY(0.44rem) rotate(45deg);
}

.menu-knop.open span:nth-child(2) {
    opacity: 0;
}

.menu-knop.open span:nth-child(3) {
    transform: translateY(-0.44rem) rotate(-45deg);
}

.line1 {
    display: block;
    background-color: black;
    width: 0.5px;
    height: 2.5rem;
}

@media (max-width: 900px) {
     header {
        justify-content: space-between;
        min-height: 5.5rem;
        padding: 0.75rem 1rem;
    }

    .logo-link {
        position: static;
        z-index: 31;
    }

    .logo {
        width: 7.5rem;
        height: 4.5rem;
    }

    .menu-knop {
        display: flex;
        position: relative;
        z-index: 31;
    }

    .navigatie {
        position: absolute;
        top: calc(100% + 0.75rem);
        left: 1rem;
        right: 1rem;
        width: auto;
        padding: 1.25rem;
        border-radius: 1.5rem;
        background: rgba(237, 231, 223, 0.98);
        box-shadow: 0 18px 30px rgba(134, 115, 94, 0.18);
        display: flex;
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
        padding: 1.25rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: opacity 0.3s ease, transform 0.3s ease, visibility 0.3s ease;
        z-index: 30;
    }

    .navigatie.open {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .navigatie ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        width: 100%;
    }

    .navigatie li {
        width: 100%;
    }

    .line1 {
        width: 100%;
        height: 1px;
    }

    .button1 {
        position: static;
        width: 100%;
        min-width: 0;
        height: 3.25rem;
    }

    .header-actions {
        position: static;
        width: 100%;
        flex-direction: column;
        align-items: stretch;
        gap: 0.75rem;
    }

    .header-actions .button1,
    .header-actions .button-offerte {
        width: 100%;
        height: 3.25rem;
        padding: 0 1rem;
    }
    .banner {
        border-radius: 25px;
    }

    .banner-tekst {
        left: 1.5rem;
        right: 1.5rem;
    }

    .banner-tekst h1 {
        font-size: 2rem;
    }

    .over-ons,
    .stappen,
    .footer-content {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
}

body {
    position: relative;
    background:
        linear-gradient(120deg, rgba(75, 151, 88, 0.07) 0 1px, transparent 1px 100%),
        linear-gradient(145deg, #F5F1ED 0%, #fbf7f0 46%, #eef6eb 100%);
    background-size: 42px 42px, auto;
}

body::before,
body::after {
    content: "";
    position: fixed;
    z-index: -1;
    pointer-events: none;
}

body::before {
    width: 32rem;
    height: 10rem;
    top: 8rem;
    right: -9rem;
    border: 1px solid rgba(212, 163, 115, 0.18);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.5), rgba(212, 163, 115, 0.08));
    transform: rotate(-15deg);
    animation: achtergrondBeweging 18s ease-in-out infinite;
}

body::after {
    width: 28rem;
    height: 12rem;
    left: -8rem;
    bottom: 8rem;
    border: 1px solid rgba(75, 151, 88, 0.14);
    background: linear-gradient(135deg, rgba(75, 151, 88, 0.08), rgba(255, 255, 255, 0.34));
    transform: rotate(13deg);
    animation: achtergrondBeweging 22s ease-in-out infinite reverse;
}

.navigatie a {
    transition: color 0.25s ease, transform 0.25s ease;
}

.navigatie a:hover {
    transform: translateY(-2px);
}

.banner {
    box-shadow: 0 26px 58px rgba(57, 39, 24, 0.16);
}

.banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(23, 63, 29, 0.62), rgba(23, 63, 29, 0.16), rgba(212, 163, 115, 0.14));
    pointer-events: none;
}

.banner-tekst {
    z-index: 1;
    animation: paginaVerschijn 0.9s ease both;
}

.tekst,
.kaart,
.werkwijze {
    border: 1px solid rgba(212, 163, 115, 0.22);
    background: rgba(255, 255, 255, 0.74);
    backdrop-filter: blur(14px);
    box-shadow: 0 18px 42px rgba(72, 53, 33, 0.09);
    animation: paginaVerschijn 0.9s ease both;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.kaart {
    animation-delay: 0.12s;
}

.werkwijze {
    animation-delay: 0.22s;
}

.tekst:hover,
.kaart:hover,
.werkwijze:hover,
.stappen div:hover {
    transform: translateY(-6px);
    box-shadow: 0 26px 54px rgba(72, 53, 33, 0.13);
}

.stappen div {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(75, 151, 88, 0.12);
    background: linear-gradient(145deg, #fffdf9, #f2eadf);
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.stappen div::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 5px;
    background: linear-gradient(#4B9758, #D4A373);
}

@keyframes paginaVerschijn {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes achtergrondBeweging {
    0%,
    100% {
        translate: 0 0;
    }

    50% {
        translate: 18px -14px;
    }
}

@media (max-width: 640px) {
    body::before,
    body::after {
        opacity: 0.5;
    }

    main {
        width: calc(100% - 1rem);
    }

    .tekst,
    .kaart,
    .werkwijze {
        padding: 1.35rem;
        border-radius: 18px;
    }
}

@media (max-width: 768px) {
    .footer {
        padding: 1rem 1.2rem 0.8rem 1.2rem;
    }

    .footer-title {
        font-size: 1.5rem;
    }

    .footer-line {
        width: 90%;
        margin: 0.8rem auto 1.2rem auto;
    }

    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1.5rem;
    }

    .logo-footer {
        width: 7rem;
        height: 7rem;
    }

    .footer-contact {
        max-width: 18rem;
    }

    .footer-heading {
        font-size: 1.4rem;
        margin-bottom: 0.6rem;
    }

    .footer-contact p {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .footer-small {
        max-width: 18rem;
        font-size: 0.95rem;
    }

    .footer-links,
    .footer-social {
        min-width: 0;
        width: 100%;
        padding-top: 0;
    }

    .footer-links a,
    .footer-social a {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }

    .footer-links a:hover,
    .footer-social a:hover {
        font-size: 1.2rem;
    }

    .footer-social {
        border-left: none;
        border-top: 1px solid rgba(243, 238, 229, 0.3);
        padding-left: 0;
        padding-top: 1.2rem;
        margin-top: 0;
    }

    .footer-copy {
        font-size: 0.85rem;
        margin-top: 0.6rem;
    }
}