/* BASIS */
/* ------------------------------------ */
body {
    font-family: 'Poppins', sans-serif;
}

.maxwrap {
    max-width: 1100px;
    margin: 0 auto;
}

/* ------------------------------------ */
/* NAVBAR */
/* ------------------------------------ */
.navbar-custom {
    background: #6ac15a;
}
.navbar-custom .nav-link,
.navbar-custom .navbar-brand {
    color: #fff !important;
}
.navbar-brand img {
    width: 250px;
    height: auto;
}

/* ------------------------------------ */
/* ROOT VARS */
/* ------------------------------------ */
:root {
    --overlay-from: rgba(0,0,0,0.45);
    --overlay-to: rgba(0,0,0,0.45);
}

/* ------------------------------------ */
/* HERO */
/* ------------------------------------ */
.hero {
    background-image:
        linear-gradient(var(--overlay-from), var(--overlay-to)),
        url('/assets/vakantiehuis.jpg');
    background-size: cover;
    background-position: center center;
    padding: 50px 20px;
    color: #fff;
    padding-top: 240px;
}

@media (min-width: 768px) {
    .hero {
        min-height: 450px;
    }
}

/* ------------------------------------ */
/* BUTTONS */
/* ------------------------------------ */
.btn-custom {
    background: #e52c38 !important;
    color: #fff !important;
    border: none;
    padding: 8px 20px;
    font-size: 0.9rem;
}
.btn-custom:hover,
.btn-custom:active,
.btn-custom:focus {
    background: #e52c38 !important;
    color: #fff !important;
    box-shadow: none !important;
}

.btn-green {
    background: #6AC15A !important;
    color: #fff !important;
    border: none;
}
.btn-green:hover,
.btn-green:active,
.btn-green:focus {
    background: #6AC15A !important;
    color: #fff !important;
    box-shadow: none !important;
}

/* ------------------------------------ */
/* KLEUR UTILITIES */
/* ------------------------------------ */
.bg-lightgrey {
    background-color: #f5f6f9;
}
.bg-lightgreen {
    background-color: #6AC15A;
}
.text-green {
    color: #6AC15A;
}

/* Announcement bar */
.announcement-bar {
    background: #E9F6E6;
    font-size: 15px;
    color: #000;
    padding: 6px 0;
    text-align: center;
}
.announcement-bar a {
    color: #000;
    text-decoration: underline;
}
.announcement-bar a:hover {
    color: #000;
}

/* ------------------------------------ */
/* CONTACTFORMULIER */
/* ------------------------------------ */
.contactbox {
    background: #E9F6E6;
    padding: 40px 20px;
    border-radius: 10px;
    margin: 60px auto;
}
.contactbox h2 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}
.contactbox p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 25px;
}
.contactbox label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 5px;
}
.contactbox input,
.contactbox textarea {
    border-radius: 6px;
    border: 1px solid #ddd;
    padding: 10px 12px;
    width: 100%;
    font-size: 15px;
}
.contactbox textarea {
    min-height: 120px;
}
.btn-form-red {
    background: #e52c38 !important;
    color: #fff !important;
    border: none;
    font-size: 17px;
    font-weight: 600;
    padding: 12px;
    margin-top: 10px;
    border-radius: 6px;
}

/* ------------------------------------ */
/* FOOTER */
/* ------------------------------------ */
.footer {
    background: #f5f6f9;
    padding: 50px 10px;
    font-size: 14px;
}
.footer h5 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 15px;
}
.footer div {
    margin-bottom: 8px;
}

/* ------------------------------------ */
/* NIEUWE BOUWSELEN */
/* ------------------------------------ */

.form-wrapper-block {
    background: linear-gradient(180deg, #f0f7ee 0%, #ffffff 60%);
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(0,0,0,0.10);
    overflow: hidden;
    margin-top: 60px;
    margin-bottom: 80px;
}

.usp-header {
    background: linear-gradient(135deg, #dff5d9, #c8efc1);
    padding: 32px 35px;
}

.usp-list {
    margin: 0;
    padding: 0;
    list-style: none;
}

.usp-list li {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    padding-left: 32px;
    line-height: 1.3;
    position: relative;
}

.usp-list li::before {
    content: "✔";
    font-size: 28px;
    color: #2ea043;
    position: absolute;
    left: 0;
    top: -8px;
}

.usp-extra-note {
    margin-top: 14px;
    font-size: 14px;
    opacity: 0.85;
    font-weight: 500;
}

.calculation-form {
    padding: 40px 15px;
}

.calculation-form h4 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 25px;
}

.calculation-form .form-label {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 6px;
}

.calculation-form input,
.calculation-form select {
    border-radius: 10px;
    border: 1px solid #cfd3d6;
    padding: 12px 14px;
    font-size: 15px;
    transition: all 0.25s ease;
}

.calculation-form input:focus,
.calculation-form select:focus {
    border-color: #6ac15a;
    box-shadow: 0 0 0 4px rgba(106,193,90,0.20);
}

.section-title {
    margin-top: 32px;
    margin-bottom: 18px;
    font-size: 18px;
    font-weight: 700;
    color: #444;
}

.btn-request {
    background: linear-gradient(135deg, #e52c38, #c3232e) !important;
    color: #fff !important;
    padding: 16px;
    font-size: 18px;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    width: 100%;
    margin-top: 20px;
    box-shadow: 0 6px 22px rgba(229,44,56,0.25);
    transition: all .2s ease;
}

.btn-request:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(229,44,56,0.40);
}

.pre-submit-text {
    font-size: 14px;
    margin-top: 18px;
    opacity: .85;
}

.post-submit-text {
    margin-top: 10px;
    font-size: 13px;
    opacity: .75;
}

@media (min-width: 768px) {
    .two-col-group {
        display: flex;
        gap: 25px;
    }
    .two-col-group > div {
        flex: 1;
    }
}
/* ------------------------------------ */
/* COMPACTE TEXT BLOKKEN */
/* ------------------------------------ */

.compact-block {
    background: #ffffff;
    border-radius: 12px;
    padding: 20px;
    margin: 20px 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.05);
    text-align: left;
}

.compact-block h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 18px;
}

.compact-block h3 {
    font-size: 18px;
    font-weight: 600;
    margin-top: 22px;
    margin-bottom: 10px;
    color: #6ac15a;
}

.compact-block p {
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 14px;
}

.compact-block ul {
    margin: 0;
    padding-left: 22px;
    margin-bottom: 20px;
}

.compact-block li {
    margin-bottom: 8px;
    line-height: 1.4;
}

.inline-img {
    width: 350px;
    border-radius: 10px;
    float: right;
    margin-left: 20px;
    margin-bottom: 10px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}

@media (max-width: 768px) {
    .inline-img {
        float: none;
        display: block;
        margin: 10px auto 20px auto;
        width: 100%;
        max-width: 300px;
    }
}
.link-zwart-underline {
    color: #000;
    text-decoration: underline;
}

.link-zwart-underline:hover,
.link-zwart-underline:active,
.link-zwart-underline:visited {
    color: #000;
    text-decoration: underline;
}
.link-wit-underline {
    color: #fff;
    text-decoration: underline;
}

.link-wit-underline:hover,
.link-wit-underline:active,
.link-wit-underline:visited {
    color: #fff;
    text-decoration: underline;
}
.announcement-bar {
    position: sticky;
    top: 0;
    z-index: 9999;
}