:root {
    --card: rgb(181, 88, 0);
    --accent: #b55800;
    --text: #000000;
    --headnav-height: 80px;
}

body {
    background-image: url("img/bg_team.png");
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: cover;
    margin: 0;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    color: var(--text);
    font-family: Inter, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
    padding: 40px 40px 0;
}

.headline h1{
    color: #b55800;
    text-align: center;
    font-weight: bold;
}

h1 {
    margin: 0;
    font-size: 36px;
    letter-spacing: 1px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    color: #b55800;
}


.section h2 {
    text-align: center;
    margin: 0 0 6px 0;
    font-size: 20px;
}

.hr {
    width: 60%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), transparent);
    margin: 10px auto 18px;
    border-radius: 2px;
}

.member {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 12px 8px;
}

.member + .member {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.avatar {
    width: 140px;
    height: 180px;
    flex: 0 0 140px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.avatar img {
    max-width: 100%;
    max-height: 100%;
    image-rendering: pixelated;
    border-radius: 8px;
}

.meta {
    flex: 1;
}

.name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 6px;
}

.role {
    font-size: 13px;
    color: rgba(233, 230, 247, 0.7);
}

.admins-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(240px, 1fr));
    gap: 12px;
}

.card {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.05), transparent);
    padding: 12px;
    border-radius: 10px;
}

footer {
    text-align: center;
    font-size: 12px;
    color: rgba(233, 230, 247, 0.5);
    margin-top: 10px;
}

/* Blaulix Spezialdarstellung */


.



@media (max-width: 500px) {
    .admins-grid {
        grid-template-columns: 1fr;
    }
}