/* ========================================
   LOKALE KRACHT - OPTIMIZED V2
   Cleaner, meer focus, minder ruis
   ======================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --dark: #1D4842;
    --accent: #E9852D;
    --green: #557B56;
    --sky: #234C69;
    --cream: #F4F1E8;
    --sand: #D4C4A8;
    --peat: #3D3226;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    line-height: 1.6;
    color: var(--peat);
    background: var(--cream);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ========================================
   HEADER - Compacter
   ======================================== */

header {
    background: white;
    position: sticky;
    top: 0;
    z-index: 1000;
    border-bottom: 1px solid var(--sand);
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 65px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--dark);
    font-weight: 700;
    font-size: 17px;
}

.logo-img {
    height: 40px;
    width: auto;
}

.logo-mark {
    width: 40px;
    height: 40px;
    background: var(--sky);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
    font-size: 16px;
}

.nav-links {
    display: flex;
    gap: 25px;
    align-items: center;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--sky);
    font-weight: 600;
    font-size: 14px;
    transition: opacity 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
    opacity: 0.7;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 26px;
    cursor: pointer;
    color: var(--dark);
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        gap: 16px;
        box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    }
    
    .nav-links.active {
        display: flex;
    }
    
    .menu-toggle {
        display: block;
    }
}

/* ========================================
   BUTTONS - Simpeler
   ======================================== */

.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    transition: all 0.2s;
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background: var(--accent);
    color: white;
}

.btn-primary:hover {
    background: #d67525;
}

.btn-secondary {
background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-secondary:hover {
    background: var(--sky);
    color: white;
}

.btn-outline-white {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.btn-outline-white:hover {
    background: white;
    color: var(--sky);
}

/* ========================================
   HERO - Krachtiger, minder tekst
   ======================================== */

.hero {
    background: linear-gradient(135deg, var(--sky) 0%, var(--dark) 100%);
    color: white;
    padding: 70px 20px;
}

.hero-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero h1 {
    font-size: 46px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
}

.hero .accent {
    color: var(--accent);
}

.hero-intro {
    font-size: 19px;
    color: white;
    line-height: 1.6;
    opacity: 0.92;
    margin-bottom: 28px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .hero-content {
        grid-template-columns: 1fr;
    }
    
    .hero h1 {
        font-size: 32px;
    }
}

/* ========================================
   SECTIONS - Meer lucht
   ======================================== */

section {
    padding: 60px 20px;
}

h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 12px;
}

h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 10px;
}

p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--peat);
}

.lead {
    font-size: 18px;
    line-height: 1.7;
    color: #5a5450;
    margin-bottom: 40px;
}

/* ========================================
   GRID - Simpeler systeem
   ======================================== */

.grid {
    display: grid;
    gap: 24px;
}

.grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
    grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1024px) {
    .grid-4, .grid-3 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .grid-2, .grid-3, .grid-4 {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   CARDS - Minder corporate
   ======================================== */

.card {
    background: white;
    padding: 32px 24px;
    border-radius: 8px;
    border: 1px solid #e5e3df;
    transition: all 0.3s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    text-align: center;
}

.card:hover {
    transform: translateY(-4px);
    border-color: var(--accent);
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.card h3 {
    margin-bottom: 14px;
    color: var(--dark);
    font-size: 19px;
}

.card p {
    color: #5a5450;
    font-size: 15px;
    line-height: 1.7;
}

/* ========================================
   VALUE & PRIORITY BOXES - Natuurlijker
   ======================================== */

.value-box {
    background: white;
    padding: 24px;
    border-radius: 4px;
    border-left: 3px solid var(--green);
}

.value-box h3 {
    font-size: 19px;
    margin-bottom: 10px;
    color: var(--dark);
}

.value-box p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5450;
}

.priority-box {
    background: #fafaf9;
    padding: 28px;
    border-radius: 4px;
    border-bottom: 3px solid var(--sand);
}

.priority-box h3 {
    font-size: 19px;
    margin-bottom: 12px;
    color: var(--dark);
}

.priority-box p {
    font-size: 15px;
    line-height: 1.7;
    color: #5a5450;
}

/* ========================================
   QUOTE - Simpeler
   ======================================== */

.quote-section {
    background: var(--sand);
    text-align: center;
    padding: 50px 20px;
}

.quote-section blockquote {
    font-size: 22px;
    font-weight: 600;
    font-style: italic;
    color: var(--dark);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* ========================================
   TEAM
   ======================================== */

.team-photo {
    max-width: 900px;
    margin: 0 auto 40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.1);
}

.team-photo img {
    width: 100%;
    height: auto;
    display: block;
}

.photo-placeholder {
    background: linear-gradient(135deg, var(--sky) 0%, var(--green) 100%);
    padding: 80px 30px;
    color: white;
    text-align: center;
    font-size: 16px;
}

.team-member {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--sand);
    transition: all 0.25s;
    text-decoration: none;
    color: inherit;
    display: block;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0,0,0,0.1);
    border-color: var(--accent);
}

