@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@400;600;700;800;900&family=Plus+Jakarta+Sans:wght@600;700;800;900&display=swap');

/* RESET */

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html, body {
    height: 100%;
}

body {
    font-family: 'Nunito', Arial, sans-serif;
    color: #17172f;
    background:
        radial-gradient(circle at 10% 0%, rgba(0, 211, 216, 0.16), transparent 30%),
        radial-gradient(circle at 88% 8%, rgba(255, 45, 116, 0.12), transparent 28%),
        linear-gradient(180deg, #f5f8fb 0%, #f7f4ee 55%, #f4f6fb 100%);
    line-height: 1.7;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    display: block;
}

h1, h2, h3, h4, .nav-list a, .page-title, .footer-col h3 {
    font-family: 'Plus Jakarta Sans', 'Nunito', Arial, sans-serif;
}

.lobster {
    font-family: 'Plus Jakarta Sans', 'Nunito', Arial, sans-serif;
    font-size: 32px;
    font-weight: 900;
    letter-spacing: 0;
}

.Nunito {
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 32px;
}

.site-brand .lobster {
    font-size: 42px;
}


/* HEADER */

.site-header {
    background:
        radial-gradient(circle at 12% 0%, rgba(0, 211, 216, 0.28), transparent 28%),
        radial-gradient(circle at 82% 0%, rgba(255, 45, 116, 0.22), transparent 28%),
        linear-gradient(180deg, #00104f 0%, #05002e 100%);
    color: #ffffff;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 24px rgba(0, 8, 58, .26);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.logo {
    flex-shrink: 0;
}

    .logo img {
        height: 82px;
        width: auto;
        filter: drop-shadow(0 10px 18px rgba(0, 211, 216, 0.20));
    }


/* NAVIGATION */

.main-nav {
    margin-left: auto;
}

.nav-list {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-item,
.has-sub {
    position: relative;
    display: flex;
    align-items: center;
}

.nav-list a {
    display: flex;
    align-items: center;
    font-size: 18px;
    font-weight: 600;
    padding: 16px 4px;
    letter-spacing: 0.01em;
    color: #ffffff;
    transition: color .2s ease, transform .2s ease;
}

    .nav-list a:hover {
        color: #00d3d8;
        transform: translateY(-1px);
    }

.has-sub > a::after {
    content: "▾";
    font-size: 11px;
    margin-left: 6px;
    margin-top: 2px;
    opacity: .8;
}


/* SUBMENU */

.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 240px;
    padding: 10px 0;
    background: #fffaf1;
    border: 2px solid #f1d18a;
    border-radius: 14px;
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
    z-index: 1000;
}

    .submenu ul {
        list-style: none;
    }

    .submenu li a {
        display: block;
        padding: 11px 18px;
        font-size: 15px;
        font-weight: 700;
        color: #24315f;
        transition: background .2s ease, color .2s ease;
    }

        .submenu li a:hover {
            background: #fff0c9;
            color: #b86b00;
        }

@media (min-width: 769px) {
    .has-sub:hover .submenu {
        display: block;
    }
}


/* MOBILE MENU */

.nav-toggle {
    display: none;
    background: none;
    border: none;
    color: #ffffff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}

@media (max-width: 768px) {

    .header-inner {
        padding: 10px 16px;
        gap: 16px;
    }

    .logo img {
        height: 66px;
    }

    .nav-toggle {
        display: block;
        margin-left: auto;
    }

    .main-nav {
        position: static;
    }

    .nav-list {
        position: absolute;
        top: 86px;
        left: 0;
        width: 100%;
        height: calc(100vh - 86px);
        padding: 30px 24px;
        background: #10235c;
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
        display: none;
        z-index: 2000;
        overflow-y: auto;
    }

        .nav-list.show {
            display: flex;
        }

        .nav-list li {
            width: 100%;
        }

        .nav-list a {
            width: 100%;
            justify-content: flex-start;
            font-size: 22px;
            padding: 8px 0;
        }

    .has-sub {
        display: block;
        width: 100%;
    }

    .submenu {
        position: static;
        display: none;
        width: 100%;
        min-width: 0;
        padding: 8px 0 8px 18px;
        margin-top: 2px;
        background: none;
        border: 0;
        border-radius: 0;
        box-shadow: none;
    }

    .has-sub.open .submenu {
        display: block;
    }

    .submenu li a {
        color: #ffffff;
        font-size: 16px;
        font-weight: 600;
        padding: 6px 0;
        opacity: .88;
        background: none;
    }

        .submenu li a:hover {
            color: #ffd36b;
            opacity: 1;
        }
}


/* PAGE HEADER / HERO */

.page-header {
    position: relative;
    height: 240px;
    flex-shrink: 0;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(8,15,44,.24) 0%, rgba(8,15,44,.48) 100%);
}

.page-header-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 20px;
}

.page-title {
    margin: 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.05;
    color: #fff8ea;
    text-shadow: 0 4px 14px rgba(0,0,0,.35);
}

.page-subtitle {
    margin-top: 10px;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #fff1bf;
    text-shadow: 0 2px 10px rgba(0,0,0,.28);
}

@media (max-width: 768px) {

    .page-header {
        height: 220px;
        min-height: 220px;
        padding: 30px 20px;
    }

    .page-title {
        font-size: 40px;
        line-height: 1.1;
    }

    .page-subtitle {
        font-size: 17px;
        line-height: 1.4;
        max-width: 320px;
        margin: 10px auto 0 auto;
    }
}


/* CONTENT */

.content-wrapper {
    max-width: 1000px;
    margin: 50px auto;
    padding: 0 20px;
    flex: 1;
}

    .content-wrapper h2 {
        color: #10235c;
        font-size: 2.1em;
        font-weight: 700;
        margin-bottom: 18px;
    }

    .content-wrapper h3 {
        color: #1a2b69;
        font-size: 1.5em;
        font-weight: 700;
        margin-bottom: 14px;
    }

    .content-wrapper p {
        font-size: 18px;
        color: #413931;
        margin-bottom: 18px;
    }

    .content-wrapper img {
        border-radius: 12px;
    }


/* TEXT + IMAGE BLOK */

.text-img {
    display: flex;
    gap: 32px;
    align-items: flex-start;
}

    .text-img .txt {
        flex: 1;
    }

    .text-img .img {
        flex: 0 0 32%;
    }

    .text-img:has(.img) .txt {
        flex: 0 0 68%;
    }

    .text-img .img img {
        width: 100%;
        height: auto;
        border-radius: 16px;
        box-shadow: 0 8px 24px rgba(0,0,0,.10);
    }

@media (max-width: 800px) {
    .text-img {
        flex-direction: column;
    }

        .text-img .img,
        .text-img:has(.img) .txt {
            flex: none;
            width: 100%;
        }
}


/* INTRO BLOK */

.intro-section {
    margin-top: 60px;
    margin-bottom: 20px;
}

.intro-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px;
    background: #fffdf8;
    border: 2px solid #f0ddb0;
    border-radius: 22px;
    box-shadow: 0 10px 30px rgba(16,35,92,.08);
}

.intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.intro-left h2 {
    color: #10235c;
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.intro-left img {
    width: 100%;
    border-radius: 18px;
    box-shadow: 0 8px 24px rgba(0,0,0,.10);
}

.intro-right {
    color: #4b433c;
    font-size: 17px;
    line-height: 1.8;
}

    .intro-right p {
        margin-bottom: 16px;
    }

@media (max-width: 800px) {

    .intro-grid {
        grid-template-columns: 1fr;
    }

    .intro-container {
        padding: 24px;
        border-radius: 16px;
    }

    .intro-left h2 {
        font-size: 32px;
    }

    .intro-right {
        font-size: 16px;
    }
}


/* KNOPPEN */

.btn,
.button,
input[type=submit],
button.button-link {
    display: inline-block;
    padding: 12px 22px;
    border: 0;
    border-radius: 999px;
    background: linear-gradient(180deg, #f6b32a 0%, #e89511 100%);
    color: #ffffff;
    font-family: 'Plus Jakarta Sans', 'Nunito', Arial, sans-serif;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    box-shadow: 0 6px 16px rgba(232,149,17,.28);
    transition: transform .2s ease, box-shadow .2s ease, opacity .2s ease;
}

    .btn:hover,
    .button:hover,
    input[type=submit]:hover,
    button.button-link:hover {
        transform: translateY(-1px);
        box-shadow: 0 10px 18px rgba(232,149,17,.32);
        opacity: .98;
    }


/* FOOTER */

.main-footer {
    margin-top: auto;
    background: linear-gradient(180deg, #1a2562 0%, #152053 100%);
    color: #ffffff;
}

.footer-upper {
    padding: 55px 20px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.footer-col h3 {
    margin-bottom: 16px;
    font-size: 28px;
    font-weight: 700;
    color: #fff2c6;
}

.footer-links {
    list-style: none;
    font-size: 16px;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        color: #ffffff;
        opacity: .92;
        transition: color .2s ease, opacity .2s ease;
    }

        .footer-links a:hover {
            color: #ffd36b;
            opacity: 1;
        }

.footer-logos img {
    width: 100%;
    max-width: 200px;
    margin-bottom: 15px;
    background: #ffffff;
    padding: 8px;
    border-radius: 10px;
}

.footer-news a {
    display: block;
    margin-bottom: 10px;
    font-size: 15px;
}

.footer-contact {
    list-style: none;
    font-size: 16px;
}

    .footer-contact li {
        margin-bottom: 12px;
    }

    .footer-contact i {
        margin-right: 10px;
        color: #ffd36b;
    }

.footer-bottom {
    text-align: center;
    padding: 18px;
    font-size: 14px;
    color: rgba(255,255,255,.88);
    border-top: 1px solid rgba(255,255,255,.12);
}


/* FOOTER RESPONSIVE */

@media (max-width: 900px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {

    .footer-upper {
        padding: 40px 20px;
    }

    .footer-logos a {
        display: block;
        width: 100%;
        margin-bottom: 10px;
    }

    .footer-logos img {
        width: 100%;
        max-width: none;
        height: auto;
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
    }
}


/* EXTRA ALGEMENE BLOKSTIJL */

.card-block {
    background: #fffdf8;
    border: 2px solid #f0ddb0;
    border-radius: 22px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(16,35,92,.08);
}


/* FORMULIEREN */

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
    width: 100%;
    padding: 12px 14px;
    border: 2px solid #e3d9c4;
    border-radius: 14px;
    background: #fffdf9;
    color: #2f2a24;
    font-family: 'Nunito', Arial, sans-serif;
    font-size: 16px;
    outline: none;
    transition: border-color .2s ease, box-shadow .2s ease;
}

    input[type=text]:focus,
    input[type=email]:focus,
    input[type=tel]:focus,
    input[type=password]:focus,
    textarea:focus,
    select:focus {
        border-color: #e7a51b;
        box-shadow: 0 0 0 4px rgba(231,165,27,.12);
    }

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: #1f2c63;
}


/* KLEINE EXTRA RESPONSIVE TWEAKS */

@media (max-width: 768px) {

    .content-wrapper {
        margin: 35px auto;
    }

        .content-wrapper h2 {
            font-size: 1.8em;
        }

        .content-wrapper p {
            font-size: 17px;
        }
}

/* PREVIEW THEME OVERRIDES */

body {
    color: #2c241b;
    background:
        radial-gradient(circle at top, rgba(255,255,255,0.82), rgba(255,255,255,0.08) 32%),
        linear-gradient(180deg, #ebe7e4 0%, #ddd7d3 100%);
    position: relative;
}

body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    opacity: 0.08;
    background-image:
        radial-gradient(circle at 15% 20%, rgba(100, 70, 30, 0.12) 0 1px, transparent 1px),
        radial-gradient(circle at 75% 45%, rgba(100, 70, 30, 0.08) 0 1px, transparent 1px);
    background-size: 26px 26px, 34px 34px;
}

.lobster {
    font-family: 'Plus Jakarta Sans', 'Nunito', Arial, sans-serif;
    font-size: 42px;
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: 0;
    color: #00104f;
}

.site-header {
    background:
        radial-gradient(circle at 20% 0%, rgba(0, 211, 216, 0.18), transparent 26%),
        radial-gradient(circle at 84% 0%, rgba(255, 45, 116, 0.14), transparent 24%),
        rgba(247, 249, 252, 0.9);
    color: #00104f;
    border-bottom: 1px solid rgba(0, 16, 79, 0.10);
    box-shadow: 0 14px 30px rgba(0, 8, 58, 0.10);
    backdrop-filter: blur(14px);
}

.header-inner {
    max-width: 1240px;
    padding: 14px 20px;
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    color: inherit;
}

.brand-copy {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-kicker {
    display: inline-flex;
    width: fit-content;
    padding: 6px 12px;
    border-radius: 999px;
    background: rgba(0, 211, 216, 0.12);
    border: 2px solid rgba(0, 211, 216, 0.22);
    color: #00104f;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.logo img {
    height: 78px;
    filter: drop-shadow(0 10px 18px rgba(0, 211, 216, 0.22));
}

.nav-list a {
    font-size: 24px;
    font-weight: 700;
    padding: 12px 2px;
    color: #00104f;
}

.nav-list a:hover {
    color: #ff2d74;
}

.submenu {
    background: linear-gradient(180deg, rgba(255,255,255,0.96), rgba(249,241,227,0.96));
    border: 1px solid rgba(71, 52, 23, 0.14);
    border-radius: 22px;
    box-shadow: 0 22px 34px rgba(66, 47, 18, 0.14);
}

.submenu li a {
    color: #3e3021;
}

.submenu li a:hover {
    background: rgba(247, 212, 125, 0.28);
    color: #41653c;
}

.page-header {
    position: relative;
    max-width: 1240px;
    width: min(1240px, calc(100% - 32px));
    margin: 24px auto 0;
    border-radius: 34px;
    overflow: hidden;
    border: 1px solid rgba(71, 52, 23, 0.14);
    box-shadow: 0 22px 50px rgba(66, 47, 18, 0.14);
    background-color: #00104f;
    background-size: cover;
    background-position: center;
}

.page-header-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(0,16,79,0.18), rgba(0,8,58,0.58)),
        radial-gradient(circle at top left, rgba(0,211,216,0.34), transparent 42%),
        radial-gradient(circle at bottom right, rgba(255,45,116,0.26), transparent 38%);
}

.page-header-inner {
    position: relative;
    z-index: 1;
    padding: 56px 42px;
}

.page-title {
    font-size: clamp(2.5rem, 5vw, 4.3rem);
    color: #fff8ea;
    text-shadow: 0 6px 22px rgba(44, 36, 27, 0.24);
}

.page-subtitle {
    max-width: 760px;
    margin-top: 10px;
    font-size: clamp(1rem, 2vw, 1.35rem);
    color: rgba(255, 248, 234, 0.92);
}

.content-wrapper,
.bs-page-content {
    width: min(1240px, calc(100% - 32px));
    margin-left: auto;
    margin-right: auto;
}

.content-wrapper {
    margin-top: 26px;
    margin-bottom: 54px;
}

.card-block {
    background:
        linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,251,242,0.92)),
        linear-gradient(180deg, #f8f2e6 0%, #f3ead9 100%);
    border: 1px solid rgba(71, 52, 23, 0.14);
    border-radius: 30px;
    padding: 30px;
    box-shadow: 0 18px 40px rgba(66, 47, 18, 0.12);
    position: relative;
}

.card-block::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0.18;
    background-image:
        linear-gradient(0deg, transparent 0%, rgba(115, 87, 46, 0.06) 50%, transparent 100%),
        radial-gradient(circle at 12% 18%, rgba(115, 87, 46, 0.12) 0 1px, transparent 1px),
        radial-gradient(circle at 78% 44%, rgba(115, 87, 46, 0.08) 0 1px, transparent 1px);
    background-size: 100% 100%, 28px 28px, 33px 33px;
}

