/* =================================================
BUCHSTABEN NAVIGATION
================================================= */
.abc-nav{
    display:flex;
    flex-wrap:wrap;
    justify-content:center;
    gap:8px;
    margin:20px 0;
}

.abc-button{
    display:inline-block;
    padding:8px 12px;
    border-radius:4px;
    font-weight:bold;
    font-size:14px;
}

/* aktive Buchstaben */
.abc-button.active{
    background:#083b7f;
    color:#fff;
    text-decoration:none;
}

.abc-button.active:hover{
    background:#0a4fa8;
}

/* Buchstaben ohne Einträge */
.abc-button.inactive{
    background:#ddd;
    color:#888;
}


/* =================================================
VERBÄNDE GRID
================================================= */
.verbaende-grid{
max-width:1300px;
margin:40px auto;
padding:0;
width:100%;

display:grid;
grid-template-columns:repeat(2, minmax(0,1fr));
gap:20px;
align-items:stretch;
}

/* Mobile */
@media (max-width:700px){
.verbaende-grid{
grid-template-columns:1fr;
}
}

/* =================================================
CARD
================================================= */
.verband-card{
display:block;
width:100%;
padding:20px;
box-sizing:border-box;
border:1px solid #eee;
border-radius:12px;
background:#fff;

text-decoration:none;
color:#000;

position:relative;
overflow:hidden;

transition:transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

/* =================================================
HOVER
================================================= */
.verband-card:hover{
transform:translateY(-6px);
box-shadow:0 12px 28px rgba(0,0,0,0.12);
background:#f5faff;
border-color:#cfe6ff;
}

/* Glow */
.verband-card::after{
content:"";
position:absolute;
inset:0;
background:linear-gradient(120deg, rgba(200,230,255,0.18), rgba(230,245,255,0.18));
opacity:0;
transition:opacity 0.3s ease;
pointer-events:none;
}

.verband-card:hover::after{
opacity:1;
}

/* Inhalt */
.verband-card > *{
position:relative;
z-index:1;
}

/* Text */
.verband-name{
font-weight:600;
font-size:16px;
margin-bottom:8px;
}

.verband-link{
font-size:14px;
color:#444;
}

.verband-card:hover .verband-link{
color:#083b7f;
}


/* =================================================
SCROLL BUTTON
================================================= */

#scrollTopBtn{
    position:fixed;
    bottom:30px;
    right:30px;
    width:55px;
    height:55px;
    border-radius:50%;
    background:#083b7f;
    color:#fff;
    font-size:24px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    box-shadow:0 4px 10px rgba(0,0,0,0.15);
    opacity:0;
    visibility:hidden;
    transition:.3s;
    z-index:999;
}

#scrollTopBtn:hover{
    background:#e0e0e0;
    transform:translateY(-3px);
}