* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Algemene stijl */
body {
    font-family: monospace;
    background: linear-gradient(180deg, #0f2027, #203a43, #2c5364);
    color: #e0f2f1;
    line-height: 1.6;
}

/* ================= HEADER ================= */
.header {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 60px;
    gap: 40px;
}

.header-text {
    max-width: 600px;
}

.header h1 {
    font-size: 48px;
    color: #5eead4;
}

.header p {
    font-size: 20px;
    margin-top: 10px;
    color: #b2dfdb;
}

/* Header afbeelding */
.header-image img {
    width: 230px;
    height: auto;
    border-radius: 12px;
    border: 3px solid #5eead4;
    right: 1000px;
}

/* ================= SECTIONS ================= */
.section {
    padding: 80px 60px;
    max-width: 900px;
}

.section h2 {
    font-size: 32px;
    margin-bottom: 30px;
    color: #5eead4;
}

.section p {
    font-size: 18px;
}

/* ================= PROJECTS ================= */
.projects {
    padding-bottom: 120px;
}

.project {
    background: rgba(94, 234, 212, 0.08);
    border-left: 4px solid #5eead4;
    padding: 30px;
    margin-bottom: 50px;
}

.project h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #99f6e4;
}

/* ================= VIDEO'S ================= */
.video-block {
    margin-bottom: 35px;
}

.video-block video {
    width: 100%;
    max-width: 800px;
    border-radius: 6px;
    margin-bottom: 10px;
}

.video-text {
    font-size: 16px;
    color: #cfeeed;
}

/* ================= RESPONSIVE ================= */
@media (max-width: 768px) {
    .header {
        flex-direction: column;
        text-align: center;
    }

    .header-image img {
        width: 220px;
    }

    .section {
        padding: 60px 30px;
    }
}