.btn,
.button,
input[type=submit],
button.button-link {
    border: 2px solid rgba(95, 71, 22, 0.16);
    background: linear-gradient(180deg, #00d3d8 0%, #00aeb7 100%);
    color: #00104f;
    font-family: 'Nunito', Arial, sans-serif;
    font-weight: 800;
    box-shadow: 0 10px 20px rgba(95,71,22,.18);
}

.btn:hover,
.button:hover,
input[type=submit]:hover,
button.button-link:hover {
    box-shadow: 0 14px 28px rgba(95,71,22,.24);
}

input[type=text],
input[type=email],
input[type=tel],
input[type=password],
textarea,
select {
    border: 1px solid rgba(71, 52, 23, 0.14);
    border-radius: 18px;
    background: rgba(255,255,255,0.74);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.4);
}

input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
input[type=password]:focus,
textarea:focus,
select:focus {
    border-color: rgba(0, 211, 216, 0.9);
    box-shadow: 0 0 0 4px rgba(0, 211, 216, 0.18);
}

label {
    color: #5f4716;
}

.main-footer {
    background:
        radial-gradient(circle at 18% 12%, rgba(0, 211, 216, 0.24), transparent 28%),
        radial-gradient(circle at 82% 32%, rgba(255, 45, 116, 0.22), transparent 28%),
        linear-gradient(180deg, #00104f 0%, #05002e 100%);
    color: #f9f3e7;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.18;
    background-image:
        radial-gradient(circle at 16% 24%, rgba(255,255,255,0.3) 0 1px, transparent 1px),
        radial-gradient(circle at 72% 36%, rgba(255,255,255,0.24) 0 1px, transparent 1px),
        radial-gradient(circle at 48% 82%, rgba(255,255,255,0.18) 0 1px, transparent 1px);
    background-size: 22px 22px, 28px 28px, 32px 32px;
    pointer-events: none;
}

.footer-upper,
.footer-bottom {
    position: relative;
    z-index: 1;
}

.footer-upper {
    padding: 60px 20px 48px;
}

.footer-intro {
    max-width: 760px;
    margin-bottom: 28px;
}

.footer-kicker {
    display: inline-flex;
    padding: 7px 14px;
    border-radius: 999px;
    border: 2px solid rgba(255,255,255,0.2);
    background: rgba(255,255,255,0.12);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-intro h2 {
    margin: 12px 0 10px;
    font-size: clamp(2rem, 4vw, 3.4rem);
    line-height: 1;
}

.footer-intro p {
    max-width: 620px;
    color: rgba(249,243,231,0.84);
}

.footer-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 26px;
}

.footer-col {
    padding: 22px 20px;
    border-radius: 24px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.08);
    backdrop-filter: blur(6px);
}

