.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;
    border-radius: 12px;
    z-index: 0;
    pointer-events: none;
    mix-blend-mode: soft-light;
}


/* Content boven overlay */
.informatie-sections > * {
    position: relative;
    z-index: 1;
}

/* Container centreren */
.informatie-sections .container {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

/* Titel */
.informatie-sections h1 {
    font-size: 1.5rem;
    margin-bottom: 3rem;
}

/* ===============================
   GRID
================================= */

.informatie-sections .grid {
    display: grid;
    grid-template-columns: 1fr; /* altijd 1 kolom */
    gap: 3rem;
    max-width: 1400px; /* optioneel: mooier gecentreerd */
    margin: 0 auto;
}


/* ===============================
   CARDS
================================= */

.informatie-sections .card {
    background: rgba(248, 231, 192, 0.7);
    backdrop-filter: blur(6px);

    padding: 3rem;
    border-radius: 16px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);

    text-align: left;
    font-size: 1.0rem;
    line-height: 1.7;
}

/* Card titels */
.informatie-sections .card h3 {
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

/* Vinkjes */
.informatie-sections .vinkje {
    color: #d4af37;
    font-weight: bold;
    margin-right: 0.5rem;
}

/* Button styling */
.informatie-sections .btn {
     display: inline-block;
    background: rgba(165, 145, 105, 0.9);
    color: white;
    padding: 0.75rem 1.4rem;
    border-radius: 12px;
    border: 1px solid rgb(218, 195, 153);
    text-decoration: none;
    font-size: 1rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    transition: transform 0.2s ease, box-shadow 0.2s ease;

}

.informatie-sections .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.5);
    color:white;
}

/* ===============================
   DOCUMENT VIEWER
================================= */

.document-viewer {
    margin-top: 2rem;
    height: 700px;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
}

.document-viewer iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Document links */
.document-list {
    margin-top: 2rem;
}

.document-list a {
    display: block;
    margin-bottom: 0.8rem;
    color: #3A2A1A;
    text-decoration: none;
    font-weight: 500;
}

.document-list a:hover {
    text-decoration: underline;
}

/* ===============================
   RESPONSIVE
================================= */

@media (max-width: 900px) {
    .document-viewer {
        height: 400px; /* kleinere hoogte op tablet/mobiel */
    }

    .btn.doc-btn {
        width: 70%;       /* knoppen full-width op mobiel */
        text-align: center;
        padding: 0.75rem 1rem;
        font-size: 0.9rem;
    }

    .document-list {
        gap: 0.75rem;
    }
}

@media (max-width: 600px) {
    .document-viewer {
        height: 300px; /* kleinere mobiel */
        width: 90%;
    }
}

@media (max-width: 768px) {

    .informatie-sections {
        padding: 2rem 0.25rem; /* zelfde als .section-uniform */
    }

    .informatie-sections .container {
        padding: 0 0.25rem;    /* zelfde als homepage container */
    }

    .informatie-sections .card {
        width: 95%;           /* vul container */
        margin: 0 auto;        /* center card */
        padding: 1.5rem;       /* kleiner dan desktop */
        border-radius: 12px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.25);
    }
    .informatie-sections {
    padding: 2rem 0.25rem;
    background-size: cover;
    background-position: 70% top;       /* ← meisje links uitlijnen */
    background-attachment: local;
    background-repeat: no-repeat;
 
}
}