.team-member-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    background: linear-gradient(135deg, var(--sky) 0%, var(--green) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 50px;
}

.team-member-info {
    padding: 18px;
}

.team-member-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.team-member-role {
    font-size: 13px;
    color: var(--green);
    font-weight: 600;
    margin-bottom: 8px;
}

.team-member-bio {
    font-size: 13px;
    line-height: 1.5;
    color: #5a5450;
}

/* ========================================
   PAGE HERO - Compacter
   ======================================== */

.page-hero {
    background: linear-gradient(135deg, var(--sky) 0%, var(--dark) 100%);
    color: white;
    padding: 50px 20px;
    text-align: center;
}

.page-hero h1 {
    font-size: 42px;
    font-weight: 800;
    margin-bottom: 14px;
    color: white;
}

.page-hero p {
    font-size: 18px;
    max-width: 700px;
    margin: 0 auto;
    opacity: 0.92;
    color: white;
}

/* ========================================
   THEMA BOXES - Veel cleaner
   ======================================== */

.thema-box {
    background: white;
    padding: 24px;
    border-radius: 8px;
    border-left: 4px solid var(--green);
    margin-bottom: 20px;
}

.thema-box h3 {
    font-size: 19px;
    margin-bottom: 8px;
}

.thema-box p {
    font-size: 15px;
    color: #5a5450;
    margin-bottom: 10px;
}

.thema-box ul {
    margin-left: 20px;
    margin-top: 8px;
}

.thema-box li {
    margin-bottom: 6px;
    font-size: 14px;
    line-height: 1.5;
}

/* ========================================
   CTA - Simpeler
   ======================================== */

.cta-section {
    background: linear-gradient(135deg, var(--dark) 0%, var(--sky) 100%);
    color: white;
    text-align: center;
    padding: 60px 20px;
}

.cta-section h2 {
    color: white;
    margin-bottom: 14px;
}

.cta-section p {
    font-size: 17px;
    margin-bottom: 24px;
    color: white;
    opacity: 0.92;
}

.cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   FOOTER - Compacter
   ======================================== */

footer {
    background: var(--dark);
    color: white;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 40px;
    padding: 50px 20px 30px;
}

.footer-logo {
    width: 50px;
    height: auto;
    margin-bottom: 12px;
}

.footer-col h4 {
    font-size: 15px;
    margin-bottom: 12px;
    color: var(--accent);
    font-weight: 700;
}

.footer-col ul {
    list-style: none;
}

.footer-col li {
    margin-bottom: 8px;
}

.footer-col a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-col a:hover {
    color: white;
}

.footer-col p {
    color: rgba(255,255,255,0.75);
    font-size: 14px;
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.15);
    padding: 20px;
    text-align: center;
}

.footer-bottom p {
    font-size: 13px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

/* ========================================
   FORMS - Cleaner
   ======================================== */

.form-group {
    margin-bottom: 20px;
}

label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--dark);
    font-size: 14px;
}

input[type="text"],
input[type="email"],
input[type="tel"],
textarea,
select {
    width: 100%;
    padding: 11px 14px;
    border: 2px solid var(--sand);
    border-radius: 6px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.2s;
}

input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: var(--sky);
}

textarea {
    min-height: 120px;
    resize: vertical;
}

/* ========================================
   UTILITY
   ======================================== */

.text-center {
    text-align: center;
}

.mb-20 {
    margin-bottom: 20px;
}

.mb-30 {
    margin-bottom: 30px;
}

.mb-40 {
    margin-bottom: 40px;
}

.mt-30 {
    margin-top: 30px;
}

.mt-40 {
    margin-top: 40px;
}

.max-w-800 {
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* ========================================
   THEMA MET FOTO'S
   ======================================== */

.thema-with-image {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 28px;
    align-items: center;
    background: white;
    padding: 24px;
    border-radius: 4px;
    border-left: 4px solid var(--green);
    margin-bottom: 24px;
}

.thema-image {
    width: 300px;
    height: 200px;
    object-fit: cover;
    border-radius: 4px;
    order: 2;
}

.thema-content {
    order: 1;
}

.thema-content h3 {
    font-size: 20px;
    color: var(--dark);
    margin-bottom: 10px;
}

.thema-content p {
    font-size: 15px;
    line-height: 1.6;
    color: #5a5450;
}

@media (max-width: 768px) {
    .thema-with-image {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .thema-image {
        width: 100%;
        height: 180px;
        order: 1;
    }
    
    .thema-content {
        order: 2;
    }
}
