/* =========================================
   ACHTERGROND FOTO + OVERLAY
   ========================================= */

body {
    background: url("../afbeelding/stats.JPG") no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.background-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: -1;
}

/* =========================================
   TITEL
   ========================================= */

.page-title {
    text-align: center;
    margin: 30px auto 20px;
}

.page-title h1 {
    color: #fff;
    font-size: 2rem;
    font-weight: 700;
}

/* =========================================
   TRAININGEN – VR1 PREMIUM STYLE
   ========================================= */

.programma-container {
    max-width: 900px;
    margin: 20px auto 40px;
    padding: 10px;
}

/* ITEM */
.vr1-item {
    background: rgba(255,255,255,0.18);
    border-radius: 14px;
    padding: 18px 20px;
    margin-bottom: 16px;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.25);
    box-shadow: 0 8px 24px rgba(0,0,0,0.25);
    color: #fff;
    position: relative;
    transition: 0.25s ease;
}

.vr1-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.35);
}

/* BADGE */
.vr1-badge {
    display: inline-block;
    background: #0033aa;
    color: #fff;
    padding: 4px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin-left: 10px;
    font-weight: 600;
}

/* TIJD */
.vr1-meta {
    margin-top: 8px;
    font-size: 1rem;
    color: #e6e6e6;
    font-weight: 500;
}

/* AANWEZIGHEID */
.vr1-aanwezig {
    margin-top: 10px;
    font-size: 0.95rem;
    font-weight: 700;
    color: #ffeb3b;
}

/* =========================================
   FOOTER
   ========================================= */

.vr1-footer {
    background: #0033aa;
    color: #fff;
    text-align: center;
    padding: 25px;
    margin-top: 40px;
    font-size: 0.9rem;
}

.badge {
    display: inline-block;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.8rem;
    margin: 3px;
    font-weight: bold;
}

.badge-red {
    background: #c62828;
    color: #fff;
}

.badge-blue {
    background: #0055ff;
    color: #fff;
}