/* Finale Veredelung Armin Sandach */

/* dezentes Federball-Wasserzeichen im blauen Banner */
.header {
    overflow: hidden !important;
}

.header::after {
    content: "🏸" !important;
    display: block !important;
    position: absolute !important;
    right: 46px !important;
    top: 22px !important;
    font-size: 112px !important;
    opacity: .10 !important;
    transform: rotate(-18deg) !important;
    pointer-events: none !important;
    background: none !important;
}

/* Navigation mit Symbolen wirkt luftiger */
.leftnav a {
    font-size: 15px;
}

/* persönlicher Begrüßungsbereich */
.armin-welcome {
    display: grid;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 26px;
    align-items: center;
    background: linear-gradient(135deg, #ffffff, #eef7ff);
    border: 1px solid rgba(107,182,255,.30);
    border-radius: 26px;
    padding: 28px;
    box-shadow: 0 14px 34px rgba(47,94,158,.12);
    margin-bottom: 26px;
}

.armin-photo {
    width: 170px;
    height: 170px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 12px 28px rgba(47,94,158,.24);
}

.armin-welcome h2 {
    margin: 0 0 10px;
    color: #2f5e9e;
    font-size: 30px;
    border: 0 !important;
    padding: 0 !important;
}

.armin-welcome h3 {
    margin: 0 0 14px;
    color: #56708d;
    font-size: 20px;
}

.armin-welcome p {
    margin: 0;
    font-size: 17px;
    line-height: 1.65;
    color: #334155;
}

@media(max-width: 760px) {
    .armin-welcome {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .armin-photo {
        margin: 0 auto;
    }

    .header::after {
        font-size: 70px !important;
        right: 20px !important;
        top: 18px !important;
    }
}
