/* --- Variablen & Reset --- */
:root {
    --bg-dark: #0a0a0a; /* Tiefschwarz */
    --bg-card: #141414; /* Sehr dunkles Grau für Karten */
    --text-main: #f8fafc;
    --text-muted: #9ca3af;
    --accent-1: #22c55e; /* Sportliches Grün */
    --accent-2: #16a34a; /* Dunkleres Grün für Gradients */
    --glow: rgba(34, 197, 94, 0.4); /* Grünes Leuchten */
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    background-color: var(--bg-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
.container { max-width: 1250px; margin: 0 auto; padding: 0 20px; }

/* --- Globale Animationen (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* --- Gradient Text --- */
.text-gradient {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* --- Navigation (Glassmorphism) --- */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.3s ease;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo {
    font-size: 2rem;
    font-weight: 900;
    letter-spacing: 1px;
}

.logo span { color: var(--accent-1); }

.main-nav ul {
    display: flex;
    gap: 30px;
    align-items: center;
    list-style: none;
}

.main-nav a {
    font-weight: 500;
    font-size: 1.1rem;
    position: relative;
    transition: color 0.3s;
}

.main-nav a:hover { color: var(--accent-1); }

/* --- Hero Sektion mit Ken-Burns Animation --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 80px;
}

.hero-bg {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    /* Platzhalter für ein cooles Volleyball-Netz/Action Foto */
    background: url('https://images.unsplash.com/photo-1612872087720-bb876e2e67d1?q=80&w=2000&auto=format&fit=crop') center/cover;
    z-index: -2;
    animation: zoomBg 20s infinite alternate linear;
}

@keyframes zoomBg {
    0% { transform: scale(1); }
    100% { transform: scale(1.1); }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(to bottom, rgba(10,10,10, 0.7) 0%, rgba(10,10,10, 1) 100%);
    z-index: -1;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 20px;
}

.badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(34, 197, 94, 0.1);
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: var(--accent-1);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.hero h1 {
    font-size: 5.5rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: -2px;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 40px;
}

/* --- Buttons --- */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 14px 32px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.btn-glow {
    background: linear-gradient(135deg, var(--accent-1), var(--accent-2));
    color: var(--bg-dark); /* Schwarze Schrift auf grünem Button knallt */
    box-shadow: 0 0 20px var(--glow);
    border: none;
}

.btn-glow:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 30px var(--glow);
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255,255,255,0.3);
}

.btn-outline:hover {
    border-color: var(--accent-1);
    color: var(--accent-1);
    background: rgba(34, 197, 94, 0.05);
    transform: translateY(-3px);
}

/* --- Statistik Sektion --- */
.stats-section {
    padding: 60px 0;
    background: var(--bg-card);
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    gap: 20px;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 900;
    color: var(--accent-1);
}

.stat-card p {
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* --- Aktuelles / Karten Design --- */
.news-section {
    padding: 120px 20px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 { font-size: 3rem; margin-bottom: 10px; }
.section-header p { color: var(--text-muted); font-size: 1.2rem; }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.news-card {
    background: var(--bg-card);
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.05);
    transition: all 0.4s ease;
    cursor: pointer;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.6);
    border-color: rgba(34, 197, 94, 0.3);
}

.card-image {
    height: 240px;
    background-color: #222;
    transition: transform 0.6s ease;
}

/* Platzhalter - Hier ladet ihr später eure echten Bilder hoch */
.img-1 { background: url('https://images.unsplash.com/photo-1592656094267-764a45160876?q=80&w=1000&auto=format&fit=crop') center/cover; }
.img-2 { background: url('https://images.unsplash.com/photo-1574629810360-7efbb1925536?q=80&w=1000&auto=format&fit=crop') center/cover; }
.img-3 { background: url('https://images.unsplash.com/photo-1515523110800-9415d13b84a8?q=80&w=1000&auto=format&fit=crop') center/cover; }

.news-card:hover .card-image {
    transform: scale(1.05);
}

.card-content {
    padding: 30px;
    position: relative;
    background: var(--bg-card);
    z-index: 2;
}

.category {
    color: var(--accent-1);
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

.card-content h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    line-height: 1.3;
}

.card-content p {
    color: var(--text-muted);
    margin-bottom: 25px;
}

.btn-text {
    color: white;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: color 0.3s;
}

.news-card:hover .btn-text { color: var(--accent-1); }

/* --- Footer --- */
.site-footer {
    background: #050505;
    padding: 80px 20px 40px;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 40px;
}

.footer-col h4 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col a { color: var(--text-muted); transition: color 0.3s; }
.footer-col a:hover { color: var(--accent-1); }

/* --- Mobile --- */
@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .main-nav { display: none; }
    .stats-grid { grid-template-columns: 1fr; gap: 40px; }
    .hero-buttons { flex-direction: column; }
}