/* Reset en basis stijlen */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

/* Header en navigatie */
header {
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

nav ul {
    display: flex;
    justify-content: center;
    list-style: none;
    padding: 1rem;
}

nav ul li {
    margin: 0 1.5rem;
}

nav ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

nav ul li a:hover {
    color: #007bff;
}

/* Hero sectie verbeterd */
.hero {
    min-height: 100vh;
    background: linear-gradient(135deg, #005bea 0%, #00c6fb 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1rem;
    position: relative;
}

.hero-flex {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-photo-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1 1 0;
}

.hero-photo-large {
    width: 320px;
    height: 320px;
    object-fit: cover;
    border-radius: 18px;
    box-shadow: 0 8px 48px rgba(0,91,234,0.18);
    border: 6px solid #fff;
    background: #e6f0fa;
    transition: transform 0.4s cubic-bezier(.4,2,.6,1);
}

.hero-photo-large:hover {
    transform: scale(1.04) rotate(-2deg);
    box-shadow: 0 16px 64px rgba(0,91,234,0.22);
}

.hero-intro-card {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 8px 32px rgba(0,91,234,0.10);
    border-radius: 2rem;
    padding: 3rem 3.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    min-width: 340px;
    max-width: 480px;
    animation: fadeIn 1.2s cubic-bezier(.4,2,.6,1);
}

.hero-role {
    font-size: 1.2rem;
    color: #005bea;
    font-weight: 600;
    margin-bottom: 0.7rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-intro-card h1 {
    font-size: 2.6rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: #222;
    line-height: 1.1;
}

.hero-intro-card .accent {
    color: #005bea;
}

.hero-tagline {
    font-size: 1.18rem;
    color: #333;
    margin-bottom: 0.5rem;
    font-style: italic;
    font-weight: 500;
}

@media (max-width: 1000px) {
    .hero-flex {
        flex-direction: column;
        gap: 2.5rem;
    }
    .hero-photo-large {
        width: 220px;
        height: 220px;
        border-radius: 12px;
    }
    .hero-intro-card {
        padding: 2rem 1.5rem;
        min-width: 0;
        max-width: 95vw;
        align-items: center;
        text-align: center;
    }
    .hero-intro-card h1 {
        font-size: 2rem;
    }
}

/* Secties */
section {
    padding: 5rem 2rem;
}

section h2 {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2.5rem;
    color: #333;
}

/* Over Mij sectie */
.about-content {
    max-width: 800px;
    margin: 0 auto;
}

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

.skills {
    margin-top: 2rem;
}

.skills ul {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.skills li {
    background-color: #f8f9fa;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
}

/* Ervaring sectie */
.experience-item {
    max-width: 800px;
    margin: 0 auto;
    background-color: #f8f9fa;
    padding: 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,91,234,0.08);
    position: relative;
}

.experience-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.experience-icon {
    font-size: 2rem;
    color: #4F8CFF;
    background: #e6f0fa;
    border-radius: 50%;
    padding: 0.5rem 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.experience-title {
    font-size: 1.35rem;
    font-weight: 700;
    color: #222;
    margin: 0;
}

.experience-title span {
    color: #007bff;
}

.experience-badge {
    background: #4F8CFF;
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    padding: 0.3rem 1rem;
    margin-left: auto;
    letter-spacing: 1px;
}

.experience-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.experience-list li {
    display: flex;
    align-items: center;
    gap: 0.7em;
    font-size: 1.08rem;
    margin-bottom: 0.5rem;
    color: #333;
}

.experience-list i {
    color: #4F8CFF;
    font-size: 1.1em;
}

.experience-soon {
    text-align: right;
    color: #888;
    font-style: italic;
    font-size: 0.98em;
    margin-top: 0.5rem;
}

/* Projecten sectie */
.project-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.project-card {
    background-color: #f8f9fa;
    padding: 2rem 2rem 1.5rem 2rem;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,91,234,0.08);
    transition: transform 0.3s, box-shadow 0.3s;
    position: relative;
    display: flex;
    flex-direction: column;
    min-height: 320px;
}

.project-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 8px 32px rgba(0,91,234,0.13);
}

.project-icon {
    font-size: 2.2rem;
    color: #4F8CFF;
    margin-bottom: 0.7rem;
}

.project-title {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.project-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.2s;
}

.project-link:hover {
    color: #005bea;
    text-decoration: underline;
}

.project-features {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1.2rem;
}

.project-features li {
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-size: 1.04rem;
    color: #333;
    margin-bottom: 0.3rem;
    position: relative;
}

.project-features li::before {
    content: '\f058';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    color: #4F8CFF;
    margin-right: 0.5em;
    font-size: 1em;
}

.project-more {
    align-self: flex-end;
    color: #4F8CFF;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.02rem;
    border-bottom: 1px dashed #4F8CFF;
    transition: color 0.2s, border-bottom 0.2s;
}

.project-more:hover {
    color: #005bea;
    border-bottom: 1px solid #005bea;
}

/* Contact sectie */
.contact-info {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-links {
    margin-top: 2rem;
}

.social-links a {
    color: #333;
    font-size: 1.5rem;
    margin: 0 1rem;
    transition: color 0.3s ease;
}

.social-links a:hover {
    color: #007bff;
}

/* Footer */
footer {
    background-color: #333;
    color: white;
    text-align: center;
    padding: 1rem;
    margin-top: 2rem;
}

/* Responsive design */
@media (max-width: 768px) {
    nav ul {
        flex-direction: column;
        align-items: center;
    }

    nav ul li {
        margin: 0.5rem 0;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h2 {
        font-size: 1.5rem;
    }

    section {
        padding: 3rem 1rem;
    }

    .project-grid {
        grid-template-columns: 1fr;
    }
}

.hero-photo {
    width: 140px;
    height: 140px;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 24px rgba(0,91,234,0.15);
    border: 4px solid #fff;
    background: #e6f0fa;
    margin-right: 1.5rem;
}

@media (max-width: 768px) {
    .hero-content {
        flex-direction: column !important;
        align-items: center !important;
        gap: 1.2rem !important;
    }
    .hero-photo {
        width: 100px;
        height: 100px;
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

.skills-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

.skill-badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f0f6ff;
    border: 2px solid #4F8CFF;
    border-radius: 24px;
    padding: 8px 18px;
    color: #4F8CFF;
    font-weight: 500;
    font-size: 1rem;
    transition: background 0.2s, color 0.2s;
}

.skill-badge i {
    color: #4F8CFF;
    font-size: 1.3em;
}

.skill-badge:hover {
    background: #4F8CFF;
    color: #fff;
}

.skill-badge:hover i {
    color: #fff;
}

.soft-skills {
    margin-top: 32px;
    text-align: center;
}

.soft-skills h3 {
    margin-bottom: 12px;
    color: #222;
    font-size: 1.2em;
    font-weight: 600;
}

/* Hard & Soft Skills titels centreren en spacing verbeteren */
.hard-skills-title, .soft-skills-title {
    text-align: center;
    margin-top: 2.5rem;
    margin-bottom: 1.2rem;
    font-size: 1.35em;
    font-weight: 700;
    color: #222;
}

.skills-grid {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 600px) {
    .skills-grid {
        gap: 10px;
        padding: 0 2px;
    }
    .skill-badge {
        font-size: 0.95rem;
        padding: 7px 10px;
    }
}

.contact-methods {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2.2rem;
    margin-top: 1.5rem;
}
.contact-link {
    display: flex;
    align-items: center;
    gap: 0.7em;
    color: #4F8CFF;
    font-size: 1.12rem;
    font-weight: 500;
    text-decoration: none;
    background: #f0f6ff;
    border-radius: 18px;
    padding: 0.7em 1.3em;
    box-shadow: 0 2px 8px rgba(0,91,234,0.06);
    transition: background 0.2s, color 0.2s;
}
.contact-link i {
    font-size: 1.3em;
}
.contact-link:hover {
    background: #4F8CFF;
    color: #fff;
}
.contact-link:hover i {
    color: #fff;
}

.reflectie {
    padding: 5rem 2rem 3rem 2rem;
    background: #f8f9fa; 
}
.reflectie h2 {
    text-align: center;
    font-size: 2.3rem;
    color: #333;
    margin-bottom: 2.5rem;
}
.reflectie-content {
    display: flex;
    gap: 2.5rem;
    max-width: 1000px;
    margin: 0 auto;
    flex-wrap: wrap;
    justify-content: center;
}
.reflectie-blok {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 16px rgba(0,91,234,0.08);
    padding: 2.2rem 2rem 1.5rem 2rem;
    flex: 1 1 340px;
    min-width: 300px;
    max-width: 480px;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.reflectie-blok h3 {
    color: #4F8CFF;
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-weight: 700;
}
.reflectie-blok p {
    color: #333;
    font-size: 1.08rem;
    line-height: 1.7;
}
@media (max-width: 900px) {
    .reflectie-content {
        flex-direction: column;
        gap: 1.5rem;
        align-items: center;
    }
    .reflectie-blok {
        max-width: 95vw;
    }
} 