/* ===============================
   CONTAINER
================================= */

.container {
    max-width: 1600px;
    /* of 95% van scherm */
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

/* ===============================
   CARDS ONDER ELKAAR
================================= */

.container>.card-rooster,
.container>.card-locaties,
.container>.card-vakanties {
    margin: 2rem 0;
    /* ruimte tussen cards */
    max-width: 1900px;
    width: 100%;
    text-align: left;
    background: rgba(229, 212, 179, 0.6);
    padding-bottom: 1rem;
}

/* Basis card styling */
.card,
.card-rooster,
.card-locaties,
.card-vakanties {
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: var(--radius);
    font-size: 1.1rem;

    /* Rustige standaard schaduw */
    box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.4),
        0 4px 10px rgba(0, 0, 0, 0.3);

    transition: box-shadow 0.25s ease;
    width: 100%;
    max-width: 1800px;

    overflow-x: auto;
    border: none;
}

/* Hover → GEEN beweging, alleen diepte */
.card:hover,
.card-rooster:hover,
.card-locaties:hover,
.card-vakanties:hover {
    box-shadow:
        0 18px 35px rgba(0, 0, 0, 0.6),
        0 8px 20px rgba(0, 0, 0, 0.45);
}

/* ===============================
   FLEX / GRID STRUCTUUR
================================= */

.grid {
    display: flex;
    flex-direction: column;
    /* blijf onder elkaar */
    gap: 2rem;
    width: 100%;
    /* neem volledige breedte van parent */
    max-width: 1600px;
    /* kies gewenste max breedte */
    margin: 0 auto;
    /* center op scherm */
}


/* ===============================
   KOPPEN
================================= */

.card h3,
.card-rooster h3,
.card-locaties h3,
.card-vakanties h3 {
    margin-bottom: 1rem;
}

/* ===============================
   TABEL
================================= */

.rooster-table {
    width: 100%;
    border-collapse: collapse;
}

.rooster-table th,
.rooster-table td {
    border: 1px solid rgba(96, 73, 26, 0.6);
    padding: 0.5rem;
    text-align: left;
}

.rooster-table th {
    background: rgba(96, 73, 26, 0.6);
    color: var(--text);
}

.rooster-table td {
    background-color: rgba(226, 214, 190, 0.6);
}

/* ===============================
   BADGES
================================= */

.badge {
    display: inline-block;
    padding: 0.3rem 0.6rem;
    border-radius: 12px;
    font-weight: bold;
    color: #3A2A1A;
    font-size: 0.87rem;
}

.badge.open {
    background-color: green;
}

.badge.closed {
    background-color: red;
}

/* ===============================
   VINKJES LIJST
================================= */

.vinkjes-lijst {
    list-style: none;
    padding-left: 0;
}

.vinkjes-lijst li::before {
    content: "✔";
    color: #3A2A1A;
    margin-right: 0.5rem;
}

.section-uniform {
    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 alleen over het meisje om deze lichter te maken */
.section-uniform::after {
    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 blijft boven overlay en achtergrond */
.section-uniform>* {
    position: relative;
    z-index: 1;
}