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

body {
    font-family: 'Georgia', serif;
    font-size: 10.5pt;
    color: #1a1a1a;
    background: #fff;
    line-height: 1.45;
}

a {
    color: #1a4a6b;
    text-decoration: none;
}

a:hover { text-decoration: underline; }

/* ── Page layout ──────────────────────────────────── */
.page {
    max-width: 210mm;
    margin: 0 auto;
    padding: 14mm 16mm 14mm 16mm;
}

/* ── Header ───────────────────────────────────────── */
.header {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 14px;
    border-bottom: 2px solid #1a4a6b;
    padding-bottom: 12px;
}

.header-photo img {
    width: 90px;
    height: 110px;
    object-fit: cover;
    border: 1px solid #ccc;
}

.header-info { flex: 1; }

.header-info h1 {
    font-family: 'Georgia', serif;
    font-size: 20pt;
    font-weight: bold;
    color: #1a4a6b;
    letter-spacing: 0.5px;
    margin-bottom: 3px;
}

.header-info .tagline {
    font-size: 10pt;
    color: #444;
    margin-bottom: 8px;
    font-style: italic;
}

.contact-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2px 20px;
    font-size: 9.5pt;
    color: #333;
}

.contact-grid span::before {
    content: '▸ ';
    color: #1a4a6b;
}

/* ── Sections ─────────────────────────────────────── */
.section { margin-bottom: 20px; }

.section h2 {
    font-size: 10.5pt;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1a4a6b;
    border-bottom: 1px solid #1a4a6b;
    padding-bottom: 2px;
    margin-bottom: 7px;
}

/* ── Two-column layout (sidebar) ──────────────────── */
.layout {
    display: grid;
    grid-template-columns: 62% 35%;
    gap: 0 5%;
}

.main-col {}
.side-col {}

/* ── Profiel ──────────────────────────────────────── */
.profiel p {
    font-size: 10pt;
    text-align: justify;
}

/* ── Werkervaring ─────────────────────────────────── */
.job { margin-bottom: 8px; }

.job-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    flex-wrap: wrap;
}

.job-title {
    font-weight: bold;
    font-size: 10pt;
    color: #1a1a1a;
}

.job-date {
    font-size: 9pt;
    color: #555;
    white-space: nowrap;
}

.job-company {
    font-size: 9.5pt;
    color: #1a4a6b;
    font-style: italic;
    margin-bottom: 2px;
}

.job ul {
    padding-left: 14px;
    margin-top: 2px;
}

.job ul li {
    font-size: 9.5pt;
    margin-bottom: 1px;
}

/* ── Project ──────────────────────────────────────── */
.project { margin-bottom: 8px; }

.project-title {
    font-weight: bold;
    font-size: 10pt;
}

.project-tech {
    font-size: 9pt;
    color: #555;
    font-style: italic;
}

.project ul {
    padding-left: 14px;
    margin-top: 3px;
}

.project ul li {
    font-size: 9.5pt;
    margin-bottom: 1px;
}

/* ── Opleiding ────────────────────────────────────── */
.edu-item { margin-bottom: 5px; }

.edu-item .edu-degree {
    font-weight: bold;
    font-size: 9.5pt;
}

.edu-item .edu-school {
    font-size: 9pt;
    color: #444;
    font-style: italic;
}

.edu-item .edu-year {
    font-size: 9pt;
    color: #555;
}

/* ── Certificaten ─────────────────────────────────── */
.cert-item {
    font-size: 9pt;
    margin-bottom: 3px;
}

.cert-item .cert-issuer {
    font-weight: bold;
    color: #1a4a6b;
}

/* ── Vaardigheden ─────────────────────────────────── */
.skill-group { margin-bottom: 5px; }

.skill-group .skill-label {
    font-weight: bold;
    font-size: 9pt;
    color: #1a4a6b;
}

.skill-group .skill-list {
    font-size: 9pt;
    color: #333;
}

/* ── Talen ────────────────────────────────────────── */
.lang-item {
    font-size: 9.5pt;
    margin-bottom: 2px;
}

.lang-item .lang-name { font-weight: bold; }
.lang-item .lang-level { color: #555; }

/* ── Print ────────────────────────────────────────── */
@media print {
    .cv-toolbar { display: none !important; }
    body { font-size: 10.5pt; }
    .page { padding: 0 16mm 14mm 16mm; }
    a { color: #1a4a6b; }
    @page {
        size: A4;
        margin: 14mm 0 14mm 0;
    }
}
