/* ================================================================
   JUGEND
   ================================================================ */

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

/* ── Ausschuss ── */
.ausschuss-section {
    padding: 2.5rem 0 2rem;
}
.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;
}
.person-card {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    padding: 1.25rem;
    text-align: center;
    height: 100%;
    border: 1px solid #e9ecef;
}
.person-card__avatar {
    width: 56px;
    height: 56px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: var(--highlight-color);
    font-size: 1.2rem;
}
.person-card__name {
    font-weight: 700;
    font-size: 0.95rem;
    margin-bottom: 0.15rem;
}
.person-card__role {
    font-size: 0.8rem;
    color: var(--text-light);
}

/* ── Teams ── */
.teams-section {
    padding: 2rem 0 3rem;
    background: #fff;
}
.team-card {
    background: var(--bg-light);
    border-radius: 12px;
    padding: 1.5rem;
    border: 1px solid #e9ecef;
    height: 100%;
}
.team-card__badge {
    display: inline-block;
    background: var(--highlight-color);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
}
.team-card__name {
    font-weight: 700;
    font-size: 1.05rem;
    margin-bottom: 0.35rem;
}
.team-card__meta {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 0;
}
.team-card__meta i {
    width: 16px;
    text-align: center;
    color: var(--highlight-color);
}

/* ── Galerie ── */
.galerie-section {
    padding: 2rem 0 3rem;
}
.galerie-item {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    border: 1px solid #e9ecef;
}
.galerie-item__img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    display: block;
}
.galerie-item__img--placeholder {
    background: #d0d5dd;
}
.galerie-item__title {
    padding: 0.75rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
}

/* ── Contact ── */
.contact-section {
    padding: 2rem 0 3rem;
}
.contact-box {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid #e9ecef;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}
.contact-box__icon {
    width: 48px;
    height: 48px;
    background: var(--highlight-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-box__text {
    flex: 1;
}
.contact-box__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 700;
}
.contact-box__value {
    font-weight: 700;
    font-size: 1rem;
}
.contact-box__value a {
    color: var(--highlight-color);
    text-decoration: none;
}

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