/* =========================================
   1. RESET & BASIS
   ========================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 1.6;
    color: #1A1A1A;
    background-color: #FFFFFF;
    scroll-behavior: smooth;
    overflow-x: hidden;
}

/* =========================================
   2. NAVIGATIEBALK
   ========================================= */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 8%;
    background: #FFFFFF;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 2px solid #002D62;
    height: 160px; 
    transition: all 0.3s ease;
}

.logo-container {
    height: 100%;
    display: flex;
    align-items: center;
    flex: 1.5;
}

.site-logo {
    height: 135px; 
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-links {
    display: flex;
    list-style: none;
    justify-content: center;
    align-items: center;
    height: 100%;
    flex: 2;
}

.nav-links li {
    margin: 0 20px;
}

.nav-links a {
    text-decoration: none;
    color: #002D62;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    transition: 0.3s ease;
}

.nav-links a:hover {
    color: #C5A059;
}

.nav-icons {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.mail-icon {
    color: #002D62;
    transition: 0.3s ease;
}

.mail-icon:hover {
    color: #C5A059;
    transform: scale(1.1);
}

/* =========================================
   3. HERO SECTIE
   ========================================= */
.hero {
    height: 65vh;
    min-height: 400px;
    background-color: #002D62;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #FFFFFF;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    margin-bottom: 20px;
    font-weight: 700;
}

.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 700px;
    margin: 0 auto 40px auto;
    opacity: 0.9;
}

/* =========================================
   4. KNOPPEN & INTERACTIE
   ========================================= */
.cta-button {
    display: inline-block;
    background: #C5A059;
    color: #FFFFFF;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    border: 2px solid #C5A059;
    transition: 0.3s;
    cursor: pointer;
    text-align: center;
}

.cta-button:hover {
    background: transparent;
    border-color: #FFFFFF;
    color: #C5A059;
}

.pulse-btn:hover {
    background: #d4ae6a;
    box-shadow: 0 0 20px 5px rgba(197, 160, 89, 0.4);
    border-color: #d4ae6a;
    color: #FFFFFF;
}

/* =========================================
   5. OVER ONS
   ========================================= */
.container {
    padding: 80px 8%;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: clamp(1.5rem, 4vw, 2rem);
    color: #002D62;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.white-text {
    color: #FFFFFF !important;
}

.mission-box {
    text-align: center;
    max-width: 850px;
    margin: 0 auto 60px auto;
}

.mission-text {
    font-size: 1.1rem;
    color: #444;
    text-align: justify;
    text-justify: inter-word;
    line-height: 1.8;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.benefit-item {
    background: #F4F7FA;
    border-bottom: 4px solid #C5A059;
    transition: 0.3s;
    overflow: hidden;
}

.benefit-item:hover {
    transform: translateY(-5px);
}

.benefit-img {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
}

.benefit-content {
    padding: 25px;
    text-align: center;
}

/* =========================================
   6. DIENSTEN (Blauw)
   ========================================= */
.services-section {
    background: #002D62;
    color: #FFFFFF;
    padding: 80px 8%;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.service-card {
    padding: 40px;
    text-align: center;
    transition: 0.3s;
}

.dark-card {
    background: rgba(255, 255, 255, 0.05);
    border-top: 5px solid #C5A059;
}

.dark-card h3 {
    color: #C5A059;
    margin-bottom: 15px;
}

/* =========================================
   7. VACATURES
   ========================================= */
.vacatures-section-white {
    background: #FFFFFF;
    padding: 100px 8%;
}

.open-sollicitatie-box {
    background: #002D62;
    color: #FFF;
    padding: 60px 40px;
    border-radius: 8px;
    max-width: 900px;
    margin: 0 auto;
    border-bottom: 8px solid #C5A059;
    text-align: center;
}

.standout h3 {
    color: #C5A059;
    font-size: clamp(1.5rem, 4vw, 2.2rem);
    margin-bottom: 20px;
    font-weight: 700;
    text-transform: uppercase;
}

.standout p {
    font-size: 1.2rem;
    margin-bottom: 35px;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   8. CONTACT & FOOTER
   ========================================= */
.contact-wrapper {
    max-width: 600px;
    margin: auto;
    background: #F4F7FA;
    padding: 40px;
    border-left: 5px solid #002D62;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 700;
    color: #002D62;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #CCC;
    font-family: inherit;
}

footer {
    text-align: center;
    padding: 50px;
    background: #1A1A1A;
    color: #FFF;
    font-size: 0.9rem;
}

/* =========================================
   9. RESPONSIVE DESIGN (MOBIEL)
   ========================================= */

@media (max-width: 1024px) {
    .navbar {
        padding: 0 4%;
        height: 130px;
    }
    .site-logo {
        height: 100px;
    }
}

@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 20px 0;
    }

    .logo-container {
        margin-bottom: 10px;
    }

    .site-logo {
        height: 100px; /* Groter logo voor telefoon (was 80px) */
    }

    .nav-links {
        margin-bottom: 15px;
        width: 100%;
        justify-content: center;
    }

    .nav-links li {
        margin: 5px 10px;
    }

    .nav-links a {
        font-size: 0.8rem;
    }

    .nav-icons {
        display: none; 
    }

    .container {
        padding: 60px 5%;
    }

    .mission-text {
        text-align: center;
    }

    .hero {
        height: auto;
        padding: 100px 20px;
    }

    .open-sollicitatie-box {
        padding: 40px 20px;
    }
}

@media (max-width: 480px) {
    .site-logo {
        height: 90px; /* Blijft goed zichtbaar op kleine schermen */
    }
    .nav-links li {
        margin: 5px 6px;
    }
    .cta-button {
        padding: 15px 25px;
        width: 100%; 
    }
}