/**
 * File: vereinsprofil.css
 *
 * Vereinsprofil Page Styling.
 * Light-themed, modern layout with alternating feature sections.
 *
 * @package     KuK Bendorf Theme
 * @author      Oliver Ferber <admin@kuk-bendorf.de>
 * @copyright   2024-2026 KuK Bendorf e.V.
 * @license     Proprietary
 * @version     1.0.0
 */

/* Hero Section entfernt – Page Header via globales main.css */

/* ===== Introduction ===== */
.vp-intro {
    background: #FFFFFF;
}

.vp-intro-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.vp-intro-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 20px;
    position: relative;
}

.vp-intro-content h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--kuk-red);
    margin: 16px auto 0;
    border-radius: 2px;
}

.vp-lead {
    font-size: 1.125rem;
    line-height: 1.8;
    color: #4B5563;
}

/* ===== Stats Bar ===== */
.vp-stats {
    background: var(--kuk-red);
    padding: 40px 0;
}

.vp-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    text-align: center;
}

.vp-stat {
    padding: 16px;
}

.vp-stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: #FFFFFF;
    line-height: 1.2;
}

.vp-stat-label {
    display: block;
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

/* ===== Feature Sections (Kirmes, Krebbelschesfest, Karneval) ===== */
.vp-feature {
    background: #FFFFFF;
}

.vp-feature:nth-child(even) {
    background: #F9FAFB;
}

.vp-feature-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.vp-feature-reverse .vp-feature-grid {
    direction: rtl;
}

.vp-feature-reverse .vp-feature-grid>* {
    direction: ltr;
}

.vp-feature-image {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.vp-feature-image img {
    width: 100%;
    height: 320px;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vp-feature-image:hover img {
    transform: scale(1.03);
}

.vp-feature-icon {
    width: 52px;
    height: 52px;
    background: #FEF2F2;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.vp-feature-icon i {
    font-size: 1.4rem;
    color: var(--kuk-red);
}

.vp-feature-content h2 {
    font-size: 1.875rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.vp-feature-content p {
    font-size: 1rem;
    line-height: 1.75;
    color: #4B5563;
    margin-bottom: 12px;
}

.vp-feature-content p:last-child {
    margin-bottom: 0;
}

.vp-feature-content strong {
    color: #111827;
}

/* ===== CTA Section ===== */
.vp-cta {
    background: #F9FAFB;
}

.vp-cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.vp-cta-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
}

.vp-cta-content p {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #4B5563;
    margin-bottom: 28px;
}

.vp-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.vp-cta-buttons .btn-primary {
    background: var(--kuk-red);
    color: #FFFFFF;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--kuk-red);
}

.vp-cta-buttons .btn-primary:hover {
    background: var(--kuk-red-dark);
    border-color: var(--kuk-red-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(242, 15, 15, 0.3);
}

.vp-cta-buttons .btn-outline {
    background: transparent;
    color: var(--kuk-red);
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 8px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid var(--kuk-red);
}

.vp-cta-buttons .btn-outline:hover {
    background: var(--kuk-red);
    color: #FFFFFF;
    transform: translateY(-2px);
}

/* ===== Responsive Design ===== */
@media (max-width: 992px) {
    .vp-feature-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .vp-feature-reverse .vp-feature-grid {
        direction: ltr;
    }

    .vp-feature-image img {
        height: 260px;
    }

    .vp-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .vp-intro-content {
        padding: 0 25px;
    }

    .vp-intro-content h2 {
        font-size: 1.625rem;
    }

    .vp-lead {
        font-size: 1rem;
    }

    .vp-stat-number {
        font-size: 2rem;
    }

    .vp-feature-content {
        padding: 0 25px;
    }

    .vp-feature-content h2 {
        font-size: 1.5rem;
    }

    .vp-feature-image {
        margin: 0 15px;
    }

    .vp-feature-image img {
        height: 200px;
    }

    .vp-cta-content {
        padding: 0 25px;
    }

    .vp-cta-buttons {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
    }

    .vp-cta-buttons .btn-primary,
    .vp-cta-buttons .btn-outline {
        width: auto;
        flex: 0 1 auto;
        min-width: 0;
        padding: 12px 24px;
        text-align: center;
    }
}

/* ===== Dark Mode Overrides ===== */
html[data-theme="dark"] .vp-intro {
    background: transparent;
}
html[data-theme="dark"] .vp-intro-content h2 {
    color: #F3F4F6;
}
html[data-theme="dark"] .vp-lead {
    color: #9CA3AF;
}
html[data-theme="dark"] .vp-feature {
    background: rgba(30, 41, 59, 0.4);
}
html[data-theme="dark"] .vp-feature:nth-child(even) {
    background: transparent;
}
html[data-theme="dark"] .vp-feature-content h2 {
    color: #F3F4F6;
}
html[data-theme="dark"] .vp-feature-content p {
    color: #9CA3AF;
}
html[data-theme="dark"] .vp-feature-content strong {
    color: #E5E7EB;
}
html[data-theme="dark"] .vp-feature-icon {
    background: rgba(220, 38, 38, 0.15);
}
html[data-theme="dark"] .vp-cta {
    background: rgba(30, 41, 59, 0.6);
}
html[data-theme="dark"] .vp-cta-content h2 {
    color: #F3F4F6;
}
html[data-theme="dark"] .vp-cta-content p {
    color: #9CA3AF;
}
html[data-theme="dark"] .vp-feature-image {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}