/* ================================================================
   trainingshalle.css – Styles fuer DonauHalle & Trainingshalle
   ================================================================ */

/* Alert-Box */
.th-alert {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    background: #fff8f0;
    border: 1px solid rgba(241,91,0,.3);
    border-left: 4px solid #F15B00;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 2px 12px rgba(241,91,0,.08);
}

.th-alert-icon {
    font-size: 1.6rem;
    color: #F15B00;
    flex-shrink: 0;
    margin-top: 2px;
}

.th-alert strong {
    display: block;
    font-size: 1rem;
    color: #1a1a1a;
    margin-bottom: 6px;
}

.th-alert p {
    font-size: .9rem;
    color: #444;
    margin: 0;
    line-height: 1.65;
}

/* Info-Karten */
.th-info-card {
    background: #fff;
    border-radius: 14px;
    padding: 28px 24px;
    box-shadow: 0 2px 16px rgba(0,0,0,.07);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    transition: transform .22s, box-shadow .22s;
}

.th-info-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(241,91,0,.12);
}

.th-info-card-highlight {
    border-top: 3px solid #F15B00;
    background: linear-gradient(135deg, #fff9f6, #fff);
}

.th-info-icon {
    font-size: 2rem;
    color: #F15B00;
    margin-bottom: 12px;
}

.th-info-title {
    font-size: 1rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
}

.th-info-text {
    font-size: .9rem;
    color: #444;
    line-height: 1.7;
    margin-bottom: 18px;
    flex: 1;
}

.th-map-btn {
    display: inline-flex;
    align-items: center;
    background: #F15B00;
    color: #fff !important;
    font-size: .82rem;
    font-weight: 700;
    padding: 9px 18px;
    border-radius: 50px;
    text-decoration: none !important;
    transition: background .2s, transform .2s, box-shadow .2s;
    box-shadow: 0 3px 12px rgba(241,91,0,.3);
    margin-top: auto;
}

.th-map-btn:hover {
    background: #d94e00;
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(241,91,0,.4);
    color: #fff !important;
}

/* Bild-Karten */
.th-img-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    border: 1px solid #f0f0f0;
}

.th-img-label {
    background: #1a1a1a;
    color: #fff;
    font-size: .78rem;
    font-weight: 700;
    letter-spacing: .5px;
    text-transform: uppercase;
    padding: 9px 18px;
}

.th-img-label .bi {
    color: #F15B00;
}

.th-img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    transition: transform .3s;
}

.th-img-card:hover .th-img {
    transform: scale(1.02);
}

.th-img-caption {
    padding: 10px 16px;
    font-size: .8rem;
    color: #777;
    border-top: 1px solid #f0f0f0;
    background: #fafafa;
}

/* Google Maps Embed */
.dh-map-embed {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.dh-map-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* Vereins-Karten */
.dh-club-card {
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0,0,0,.08);
    border: 1px solid #f0f0f0;
    transition: transform .22s, box-shadow .22s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dh-club-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,.12);
}

.dh-club-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px 20px;
    min-height: 140px;
}

.dh-club-logo {
    max-height: 90px;
    max-width: 140px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,.25));
}

.dh-club-body {
    padding: 20px 20px 22px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.dh-club-name {
    font-size: 1.05rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.dh-club-desc {
    font-size: .88rem;
    color: #555;
    line-height: 1.65;
    flex: 1;
    margin-bottom: 16px;
}

.dh-club-link {
    display: inline-flex;
    align-items: center;
    font-size: .82rem;
    font-weight: 700;
    color: #F15B00 !important;
    text-decoration: none !important;
    transition: opacity .2s;
}

.dh-club-link:hover {
    opacity: .75;
}

/* Responsive */
@media (max-width: 576px) {
    .th-alert {
        flex-direction: column;
        gap: 10px;
    }

    .th-info-card {
        padding: 22px 18px;
    }
}