.footer-col h3 {
    margin-bottom: 14px;
    font-size: 34px;
    color: #00d3d8;
}

.footer-links a,
.footer-contact li {
    color: rgba(249,243,231,0.9);
}

.footer-links a:hover {
    color: #ffd23f;
}

@media (max-width: 900px) {
    .page-header {
        width: min(1240px, calc(100% - 20px));
        margin-top: 18px;
        border-radius: 26px;
    }

    .page-header-inner {
        padding: 40px 24px;
    }

    .content-wrapper,
    .bs-page-content {
        width: min(1240px, calc(100% - 20px));
    }
}

@media (max-width: 768px) {
    .site-brand {
        gap: 10px;
    }

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

    .nav-toggle {
        color: #00104f;
        width: 46px;
        height: 46px;
        border-radius: 999px;
        background: rgba(0, 211, 216, 0.12);
        border: 1px solid rgba(0, 16, 79, 0.12);
    }

    .nav-list {
        background:
            radial-gradient(circle at 18% 8%, rgba(0, 211, 216, 0.22), transparent 32%),
            radial-gradient(circle at 84% 18%, rgba(255, 45, 116, 0.20), transparent 30%),
            linear-gradient(180deg, rgba(0, 16, 79, 0.98), rgba(5, 0, 46, 0.98));
        border-top: 1px solid rgba(0, 211, 216, 0.18);
    }

    .nav-list a {
        font-size: 28px;
        color: #f7fbff;
        border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    }

    .submenu li a {
        color: rgba(247, 251, 255, 0.86);
        border-bottom: 0;
    }

    .nav-list a:hover,
    .submenu li a:hover {
        color: #00d3d8;
        background: rgba(255, 255, 255, 0.06);
    }
}

@media (max-width: 600px) {
    .page-title {
        font-size: 2.6rem;
    }

    .card-block {
        border-radius: 24px;
        padding: 22px;
    }
}




