/* =================================
   INFORMATIE PAGINA — huisstijl (HOME/OVER)
================================= */
.informatie-sections {
    padding: 6rem 0;
    background-color: var(--bg-dark);
    background-image: radial-gradient(circle at top, rgba(29, 45, 90, 0.45) 0%, transparent 70%);
    color: var(--text);
}

/* Alles in deze sectie rekent breedte incl. padding/rand -> voorkomt overloop */
.informatie-sections,
.informatie-sections * { box-sizing: border-box; }

.informatie-sections .container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.informatie-sections h1 {
    font-family: 'Cinzel', serif;
    font-size: 2.2rem;
    color: var(--text);
    margin-bottom: 3rem;
    letter-spacing: 0.04em;
}

/* =================================
   GRID
================================= */
.informatie-sections .grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

/* =================================
   KAARTEN — vlak, gouden accent, geen blur
================================= */
.informatie-sections .card {
    width: 100%;
    background: rgba(248, 231, 192, 0.03);
    border: 1px solid var(--card-border);
    border-left: 3px solid var(--primary);
    border-radius: 4px;
    padding: 2.5rem;
    box-shadow: var(--shadow);
    text-align: left;
    color: var(--text-muted);
    line-height: 1.8;
    overflow-wrap: break-word;
    word-break: break-word;
}

.card-lead {
    font-size: 1rem;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.info-subhead {
    font-family: 'Cinzel', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
    letter-spacing: 0.04em;
    margin: 1.6rem 0 0.8rem;
}

/* Check-lijst */
.check-list {
    list-style: none;
    margin: 0 0 0.5rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.92rem;
    color: var(--text-muted);
    min-width: 0;
}

.check-list li::before {
    content: '\2714';
    color: var(--primary);
    flex-shrink: 0;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* =================================
   DOCUMENTEN — links i.p.v. viewer
================================= */
.documenten-card h3 {
    font-family: 'Cinzel', serif;
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.6rem;
    letter-spacing: 0.03em;
}

.documenten-card p {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
}

.document-list {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.document-list a.doc-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    min-width: 0;
    padding: 0.85rem 1rem;
    background: rgba(212, 175, 55, 0.06);
    border: 1px solid var(--primary-dim);
    border-radius: var(--radius-sm);
    color: var(--text);
    text-decoration: none;
    font-size: 0.92rem;
    overflow-wrap: anywhere;
    transition: background 0.2s, transform 0.2s;
}

.document-list a.doc-link::before { content: '\1F4C4'; font-size: 1rem; flex-shrink: 0; }
.document-list a.doc-link::after  { content: '\2197'; margin-left: auto; color: var(--primary); flex-shrink: 0; }

.document-list a.doc-link:hover {
    background: rgba(212, 175, 55, 0.12);
    transform: translateX(2px);
}

/* =================================
   KNOP — huisstijl
================================= */
.informatie-sections .btn {
    display: inline-block;
    max-width: 100%;
    background: var(--primary);
    color: #0a1428;
    padding: 0.85rem 2rem;
    border-radius: 4px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    border: 1px solid var(--primary);
    text-decoration: none;
    margin-top: 0.75rem;
    transition: all 0.2s ease;
}

.informatie-sections .btn:hover {
    background: #e5bd3b;
    border-color: #e5bd3b;
    color: #0a1428;
}

/* =================================
   MOBIEL — tablet en kleiner
================================= */
@media (max-width: 768px) {
    .informatie-sections {
        padding: 4rem 1rem;     /* sectie krijgt zelf horizontale ruimte */
        overflow-x: hidden;     /* vangnet tegen zijwaarts scrollen */
    }

    .informatie-sections .container {
        max-width: 100%;
        padding: 0;             /* sectie regelt de marges al */
    }

    .informatie-sections h1 {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }

    .informatie-sections .grid { gap: 1.25rem; }

    .informatie-sections .card {
        margin: 0;
        padding: 1.5rem 1.25rem;
    }
}

/* =================================
   MOBIEL — kleine telefoons
================================= */
@media (max-width: 480px) {
    .informatie-sections { padding: 3rem 0.75rem; }
    .informatie-sections h1 { font-size: 1.6rem; }
    .informatie-sections .card { padding: 1.25rem 1rem; }
}
