/* =====================================================================
   Vixx — eigen stylesheet die de look & feel van vixx.nl reproduceert.
   Schoon opgebouwd (geen WordPress-theme-CSS). Huisstijl:
     navy  #002755   ·  teal-accent #36ccc7  ·  geel #f8bb16
     grijs #f6f6f6   ·  muted #667d99         ·  wit  #ffffff
   Lettertype: Mont (licensed) → lokaal gehost Montserrat, gedeclareerd
   onder dezelfde familienamen zodat alles Mont "denkt" te gebruiken.
   ===================================================================== */

@font-face {
    font-family: 'Mont-Regular';
    src: url('../fonts/Montserrat-Regular.woff2') format('woff2');
    font-weight: 400; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Mont-Bold';
    src: url('../fonts/Montserrat-Bold.woff2') format('woff2');
    font-weight: 700; font-style: normal; font-display: swap;
}
@font-face {
    font-family: 'Mont-Heavy';
    src: url('../fonts/Montserrat-ExtraBold.woff2') format('woff2');
    font-weight: 800; font-style: normal; font-display: swap;
}

:root {
    --navy:  #002755;
    --teal:  #36ccc7;
    --yellow:#f8bb16;
    --grey:  #f6f6f6;
    --muted: #667d99;
    --line:  #e2e6eb;
    --maxw:  1290px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: 'Mont-Regular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--navy);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}
body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, h5, h6 { font-family: 'Mont-Heavy', 'Mont-Bold', sans-serif; color: var(--navy); line-height: 1.2; margin: 0 0 .6em; }
p { margin: 0 0 1em; }
a { color: var(--navy); text-decoration: none; }
img { max-width: 100%; }
strong { font-family: 'Mont-Bold', sans-serif; color: var(--teal); font-weight: 700; }

/* ---------- Grid ---------- */
.row {
    max-width: var(--maxw);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}
.col { flex: 1 1 0; min-width: 0; }
.span-2-of-5 { flex: 1 1 42%; }
.span-1-of-3 { flex: 1 1 30%; }
.span-2-of-3 { flex: 2 1 60%; }
.span-1-of-2 { flex: 1 1 44%; }
.span-2-of-2 { flex: 1 1 100%; }
.span-1-of-6 { flex: 1 1 14%; }

.section__padding--default { padding: 80px 0; }
.section__padding--small   { padding: 48px 0; }
.section__color--white { background: #fff; }
.section__color--grey  { background: var(--grey); }
.mb-5 { margin-bottom: 2rem; }
.mt-10 { margin-top: 1.4rem; }
.mt-40 { margin-top: 2rem; }

/* ---------- Knoppen ---------- */
.btn {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 24px; border-radius: 999px; font-family: 'Mont-Bold', sans-serif;
    font-size: 15px; font-weight: 700; cursor: pointer; transition: all .2s; border: 3px solid transparent;
}
.btn .button-arrow { width: 15px; height: auto; transition: transform .2s; }
.btn:hover .button-arrow { transform: translateX(4px); }
.btn-full { background: var(--yellow); border-color: var(--yellow); color: #fff; }
.btn-full:hover { background: #d59d06; border-color: #d59d06; color: #fff; }
.btn-empty { padding: 6px 0; color: var(--navy); background: transparent; }
.btn-empty:hover { color: var(--yellow); }

/* =====================================================================
   HEADER / NAVIGATIE  (transparant over de hero)
   ===================================================================== */
.vixx-header { position: relative; min-height: 64vh; display: flex; flex-direction: column; }
.vixx-header .header-overlay {
    position: absolute; inset: 0; z-index: -1;
    background-size: cover; background-position: center top;
}
.vixx-header .header-overlay::after {
    content: ""; position: absolute; inset: 0;
    background: linear-gradient(180deg, rgba(0,39,85,.55) 0%, rgba(0,39,85,.15) 40%, rgba(0,39,85,.35) 100%);
}

.transparent-nav {
    position: relative; z-index: 20;
    background: linear-gradient(180deg, rgba(0,39,85,.85), rgba(0,39,85,0));
    padding: 20px 0;
}
.transparent-nav .row { align-items: center; gap: 24px; flex-wrap: nowrap; }
.logo__img { height: 44px; width: auto; display: block; }

.menu-vixx-nav-container { margin-left: auto; }
.main-nav {
    display: flex; align-items: center; gap: 30px;
    list-style: none; margin: 0; padding: 0;
}
.main-nav > li { position: relative; }
.main-nav > li > a {
    color: #fff; font-family: 'Mont-Bold', sans-serif; font-size: 15px; font-weight: 700;
    white-space: nowrap; transition: color .2s;
}
.main-nav > li > a:hover { color: var(--yellow); }

/* dropdowns */
.main-nav .sub-menu {
    position: absolute; top: calc(100% + 14px); left: 50%; transform: translateX(-50%) translateY(8px);
    min-width: 210px; background: #fff; border-radius: 10px; box-shadow: 0 16px 40px rgba(0,39,85,.18);
    list-style: none; margin: 0; padding: 8px 0; opacity: 0; visibility: hidden; transition: all .2s; z-index: 30;
}
.main-nav > li:hover > .sub-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.main-nav .sub-menu::before { content: ""; position: absolute; top: -14px; left: 0; right: 0; height: 14px; }
.main-nav .sub-menu li a { display: block; padding: 10px 22px; color: var(--navy); font-size: 14px; white-space: nowrap; }
.main-nav .sub-menu li a:hover { background: var(--grey); color: var(--teal); }

/* CTA-knop */
.main-nav .navbar-cta a {
    background: var(--yellow); color: #fff; padding: 11px 22px; border-radius: 999px;
    font-family: 'Mont-Bold', sans-serif;
}
.main-nav .navbar-cta a:hover { background: #fff; color: var(--navy); }

/* Taal-switch (statisch, sfeer van origineel) */
.nav-lang { color: #fff; font-size: 14px; font-family: 'Mont-Bold', sans-serif; white-space: nowrap; }
.nav-lang a { color: rgba(255,255,255,.6); }
.nav-lang a:hover { color: #fff; }
.nav-lang .active { color: #fff; }

/* Burger (mobiel) */
.burger-menu { display: none; cursor: pointer; margin-left: auto; }
.burger-menu .line-menu { width: 26px; height: 2px; background: #fff; display: block; margin: 6px 0; border-radius: 2px; transition: .3s; }

/* Mobiel overlay-menu */
.navik-header-overlay {
    position: fixed; inset: 0; background: var(--navy); z-index: 1000;
    display: flex; align-items: center; justify-content: center; overflow-y: auto;
    transform: translateX(100%); transition: transform .33s ease;
}
.navik-header-overlay.menu-open { transform: translateX(0); }
.overlay-nav-list { list-style: none; padding: 0; margin: 0; text-align: center; }
.overlay-nav-list > li { margin: 16px 0; }
.overlay-nav-list > li > a { color: #fff; font-size: 22px; font-family: 'Mont-Bold', sans-serif; }
.overlay-nav-list .sub-menu { list-style: none; padding: 6px 0 0; margin: 0; }
.overlay-nav-list .sub-menu li a { color: #9fb2c9; font-size: 15px; line-height: 2; }
.overlay-nav-list .navbar-cta a { display: inline-block; margin-top: 14px; background: var(--yellow); color: #fff; padding: 12px 26px; border-radius: 999px; }

/* =====================================================================
   HERO-CONTENT
   ===================================================================== */
.vixx-hero-home { flex: 1; display: flex; align-items: center; padding: 40px 0 56px; text-align: center; }
.vixx-hero-home .row { flex-direction: column; align-items: center; }
.vixx-hero-home h1 {
    color: #fff; font-size: clamp(32px, 4vw, 52px); margin: 0 auto 44px;
    text-shadow: 0 2px 18px rgba(0,0,0,.25); max-width: 900px;
}
.vixx-hero-home .services {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; width: 100%;
}
.vixx-hero-home .service {
    background: rgba(255,255,255,.72);
    border: 1.5px solid rgba(255,255,255,.7);
    box-shadow: 0 0 25px 1px rgba(0,0,0,.11);
    backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
    border-radius: 12px; padding: 26px; text-align: left;
    display: flex; flex-direction: column; align-items: flex-start; gap: 12px; transition: all .25s;
}
.vixx-hero-home .service:hover { background: #fff; border-color: #fff; transform: translateY(-3px); }
.vixx-hero-home .service .service-title { font-family: 'Mont-Heavy', 'Mont-Bold', sans-serif; font-size: 24px; color: var(--navy); margin: 0; }
.vixx-hero-home .service .service-link { color: var(--navy); font-size: 14px; padding: 0; background: none; }
.vixx-hero-home .service:hover .service-link { color: var(--yellow); }
.vixx-hero-home .service .service-link svg { width: 15px; height: 15px; }

/* =====================================================================
   OVER VIXX (video + tekst)
   ===================================================================== */
.over-vixx-display { align-items: center; }
.iframe-container { position: relative; padding-top: 56.25%; border-radius: 10px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,39,85,.12); }
.iframe-container iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }
.over-vixx-display h2 { font-size: clamp(24px, 2.4vw, 34px); }
.over-vixx-display p { color: #40566f; font-size: 18px; }

/* =====================================================================
   HYPOTHEEK-CALCULATOR
   ===================================================================== */
.moonsio-iframe-calculator { background: linear-gradient(180deg, #fff 50%, var(--grey) 50%); }
.moonsio-iframe-calculator__content {
    background: #fff; border-radius: 12px; box-shadow: 0 0 25px 1px rgba(0,0,0,.11);
    padding: 40px; margin: 0 8%; width: 100%;
}
.moonsio-iframe-calculator__title { font-size: 30px; }
.moonsio-iframe-calculator__intro { color: #40566f; margin-top: 12px; }
.moonsio-iframe-calculator__disclaimer { margin-top: 24px; color: var(--muted); font-size: 14px; }
.moonsio-iframe-calculator__read-more-link { color: var(--teal); text-decoration: underline; text-underline-offset: 3px; display: inline-flex; align-items: center; gap: 4px; }
.moonsio-iframe-calculator__read-more-link-icon-svg { width: 18px; height: 18px; }

.vixx-calc-placeholder {
    background: linear-gradient(135deg, var(--navy) 0%, #013a7a 100%);
    color: #fff; border-radius: 12px; padding: 48px 40px; text-align: center;
    min-height: 340px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 14px;
}
.vixx-calc-placeholder__badge { background: var(--yellow); color: var(--navy); font-family: 'Mont-Bold',sans-serif; font-size: 12px; letter-spacing: .08em; text-transform: uppercase; padding: 6px 14px; border-radius: 20px; }
.vixx-calc-placeholder h3 { color: #fff; font-size: 26px; margin: 4px 0 0; }
.vixx-calc-placeholder p { color: #cdd6e2; max-width: 460px; margin: 0; }

/* =====================================================================
   CONTACTFORMULIER "Daag ons uit!" + verhalen-slider
   ===================================================================== */
.section__contactform-gf .row { align-items: flex-start; }
.h1-flex-popup { font-size: clamp(30px, 3.5vw, 46px); margin-bottom: 1.2rem; }

.contactform-intro { color: #40566f; font-size: 17px; margin-bottom: 24px; max-width: 520px; }

/* Formulier als witte kaart, in dezelfde stijl als de rest van de site */
.section__contactform-gf .gf-contactform {
    background: #fff; border-radius: 14px; padding: 34px;
    box-shadow: 0 14px 40px rgba(0,39,85,.10);
}
.vixx-form { display: flex; flex-wrap: wrap; gap: 18px 16px; }
.vixx-form__field { display: flex; flex-direction: column; gap: 7px; }
.vixx-form__field--full { flex: 1 1 100%; }
.vixx-form__field--half { flex: 1 1 calc(50% - 8px); }
.vixx-form__field label { font-family: 'Mont-Bold', sans-serif; font-size: 13px; color: var(--navy); }
.vixx-form input, .vixx-form textarea {
    width: 100%; padding: 14px 16px; border: 1.5px solid #e4e8ee; border-radius: 10px;
    background: #fbfcfd; font-size: 15px; font-family: inherit; color: var(--navy); transition: all .2s;
}
.vixx-form input::placeholder, .vixx-form textarea::placeholder { color: #9aa7b6; }
.vixx-form textarea { min-height: 120px; resize: vertical; line-height: 1.5; }
.vixx-form input:focus, .vixx-form textarea:focus {
    outline: none; border-color: var(--teal); background: #fff;
    box-shadow: 0 0 0 3px rgba(54,204,199,.18);
}
.vixx-hp { position: absolute !important; left: -9999px !important; width: 1px !important; height: 1px !important; opacity: 0; }
.vixx-form__footer { flex: 1 1 100%; display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.vixx-form .gform_button { border: none; cursor: pointer; }
.vixx-form .gform_button:disabled { opacity: .6; cursor: default; }
.vixx-form__msg { font-size: 14px; font-family: 'Mont-Bold', sans-serif; }
.vixx-form__msg--ok { color: #1a7f37; }
.vixx-form__msg--err { color: #cf2e2e; }
@media (max-width: 560px) { .vixx-form__field--half { flex: 1 1 100%; } }

/* Slider */
.glider-contain { position: relative; }
.glider .content-glider { background: #fff; border-radius: 12px; overflow: hidden; box-shadow: 0 10px 30px rgba(0,39,85,.10); }
.glider .image-glider img { width: 100%; height: 210px; object-fit: cover; display: block; }
.glider .glider-text { padding: 22px 24px 28px; }
.glider .glider-text .testimonial { font-size: 20px; margin: 0 0 10px; }
.glider .glider-text .blue { color: var(--teal); }
.glider .glider-text > div { color: #40566f; font-size: 15px; margin-bottom: 6px; }
.verhaal-button { color: var(--navy); font-family: 'Mont-Bold',sans-serif; }
.verhaal-button .button-arrow { width: 14px; }
.glider-prev, .glider-next { position: absolute; top: 42%; z-index: 5; background: none; border: none; font-size: 30px; color: var(--navy); cursor: pointer; }
.glider-prev { left: -4px; } .glider-next { right: -4px; }
.glider-prev.disabled, .glider-next.disabled { opacity: .3; }
.glider-dots { justify-content: center; margin-top: 16px; }
.glider-dot { background: #c9d3e0; } .glider-dot.active { background: var(--navy); }

/* =====================================================================
   VERHAAL-BLOKKEN (3 kaarten)
   ===================================================================== */
.service-list.service-list__small { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; list-style: none; margin: 0; padding: 0; }
.service-list__small .service-block__content { background: var(--navy); color: #fff; border-radius: 12px; overflow: hidden; display: flex; flex-direction: column; height: 100%; }
.service-list__small .service-block__top img:first-child { width: 100%; height: 200px; object-fit: cover; display: block; }
.service-list__small .service-block__top h2 { color: #fff; font-size: 20px; padding: 20px 24px 0; }
.service-list__small .service-block__arrow { display: none; }
.service-list__small .service-block__content-wrapper { padding: 12px 24px 26px; display: flex; flex-direction: column; flex: 1; }
.service-list__small .service-block__content-wrapper p { color: #b9c6d8; font-size: 14px; margin: 0; }
.service-list__small .service-block__content-wrapper br { display: none; }
.service-list__small .verhaal-button { margin-top: auto; color: var(--yellow); }

/* =====================================================================
   CONTACT-CTA
   ===================================================================== */
.contact-title { width: 60%; margin: 0 auto 50px; }
.contact-title h2 { font-size: clamp(24px, 2.6vw, 34px); }
/* Witte (en navy) kaart met schaduw; content bepaalt de hoogte (geen height:100%),
   zodat de kaarten kort blijven en de foto ertussenuit kan steken. */
.text-contact {
    background: #fff;
    padding: 40px;
    box-shadow: 2px 0 24px 13px rgba(0,0,0,.07);
    border-radius: 5px;
    position: relative;
    min-height: 210px;
}
.text-contact h2.contact { color: inherit; font-size: 26px; margin-bottom: 1.6rem; }
/* Man-cutout: absoluut rechts-onderin de linker kaart → steekt tussen de
   twee kaarten omhoog (rechterrand linker kaart = midden van de sectie). */
.contact-img { position: absolute; bottom: 0; right: 6px; height: 300px; width: auto; max-width: none; }
.contact-mini-cta { text-align: center; font-size: 17px; margin-top: 20px; color: var(--navy); }
.click { color: var(--yellow); text-decoration: underline; }
@media (max-width: 900px) {
    .contact-title { width: 100%; }
    .contact-img { position: static; height: 220px; display: block; margin: 20px auto 0; }
}

/* =====================================================================
   FAQ
   ===================================================================== */
.dienst { font-size: 28px; }
.container-accordion { border-top: 1px solid var(--line); }
.accordion {
    width: 100%; text-align: left; background: none; border: none; border-bottom: 1px solid var(--line);
    padding: 20px 0; font-family: 'Mont-Bold', sans-serif; font-size: 17px; color: var(--navy);
    cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 16px;
}
.accordion img.up { width: 16px; height: auto; transition: transform .3s; }
.accordion.active img.up { transform: rotate(180deg); }
.panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.panel p { padding: 4px 0 20px; color: #40566f; margin: 0; }

/* =====================================================================
   POPUPS (verhalen + terugbel) via :target
   ===================================================================== */
.container-flex-popup .flex-up { display: none; }
.container-flex-popup .flex-up:target {
    display: flex; position: fixed; inset: 0; margin: auto; z-index: 9999;
    max-width: 1000px; max-height: 88vh; background: #fff; border-radius: 12px;
    overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,.35);
}
.container-flex-popup .flex-up:target::before { content: ""; position: fixed; inset: 0; z-index: -1; background: rgba(0,39,85,.6); }
.container-flex-popup .flex-up .flex-left { flex: 1 1 55%; padding: 44px; overflow-y: auto; }
.container-flex-popup .flex-up .flex-left .uitdaging-title, .container-flex-popup .flex-up .flex-left h1 { margin-bottom: 1rem; }
.container-flex-popup .flex-up .flex-left p { color: #40566f; }
.container-flex-popup .flex-up .flex-right { flex: 1 1 45%; background-size: cover; background-position: center; position: relative; min-height: 300px; }
.container-flex-popup .flex-up .close, .container-flex-popup .flex-up .close-1 {
    position: absolute; top: 16px; right: 20px; font-size: 30px; line-height: 1; color: var(--navy); z-index: 3;
}
.container-flex-popup .flex-up .flex-right .close { color: #fff; }
.flex-form .gf-contactform--grey input { background: var(--grey); }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer { background: var(--navy); color: #fff; padding: 64px 0 30px; }
footer .row { gap: 24px; }
footer .row:first-child { border-bottom: 1px solid rgba(255,255,255,.12); padding-bottom: 34px; }
footer .col { flex: 1 1 150px; }
footer .footer-logo { width: 120px; height: auto; }
footer h6 { color: #fff; font-size: 15px; margin: 0 0 14px; }
footer h6:not(:first-child) { margin-top: 22px; }
footer .menu { list-style: none; padding: 0; margin: 0; }
footer .menu li { margin: 8px 0; }
footer .menu li a { color: #a9b8cc; font-size: 14px; }
footer .menu li a:hover { color: var(--yellow); }
footer .tel-footer a { color: #fff; font-family: 'Mont-Bold',sans-serif; display: inline-flex; align-items: center; }
.icon-telefoon { width: 18px; height: auto; margin-right: 8px; }
footer .footer-nav { list-style: none; display: flex; flex-wrap: wrap; gap: 20px; padding: 0; margin: 0; align-items: center; }
footer .footer-nav.nav-left { flex: 1; }
footer .footer-nav li, footer .footer-nav li a { color: #a9b8cc; font-size: 13px; }
footer .footer-nav li a:hover { color: var(--yellow); }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1100px) {
    .vixx-hero-home .services { grid-template-columns: repeat(2, 1fr); }
    .service-list.service-list__small { grid-template-columns: 1fr; }
}
@media (max-width: 900px) {
    .menu-vixx-nav-container, .nav-lang { display: none; }
    .burger-menu { display: block; }
    .row { flex-direction: column; gap: 28px; }
    .col, .span-2-of-5, .span-1-of-3, .span-2-of-3, .span-1-of-2, .span-1-of-6 { flex: 1 1 100%; }
    .moonsio-iframe-calculator__content { margin: 0; padding: 26px; }
    .container-flex-popup .flex-up:target { flex-direction: column-reverse; max-height: 92vh; overflow-y: auto; }
    footer .col { flex: 1 1 45%; }
}
@media (min-width: 901px) {
    .navik-header-overlay { display: none; }
}
@media (max-width: 560px) {
    .vixx-hero-home .services { grid-template-columns: 1fr; }
    footer .col { flex: 1 1 100%; }
}
