/* =========================================
   TEAM PAGINA WRAPPER
   ========================================= */

.team-page {
    background: url("../afbeelding/stats.JPG") no-repeat center center fixed;
    background-size: cover;
    font-family: Arial, sans-serif;
    min-height: 100vh;
    position: relative;
}

.team-page .background-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    backdrop-filter: blur(2px);
    z-index: -1;
}

/* =========================================
   TEAM GRID
   ========================================= */

.team-grid {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
    padding: 10px;
}

/* =========================================
   PASPOORT KAART
   ========================================= */

.team-card {
    background: rgba(255,255,255,0.18);
    border-radius: 16px;
    padding: 20px;
    color: #fff;
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 28px rgba(0,0,0,0.35);
    transition: 0.25s ease;
	text-align: center; /* <-- alles centreren */
	position: relative;
}

.team-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 34px rgba(0,0,0,0.45);
}

/* =========================================
   FOTO
   ========================================= */

.team-photo {
    width: 100%;
    height: 260px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 14px;
}

/* =========================================
   TEKST
   ========================================= */

.team-name {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 6px;
}

.team-number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #00aaff;
    margin-bottom: 6px;
}

.team-positions {
    font-size: 1rem;
    opacity: 0.9;
    margin-bottom: 12px;
}

.team-info {
    font-size: 0.95rem;
    line-height: 1.4;
    opacity: 0.95;
}

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

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

/* =========================================
   HEADER / TOPBAR VR1-STIJL
   ========================================= */

/* Titel wit en gecentreerd */
.vr1-title h1 {
    color: #ffffff !important;
    text-align: center;
    font-weight: 800;
    text-shadow: 0 0 10px rgba(0,0,0,0.6);
}

/* =========================================
   AANVOERDER BADGE
   ========================================= */

.captain-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(255, 0, 0, 0.85);
    color: #fff;
    padding: 6px 10px;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 0 10px rgba(255,0,0,0.6);
}

.captain-badge img {
    width: 20px;
    height: 20px;
}
