/* --- CSS VARIABELEN (Gebaseerd op het logo) --- */
:root {
    --primary-blue: #00A3E0;
    --primary-orange: #FF7A00;
    --dark-navy: #0A1128;
    --light-bg: #F4F7F6;
    --white: #FFFFFF;
    --text-dark: #1C2541;
    --text-muted: #475569;
    --font-main: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

/* --- RESET & BASICS --- */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.6;
}

/* --- NAVIGATIE --- */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: #ffffff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-container {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 54px;
    width: auto;
    display: block;
    max-width: 100%;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: color 0.3s;
}

.nav-menu a:hover, .nav-menu a.active {
    color: var(--primary-blue);
}

.hamburger {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--dark-navy);
    transition: 0.3s;
}

/* --- HERO SECTION --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--dark-navy) 0%, #111e46 100%);
    background-image: url('images/team_header.png');
    background-position: right center;
    background-repeat: no-repeat;
    background-size: contain;
    color: var(--white);
    padding: 120px 20px 60px 20px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0,163,224,0.15) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255,122,0,0.1) 0%, rgba(0,0,0,0) 70%);
    border-radius: 50%;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 10;
}

.hero-text h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-text h1 span {
    color: var(--primary-orange);
}

.hero-text p {
    font-size: 1.2rem;
    color: #cbd5e1;
    margin-bottom: 30px;
    max-width: 500px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    background-color: var(--primary-blue);
    color: var(--white);
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn:hover {
    background-color: transparent;
    border-color: var(--primary-blue);
    color: var(--primary-blue);
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    border: 2px solid var(--primary-orange);
    color: var(--primary-orange);
    margin-left: 0;
}

.btn-secondary:hover {
    background-color: var(--primary-orange);
    color: var(--white);
    border-color: var(--primary-orange);
}

.hero-image-mock {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    min-height: 400px;
    position: relative;
    padding-right: 20px;
    overflow: visible;
}

.tech-shape {
    width: 250px;
    height: 250px;
    border: 4px solid var(--primary-blue);
    border-radius: 30px;
    transform: rotate(45deg);
    position: relative;
    animation: pulse 4s infinite ease-in-out;
    flex-shrink: 0;
}

.tech-shape::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-orange);
    border-radius: 30px;
    top: 20px;
    left: -20px;
}

@keyframes pulse {
    0%, 100% { transform: rotate(45deg) scale(1); }
    50% { transform: rotate(50deg) scale(1.05); }
}

/* --- SECTIONS (ALGEMENE STYLING) --- */
section {
    padding: 100px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background-color: var(--primary-orange);
    margin: 15px auto 0 auto;
    border-radius: 2px;
}

/* --- OVER ONS --- */
.about-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 60px;
    align-items: center;
}

.about-image-placeholder {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    width: 100%;
    min-height: 280px;
    aspect-ratio: 4 / 3;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.07);
}

.about-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    border-radius: 10px;
}

/* --- TEAM --- */
.team-section {
    max-width: 1280px;
}

.team-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 40px;
    color: var(--text-muted);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    justify-items: center;
    align-items: start;
}

.team-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(10, 17, 40, 0.06);
    width: 100%;
    max-width: 240px;
}

.team-card img {
    width: 100%;
    max-width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 16px;
    display: block;
    border: 4px solid #e2e8f0;
}

.team-card h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.team-card span {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    margin-bottom: 10px;
}

.team-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* --- DIENSTEN / THEMA'S --- */
.themes-section {
    background-color: #f8fafc;
    max-width: 100% !important;
    padding-left: calc((100% - 1200px)/2 + 20px);
    padding-right: calc((100% - 1200px)/2 + 20px);
}

.services-grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    background-color: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
    transition: all 0.3s;
    border-top: 4px solid var(--primary-blue);
}

.service-card:nth-child(2) {
    border-top-color: var(--primary-orange);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.08);
}

.service-card h3 {
    margin-bottom: 15px;
    font-size: 1.4rem;
}

/* --- CONTACT --- */
.contact-container {
    background-color: var(--white);
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
    padding: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-intro {
    margin-top: 15px;
    color: var(--text-muted);
}

.contact-email {
    margin-top: 30px;
    font-weight: bold;
}

.contact-email span {
    color: var(--primary-blue);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #cbd5e1;
    border-radius: 5px;
    outline: none;
    font-family: var(--font-main);
}

.form-group input:focus, .form-group textarea:focus {
    border-color: var(--primary-blue);
}

.btn-submit {
    border: none;
    cursor: pointer;
}

/* --- FOOTER --- */
footer {
    background-color: var(--dark-navy);
    color: rgba(255,255,255,0.7);
    padding: 40px 20px;
    text-align: center;
    border-top: 4px solid var(--primary-blue);
}

.footer-disclaimer {
    margin-top: 10px;
}

.footer-disclaimer a {
    color: var(--primary-orange);
    text-decoration: none;
    font-weight: 600;
}

.footer-disclaimer a:hover {
    text-decoration: underline;
}

.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(10, 17, 40, 0.7);
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 2000;
}

.modal-overlay.is-open {
    display: flex;
}

.modal-box {
    background: var(--white);
    color: var(--text-dark);
    max-width: 540px;
    width: 100%;
    border-radius: 16px;
    padding: 28px;
    position: relative;
    box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.modal-box h3 {
    margin-bottom: 12px;
    color: var(--dark-navy);
}

.modal-box p {
    margin-bottom: 10px;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    border: none;
    background: transparent;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-muted);
}

/* --- RESPONSIVENESS --- */
@media (max-width: 968px) {
    .hero-container, .about-grid, .contact-container {
        grid-template-columns: 1fr;
    }
    .hero {
        text-align: center;
        padding-top: 140px;
    }
    .hero-text p {
        margin: 0 auto 30px auto;
    }
    .hero-actions {
        justify-content: center;
    }
    .hero-image-mock {
        display: none;
    }
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: absolute;
        top: 100%;
        left: -100%;
        width: 100%;
        height: calc(100vh - 100%);
        background-color: var(--white);
        flex-direction: column;
        align-items: center;
        padding: 40px 0;
        transition: 0.3s;
        box-shadow: 0 10px 10px rgba(0,0,0,0.05);
    }
    .nav-menu.active {
        left: 0;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 16px 50px;
    }
    .about-grid {
        gap: 32px;
    }
    .about-image-placeholder {
        min-height: 220px;
        max-width: 560px;
        margin: 0 auto;
    }
    .about-grid {
        gap: 32px;
    }
    .about-image-placeholder {
        min-height: 220px;
        max-width: 560px;
        margin: 0 auto;
    }
    .hero-text h1 {
        font-size: 2.4rem;
    }
    .hero-text p {
        font-size: 1rem;
    }
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        justify-content: center;
        width: fit-content;
        margin: 0 auto;
    }
    section {
        padding: 80px 16px;
    }
    .section-title {
        font-size: 2rem;
    }
    .contact-container {
        padding: 30px 24px;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 12px 16px;
    }
    .logo-img {
        height: 32px;
    }
    .hero {
        min-height: unset;
    }
    .hero-text h1 {
        font-size: 2rem;
    }
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    .service-card {
        padding: 24px;
    }
    .about-image-placeholder {
        min-height: 200px;
        padding: 12px;
    }
    .form-group input,
    .form-group textarea {
        padding: 12px;
    }
}
