.card-lidmaatschap {
    background-color: rgba(248, 231, 192, 0.85);
    backdrop-filter: blur(2px); /* optioneel: maakt achtergrond wazig */
}


.informatie-sections {
     position: relative;
    padding: 5rem 2rem;

    /* Basis achtergrond + bruine tint voor de hele sectie */
    background-image:
        linear-gradient(
            rgba(122, 90, 48, 0.35),
            rgba(122, 90, 48, 0.35)
        ),
        url("images/Logo Frank achtergrond meisje zwart.png");
    background-blend-mode: multiply;
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    color: #3A2A1A;
    border-radius: 12px;

     box-shadow:
        0 25px 50px rgba(0, 0, 0, 0.85),
        0 12px 30px rgba(0, 0, 0, 0.65);

    /* NOOIT wippen */
    overflow: visible;
    transform: none;
    transition: none;
}

/* Overlay boven de afbeelding */
.informatie-sections::before {
content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(248, 231, 192, 0.35);
    border-radius: 12px;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
}

/* Content boven overlay */
.informatie-sections > * {
    position: relative;
    z-index: 1;
}
.card.documenten-card {
    background-color: rgba(248, 231, 192, 0.85);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 10px 20px rgba(0,0,0,0.3); 
    backdrop-filter: blur(2px); /* optioneel: maakt achtergrond wazig */
}


.document-viewer {
    width: 100%;
    height: 400px; 
    margin: 1rem 0;
    border: 1px solid rgba(248, 231, 192, 0.85);
    border-radius: 12px;
    overflow: hidden;
    
}

.document-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
    
}

.document-list {
    margin-bottom: 1rem;
}
/* ===== DOCUMENT LINKS ===== */
.documenten-card .doc-click {
    color: #4d3c16; /* je gewenste kleur */
    text-decoration: underline;
    cursor: pointer;
    display: inline-block;
    margin-bottom: 5px;
}

.documenten-card .doc-click:hover {
    color: #a58c69; /* lichtere kleur bij hover */
}



/* ===== RESPONSIVE ===== */
@media (max-width: 800px) {
    .document-viewer {
        height: 400px; /* kleinere hoogte op tablet/mobiel */
    }

    .btn.doc-btn {
        width: 100%;       /* knoppen full-width op mobiel */
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .document-list {
        gap: 0.75rem;
    }
}

@media (max-width: 500px) {
    .document-viewer {
        height: 300px; /* kleinere mobiel */
    }
}
