/* ================================================
   VPO.nl – Custom CSS
   ================================================ */

body, * {
    font-family: 'proxima-nova', 'Helvetica Neue', Arial, sans-serif !important;
}

.proxima-soft {
    font-family: 'proxima-soft' !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'proxima-soft' !important;
}

body {
    background-color: rgba(250, 249, 247, 1);
}

/* ---- Navigation dropdowns ---- */
.nav-dropdown {
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0.15s;
    pointer-events: none;
}

.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.15s ease, transform 0.15s ease, visibility 0s linear 0s;
    pointer-events: auto;
}

/* ---- Video aspect ratio wrapper ---- */
.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: 0.75rem;
}

.video-wrapper iframe,
.video-wrapper video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 0.75rem;
}

/* ---- Mobile menu ---- */
#mobile-menu {
    display: none;
}

#mobile-menu.open {
    display: block;
}

/* ---- Scroll feature: circle achter image ---- */
.img-circle-wrap {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.img-circle-wrap .circle-background {
    position: absolute;
    width: 95%;
    height: 95%;
    background: transparent;
    border: 1.5rem solid rgb(182, 159, 146);
    border-radius: 50%;
    z-index: 0;
}

.img-circle-wrap img {
    position: relative;
    z-index: 1;
    transform: translate(10%, 0%);
}

/* ---- Speerpunt card hover ---- */
.speerpunt-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.speerpunt-card:hover {
    transform: translateY(-4px);
}

















.contact { background: var(--white); }

.contact-inner {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}

.contact-detail {
    display: flex; align-items: flex-start; gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-icon {
    width: 42px; height: 42px; flex-shrink: 0;
    background: #1D69AA;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; fill: none; stroke: white; stroke-width: 2; }

.contact-text strong {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 0.85rem;
    margin-bottom: 0.2rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.contact-text span { color: var(--gray); font-size: 0.95rem; }
.contact-text a { color: var(--blue); text-decoration: none; }
.contact-text a:hover { text-decoration: underline; }

.contact-right { position: relative; }

.contact-cta-box {
    background: var(--blue);
    border-radius: 16px;
    padding: 3rem;
    text-align: center;
}

.contact-cta-box h3 {

    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.8rem;
}

.contact-cta-box p {
    color: rgba(255,255,255,0.75);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.cta-box-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.8rem;
}

.cta-box-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    width: 100%;
    padding: 0.85rem 1.5rem;
    border-radius: 8px;
    font-family: 'ClearSans', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    background: var(--green);
    color: white;
    transition: opacity 0.2s, transform 0.2s;
}
.cta-box-btn svg { width: 16px; height: 16px; flex-shrink: 0; }
.cta-box-btn:hover { opacity: 0.88; transform: translateY(-1px); }

.cta-box-btn--outline {
    background: transparent;
    border: 1.5px solid rgba(255,255,255,0.45);
    color: white;
}
.cta-box-btn--outline:hover { background: rgba(255,255,255,0.1); opacity: 1; }

/* ── CONTACTFORMULIER ── */
.contact-form-wrap {
    display: block;
    background: var(--white);
    border-radius: 16px;
    border: 1px solid rgba(0,117,201,0.15);
    padding: 2.5rem;
}
.contact-form-wrap.visible { display: block; }

.contact-form-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
}
.contact-form-header h3 {

    font-size: 1.4rem;
    font-weight: 800;
    color: var(--blue);
}
.contact-form-close {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.3rem;
    color: var(--gray);
    transition: color 0.2s;
}
.contact-form-close:hover { color: var(--dark); }
.contact-form-close svg { width: 20px; height: 20px; display: block; }

.cf-row { display: flex; gap: 1.2rem; }
.cf-row--2 > .cf-field { flex: 1; }

.cf-field {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.2rem;
}
.cf-field label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark);
}
.cf-req { color: var(--blue); }

.cf-field input,
.cf-field select,
.cf-field textarea {
    border: 1.5px solid #d0dce8;
    border-radius: 8px;
    padding: 0.7rem 1rem;
    font-family: 'ClearSans', sans-serif;
    font-size: 0.92rem;
    color: var(--dark);
    background: var(--white);
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}
.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
    border-color: var(--blue);
    box-shadow: 0 0 0 3px rgba(0,117,201,0.1);
}
.cf-field textarea { resize: vertical; }
.cf-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23828282' stroke-width='2.5' stroke-linecap='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; }

.cf-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 0.5rem;
}
.cf-privacy { font-size: 0.78rem; color: var(--gray); }

.cf-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
}
.cf-submit-icon { width: 15px; height: 15px; }

.cf-feedback {
    margin-top: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    min-height: 1.4rem;
}
.cf-feedback.success { color: #5a7a1a; }
.cf-feedback.error   { color: #c0392b; }

@media (max-width: 768px) {
    .cf-row--2 { flex-direction: column; gap: 0; }
}



