/* ================================================================
   VEREIN – Der Verein
   ================================================================ */

/* ── Header ── */
.verein-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    padding: 3.5rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}
.verein-header__title {
    color: #fff;
    font-weight: 800;
    font-size: 2.4rem;
    margin-bottom: 0.25rem;
}
.verein-header__subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.05rem;
    margin-bottom: 0;
}

/* ── Facts Strip ── */
.facts-strip {
    margin-top: -1.5rem;
    position: relative;
    z-index: 10;
}
.fact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    padding: 1.25rem;
    text-align: center;
    height: 100%;
}
.fact-card__icon {
    color: var(--highlight-color);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}
.fact-card__value {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}
.fact-card__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 700;
    margin-top: 0.25rem;
}

/* ── Content ── */
.verein-content {
    padding: 2.5rem 0 3rem;
}
.verein-text {
    font-size: 1rem;
    color: var(--text-dark);
    line-height: 1.75;
}

/* ── Contact Card ── */
.contact-card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    overflow: hidden;
}
.contact-card__header {
    background: var(--primary-color);
    color: #fff;
    padding: 1rem 1.5rem;
    font-weight: 700;
    font-size: 1rem;
}
.contact-card__section {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
}
.contact-card__section:last-child {
    border-bottom: none;
}
.contact-card__section h5 {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 700;
    margin-bottom: 0.35rem;
}
.contact-card__section p,
.contact-card__section a {
    margin-bottom: 0;
    font-size: 0.95rem;
    color: var(--text-dark);
}
.contact-card__section a {
    color: var(--highlight-color);
    text-decoration: none;
    font-weight: 600;
}

/* ── Angebote ── */
.angebote-section {
    padding: 2rem 0 3rem;
    background: #fff;
}
.section-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}
.section-title i {
    color: var(--highlight-color);
    margin-right: 0.5rem;
}
.angebot-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 1.25rem;
    border: 1px solid #e9ecef;
    height: 100%;
}
.angebot-card__title {
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 0.35rem;
}
.angebot-card__text {
    font-size: 0.9rem;
    color: var(--text-light);
    margin-bottom: 0;
}

/* ── Erfolge ── */
.erfolge-section {
    padding: 2rem 0 3rem;
}
.erfolg-card {
    background: #fff;
    border-radius: 10px;
    border: 1px solid #e9ecef;
    padding: 1.25rem;
    height: 100%;
    display: flex;
    align-items: center;
    gap: 1rem;
}
.erfolg-card--highlight {
    border-left: 4px solid #f6ad55;
    background: #fffbf0;
}
.erfolg-card__year {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--highlight-color);
    min-width: 70px;
    flex-shrink: 0;
}
.erfolg-card--highlight .erfolg-card__year {
    color: #dd6b20;
}
.erfolg-card__text {
    font-size: 0.9rem;
    color: var(--text-dark);
    line-height: 1.4;
}

/* ── CTA ── */
.cta-section {
    padding: 2.5rem 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    text-align: center;
}
.cta-section h3 {
    color: #fff;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.cta-section p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1.25rem;
}

/* ── Responsive ── */
@media (max-width: 767px) {
    .verein-header__title {
        font-size: 1.8rem;
    }
    .fact-card__value {
        font-size: 1.3rem;
    }
}
