/* =============================================
   DEG Eiskunstlauf e. V. – Modern Website Styles
   ============================================= */

/* ---- Reset & Base ---- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --ice-50: #f0f9ff;
    --ice-100: #e0f2fe;
    --ice-200: #bae6fd;
    --ice-300: #7dd3fc;
    --ice-400: #38bdf8;
    --ice-500: #0ea5e9;
    --ice-600: #0284c7;
    --ice-700: #0369a1;
    --ice-800: #075985;
    --ice-900: #0c4a6e;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --gold: #d4a017;
    --gold-light: #f5e6b8;
    --rose: #e11d48;
    --rose-light: #ffe4e6;
    --green: #059669;

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 6px -1px rgba(0,0,0,0.07), 0 2px 4px -2px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 15px -3px rgba(0,0,0,0.08), 0 4px 6px -4px rgba(0,0,0,0.04);
    --shadow-xl: 0 20px 25px -5px rgba(0,0,0,0.08), 0 8px 10px -6px rgba(0,0,0,0.04);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
}

body {
    padding-top: 112px; /* navbar 72px + ticker 40px */
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--slate-800);
    line-height: 1.6;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    margin: 0;
}

a {
    color: var(--ice-600);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--ice-800);
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---- NAVBAR ---- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-md);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--slate-900);
    text-decoration: none;
}

.nav-logo-img {
    height: 44px;
    width: auto;
}

.footer-logo-img {
    height: 48px;
    width: auto;
}

.logo-icon {
    font-size: 1.5rem;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 4px;
}

.nav-link {
    padding: 8px 14px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--slate-600);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    text-decoration: none;
}

.nav-link:hover,
.nav-link.active {
    color: var(--ice-700);
    background: var(--ice-50);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.nav-toggle span {
    width: 24px;
    height: 2px;
    background: var(--slate-700);
    border-radius: 2px;
    transition: all var(--transition);
}

/* ---- HERO ---- */
.hero {
    position: relative;
    min-height: calc(100vh - 112px);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, #041e35 0%, #062a4a 25%, #0c4a6e 50%, #0369a1 80%, #0284c7 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 20% 80%, rgba(255,255,255,0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255,255,255,0.15) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(255,255,255,0.05) 0%, transparent 70%);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 0 24px;
    max-width: 800px;
}

.hero-logo {
    width: 140px;
    height: auto;
    margin: 0 auto 24px;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,0.3));
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
    text-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.3rem);
    font-weight: 500;
    color: rgba(255,255,255,0.9);
    margin-bottom: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-tagline {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-xl);
    transition: all var(--transition);
    cursor: pointer;
    text-decoration: none;
    border: none;
}

.btn-primary {
    background: #fff;
    color: var(--ice-700);
    box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    color: var(--ice-800);
}

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

.btn-outline:hover {
    background: rgba(255,255,255,0.15);
    border-color: #fff;
    color: #fff;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: rgba(255,255,255,0.6);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    z-index: 2;
}

.scroll-arrow {
    width: 20px;
    height: 20px;
    border-right: 2px solid rgba(255,255,255,0.5);
    border-bottom: 2px solid rgba(255,255,255,0.5);
    transform: rotate(45deg);
    margin: 8px auto 0;
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: rotate(45deg) translateY(0); }
    40% { transform: rotate(45deg) translateY(6px); }
    60% { transform: rotate(45deg) translateY(3px); }
}

/* ---- SECTIONS ---- */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--slate-50);
}

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

.section-label {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ice-600);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 12px;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--slate-500);
    max-width: 600px;
    margin: 0 auto;
}

.subsection-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 32px;
    text-align: center;
}

/* ---- VEREIN ---- */
.verein-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 80px;
}

.verein-text p {
    margin-bottom: 16px;
    color: var(--slate-600);
    font-size: 1.05rem;
    line-height: 1.75;
}

.verein-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.highlight-card {
    background: linear-gradient(135deg, var(--ice-50), var(--ice-100));
    border: 1px solid var(--ice-200);
    border-radius: var(--radius-lg);
    padding: 32px 24px;
    text-align: center;
    transition: transform var(--transition);
}

.highlight-card:hover {
    transform: translateY(-4px);
}

.highlight-year {
    display: block;
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--ice-700);
    line-height: 1;
    margin-bottom: 8px;
}

.highlight-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.vorstand-section {
    padding-top: 40px;
    border-top: 1px solid var(--slate-200);
}

.vorstand-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 24px;
}

.vorstand-card {
    text-align: center;
    padding: 32px 16px;
    border-radius: var(--radius-md);
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    transition: all var(--transition);
}

.vorstand-card:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.vorstand-icon {
    font-size: 2.5rem;
    margin-bottom: 12px;
}

.vorstand-card h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.vorstand-card p {
    font-size: 0.8rem;
    color: var(--slate-500);
}

/* ---- ABTEILUNGEN ---- */
.abteilungen-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.abt-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.abt-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--ice-400), var(--ice-600));
    opacity: 0;
    transition: opacity var(--transition);
}

.abt-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.abt-card:hover::before {
    opacity: 1;
}

.abt-icon {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.abt-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 8px;
}

.abt-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 100px;
    background: var(--ice-100);
    color: var(--ice-700);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-gold {
    background: var(--gold-light);
    color: #92640d;
}

.badge-rose {
    background: var(--rose-light);
    color: var(--rose);
}

.badge-blue {
    background: var(--ice-100);
    color: var(--ice-700);
}

.abt-card p {
    color: var(--slate-500);
    line-height: 1.7;
}

/* ---- TRAINERTEAM ---- */
.trainer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-bottom: 40px;
}

.trainer-card {
    text-align: center;
    padding: 40px 24px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
}

.trainer-card:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.trainer-avatar {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--ice-400), var(--ice-600));
    color: #fff;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.trainer-card h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 6px;
}

.trainer-qual {
    display: block;
    font-size: 0.85rem;
    color: var(--ice-600);
    font-weight: 500;
    margin-bottom: 10px;
}

.trainer-contact {
    display: block;
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-top: 4px;
}

.helfer-note {
    text-align: center;
    padding: 24px 32px;
    background: var(--ice-50);
    border: 1px solid var(--ice-200);
    border-radius: var(--radius-md);
    color: var(--slate-600);
}

/* ---- TRAININGSZEITEN ---- */
.hinweis-box {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 28px;
    border-radius: var(--radius-md);
    margin-bottom: 40px;
}

.hinweis-warning {
    background: #fef3c7;
    border: 1px solid #fcd34d;
}

.hinweis-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.hinweis-box p {
    color: #92400e;
    font-size: 0.95rem;
}

.trainingszeiten-table-wrap {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
    background: #fff;
}

.trainingszeiten-table {
    width: 100%;
    border-collapse: collapse;
}

.trainingszeiten-table th {
    background: var(--slate-800);
    color: #fff;
    padding: 16px 24px;
    text-align: left;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.trainingszeiten-table td {
    padding: 16px 24px;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.95rem;
}

.trainingszeiten-table tbody tr:hover {
    background: var(--ice-50);
}

.trainingszeiten-table tbody tr:last-child td {
    border-bottom: none;
}

.gruppe-badge {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    letter-spacing: 0.03em;
}

.badge-ab { background: #dbeafe; color: #1e40af; }
.badge-l { background: #fef3c7; color: #92400e; }
.badge-sys { background: var(--rose-light); color: var(--rose); }
.badge-erw { background: #d1fae5; color: #065f46; }

.table-note {
    margin-top: 20px;
    font-size: 0.9rem;
    color: var(--slate-500);
    text-align: center;
}

/* ---- AKTUELLES ---- */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.news-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: all var(--transition);
}

.news-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}

.news-featured {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--ice-700), var(--ice-900));
    color: #fff;
    border: none;
}

.news-featured .news-date { color: var(--ice-200); }
.news-featured h3 { color: #fff; }
.news-featured p { color: rgba(255,255,255,0.85); }
.news-featured .news-tag { background: rgba(255,255,255,0.2); color: #fff; }

.news-date {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--slate-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 8px;
    display: block;
}

.news-card h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 12px;
}

.news-card p {
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 16px;
}

.news-tag {
    display: inline-block;
    padding: 4px 12px;
    font-size: 0.7rem;
    font-weight: 600;
    border-radius: 100px;
    background: var(--ice-100);
    color: var(--ice-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ---- TERMINE ---- */
.termine-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.termin-card {
    display: flex;
    align-items: center;
    gap: 28px;
    padding: 28px 32px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.termin-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateX(4px);
}

.termin-date {
    flex-shrink: 0;
    text-align: center;
    min-width: 100px;
}

.termin-month {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--ice-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.termin-day {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-800);
}

.termin-year {
    display: block;
    font-size: 0.8rem;
    color: var(--slate-400);
}

.termin-info h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.termin-info p {
    font-size: 0.9rem;
    color: var(--slate-500);
    margin-bottom: 8px;
}

.termin-badge {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.7rem;
    font-weight: 700;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-international { background: #ede9fe; color: #5b21b6; }
.badge-regional { background: #d1fae5; color: #065f46; }

.termine-note {
    font-size: 0.95rem;
    color: var(--slate-500);
    text-align: center;
    padding: 20px;
    background: #fff;
    border-radius: var(--radius-md);
    border: 1px solid var(--slate-200);
}

/* ---- ANMELDUNG ---- */
.anmeldung-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-top: 40px;
}

.step {
    text-align: center;
    padding: 40px 28px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    position: relative;
}

.step-number {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--ice-500), var(--ice-700));
    color: #fff;
    font-size: 1.5rem;
    font-weight: 800;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.step h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 12px;
}

.step p {
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}

/* ---- FAQ ---- */
.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 60px;
}

.faq-category h3 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--ice-200);
}

.faq-item {
    margin-bottom: 8px;
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--slate-700);
    text-align: left;
    transition: all var(--transition);
    font-family: inherit;
}

.faq-question:hover {
    background: var(--ice-50);
    border-color: var(--ice-300);
}

.faq-toggle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--ice-500);
    flex-shrink: 0;
    margin-left: 12px;
    transition: transform var(--transition);
}

.faq-item.open .faq-toggle {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.faq-item.open .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 16px 20px;
    font-size: 0.9rem;
    color: var(--slate-500);
    line-height: 1.7;
}

.links-section {
    padding-top: 40px;
    border-top: 1px solid var(--slate-300);
}

.links-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.link-card {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--slate-600);
    text-align: center;
    transition: all var(--transition);
    text-decoration: none;
}

.link-card:hover {
    border-color: var(--ice-400);
    color: var(--ice-700);
    box-shadow: var(--shadow-md);
}

/* ---- DOWNLOADS ---- */
.downloads-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.download-card {
    padding: 32px 24px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
    text-align: center;
    transition: all var(--transition);
    cursor: pointer;
}

.download-card:hover {
    background: #fff;
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--ice-300);
}

.download-icon {
    font-size: 2rem;
    margin-bottom: 12px;
}

.download-card h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 6px;
}

.download-card p {
    font-size: 0.85rem;
    color: var(--slate-500);
}

/* ---- KONTAKT ---- */
.kontakt-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: start;
}

.kontakt-item {
    display: flex;
    gap: 16px;
    margin-bottom: 28px;
}

.kontakt-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.kontakt-item h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.kontakt-item p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.6;
}

.kontakt-item a {
    color: var(--ice-600);
}

/* ---- IMPRESSUM ---- */
.impressum-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
}

.impressum-block h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 16px;
}

.impressum-block p {
    font-size: 0.95rem;
    color: var(--slate-500);
    line-height: 1.7;
    margin-bottom: 12px;
}

/* ---- FOOTER ---- */
.footer {
    background: var(--slate-900);
    color: var(--slate-400);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-brand .logo-icon {
    color: var(--ice-400);
}

.footer-brand .logo-text {
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-brand a {
    color: var(--ice-400);
}

.footer-links h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.footer-links ul {
    list-style: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--slate-400);
    transition: color var(--transition);
}

.footer-links a:hover {
    color: var(--ice-400);
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
}

/* ---- NAV MEMBER LINK ---- */
.nav-link-member {
    background: linear-gradient(135deg, var(--ice-500), var(--ice-700));
    color: #fff !important;
    border-radius: var(--radius-xl);
    padding: 8px 18px !important;
}

.nav-link-member:hover {
    background: linear-gradient(135deg, var(--ice-600), var(--ice-800));
}

/* ---- ABTEILUNGEN LOGO ---- */
.abt-logo {
    width: 48px;
    height: auto;
    opacity: 0.6;
}

.abt-card-wide {
    grid-column: 1 / -1;
}

.badge-eistanz-badge {
    background: #ede9fe;
    color: #5b21b6;
}

.badge-et {
    background: #ede9fe;
    color: #5b21b6;
}

.erfolge-cta {
    text-align: center;
    margin-top: 48px;
}

.btn-dark {
    background: var(--slate-800);
    color: #fff;
}

.btn-dark:hover {
    background: var(--slate-900);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: #fff;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.85rem;
}

/* ---- SPORTARTEN ---- */
.sportarten-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
}

.sportart-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.sportart-reverse {
    direction: rtl;
}

.sportart-reverse > * {
    direction: ltr;
}

.sportart-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 100px;
    background: var(--ice-100);
    color: var(--ice-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.sportart-badge.badge-eistanz {
    background: #ede9fe;
    color: #5b21b6;
}

.sportart-badge.badge-sys {
    background: var(--rose-light);
    color: var(--rose);
}

.sportart-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 16px;
}

.sportart-content p {
    color: var(--slate-600);
    line-height: 1.75;
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.sportart-legenden {
    margin-top: 24px;
    padding: 24px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.sportart-legenden h4 {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--ice-700);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.sportart-legenden ul {
    list-style: none;
}

.sportart-legenden li {
    padding: 8px 0;
    border-bottom: 1px solid var(--slate-200);
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.sportart-legenden li:last-child {
    border-bottom: none;
}

.sportart-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.sportart-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.sportart-block:hover .sportart-image img {
    transform: scale(1.03);
}

/* ---- BILDERGALERIE ---- */
.galerie-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.galerie-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.galerie-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.galerie-item:hover img {
    transform: scale(1.05);
}

.galerie-wide {
    grid-column: span 2;
}

.galerie-wide img {
    height: 280px;
}

.galerie-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.7));
    color: #fff;
    font-size: 0.8rem;
    font-weight: 500;
}

/* ---- MITGLIEDERBEREICH ---- */
.member-logo {
    width: 80px;
    height: auto;
    margin: 0 auto 20px;
    opacity: 0.7;
}

.member-login {
    max-width: 480px;
    margin: 0 auto;
}

.member-login-card {
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 48px 40px;
    text-align: center;
}

.member-login-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--slate-800);
}

.member-login-card > p {
    color: var(--slate-500);
    margin-bottom: 32px;
    font-size: 0.95rem;
}

.form-group {
    margin-bottom: 20px;
    text-align: left;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--slate-700);
    margin-bottom: 6px;
}

.form-group input {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: all var(--transition);
    background: #fff;
}

.form-group input:focus {
    outline: none;
    border-color: var(--ice-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.login-hint {
    margin-top: 20px;
    font-size: 0.8rem;
    color: var(--slate-400);
}

.member-welcome {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--slate-200);
}

.member-welcome h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--slate-800);
}

.member-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.member-card {
    padding: 32px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-md);
}

.member-card h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--slate-800);
    margin-bottom: 16px;
}

.member-card ul {
    list-style: none;
}

.member-card li {
    padding: 8px 0;
    border-bottom: 1px solid var(--slate-100);
    font-size: 0.9rem;
    color: var(--slate-600);
}

.member-card li:last-child {
    border-bottom: none;
}

/* ---- ERFOLGE PAGE ---- */
.erfolge-hero {
    background: linear-gradient(135deg, var(--slate-900), var(--ice-900));
    color: #fff;
}

.erfolge-hero .section-label {
    color: var(--ice-300);
}

.erfolge-hero .section-title {
    color: #fff;
}

.erfolge-hero .section-subtitle {
    color: rgba(255,255,255,0.7);
}

.erfolge-filters {
    display: flex;
    gap: 8px;
    justify-content: center;
    flex-wrap: wrap;
    padding-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    font-size: 0.85rem;
    font-weight: 600;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 100px;
    background: transparent;
    color: rgba(255,255,255,0.7);
    cursor: pointer;
    transition: all var(--transition);
    font-family: inherit;
}

.filter-btn:hover,
.filter-btn.active {
    background: #fff;
    color: var(--slate-800);
    border-color: #fff;
}

.erfolge-galerie {
    padding: 40px 0;
    background: var(--slate-50);
}

.galerie-banner {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}

.galerie-banner img {
    height: 160px;
    width: auto;
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    object-fit: cover;
}

.saison-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--slate-900);
    margin-bottom: 40px;
    padding-bottom: 16px;
    border-bottom: 3px solid var(--ice-400);
    display: inline-block;
}

.highlight-erfolge {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 48px;
}

.erfolg-highlight {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 20px 24px;
    background: linear-gradient(135deg, var(--ice-50), #fff);
    border: 1px solid var(--ice-200);
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.erfolg-highlight:hover {
    box-shadow: var(--shadow-md);
}

.erfolg-medal {
    font-size: 2rem;
    flex-shrink: 0;
}

.erfolg-highlight h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 4px;
}

.erfolg-highlight p {
    font-size: 0.9rem;
    color: var(--slate-600);
    line-height: 1.6;
}

.erfolg-meta {
    font-size: 0.8rem;
    color: var(--slate-400);
    font-weight: 500;
}

/* Wettkampf Accordion */
.wettkampf-accordion {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.wk-item {
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.wk-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 24px;
    background: #fff;
    border: none;
    cursor: pointer;
    font-family: inherit;
    transition: all var(--transition);
}

.wk-header:hover {
    background: var(--ice-50);
}

.wk-name {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--slate-800);
}

.wk-ort {
    font-size: 0.8rem;
    color: var(--slate-400);
    margin-left: auto;
    margin-right: 16px;
}

.wk-toggle {
    font-size: 1.3rem;
    font-weight: 300;
    color: var(--ice-500);
    transition: transform var(--transition);
}

.wk-item.open .wk-toggle {
    transform: rotate(45deg);
}

.wk-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.wk-item.open .wk-body {
    max-height: 1200px;
}

.ergebnis-table {
    width: 100%;
    border-collapse: collapse;
}

.ergebnis-table td {
    padding: 10px 24px;
    border-top: 1px solid var(--slate-100);
    font-size: 0.9rem;
    color: var(--slate-600);
}

.ergebnis-table tr:hover {
    background: var(--ice-50);
}

.platz {
    font-weight: 600;
    text-align: right;
    white-space: nowrap;
}

.platz-1 { color: #b7791f; background: #fefcbf; }
.platz-2 { color: #64748b; background: #f1f5f9; }
.platz-3 { color: #92400e; background: #fef3c7; }

.eistanz-row td:first-child::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #7c3aed;
    border-radius: 50%;
    margin-right: 8px;
}

.podium td:first-child {
    font-weight: 600;
    color: var(--slate-800);
}

/* ---- SOCIAL MEDIA ---- */
.social-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.social-card {
    background: #fff;
    border: 1px solid var(--slate-200);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.social-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
}

.social-instagram::before {
    background: linear-gradient(90deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
}

.social-facebook::before {
    background: #1877f2;
}

.social-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}

.social-icon {
    margin-bottom: 16px;
}

.social-instagram .social-icon {
    color: #e1306c;
}

.social-facebook .social-icon {
    color: #1877f2;
}

.social-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--slate-800);
    margin-bottom: 8px;
}

.social-card > p {
    color: var(--slate-500);
    font-size: 0.95rem;
    margin-bottom: 20px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    border-radius: var(--radius-xl);
    font-size: 0.9rem;
    font-weight: 600;
    transition: all var(--transition);
    text-decoration: none;
}

.social-instagram .social-link {
    background: linear-gradient(135deg, #f09433, #dc2743);
    color: #fff;
}

.social-instagram .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(225, 48, 108, 0.4);
    color: #fff;
}

.social-facebook .social-link {
    background: #1877f2;
    color: #fff;
}

.social-facebook .social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(24, 119, 242, 0.4);
    color: #fff;
}

.social-feed {
    margin-top: 24px;
    min-height: 200px;
}

.feed-placeholder {
    padding: 20px;
    color: var(--slate-400);
    font-size: 0.85rem;
}

.feed-grid-preview {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.feed-tile {
    aspect-ratio: 1;
    background: var(--slate-100);
    border-radius: var(--radius-sm);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

.fb-page {
    overflow: hidden;
}

/* Footer Social */
.footer-social {
    display: flex;
    gap: 12px;
    margin-top: 16px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: var(--slate-400);
    transition: all var(--transition);
}

.footer-social-link:hover {
    background: var(--ice-500);
    color: #fff;
    transform: translateY(-2px);
}

/* ---- NEWSTICKER ---- */
.newsticker-bar {
    background: var(--slate-900);
    color: var(--slate-300);
    overflow: hidden;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    z-index: 999;
    height: 40px;
    display: flex;
    align-items: center;
}

.newsticker-label {
    background: var(--ice-600);
    color: #fff;
    padding: 0 16px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    height: 100%;
    display: flex;
    align-items: center;
    flex-shrink: 0;
    z-index: 2;
}

.newsticker-track {
    display: flex;
    animation: ticker-scroll 60s linear infinite;
    white-space: nowrap;
}

.newsticker-track:hover {
    animation-play-state: paused;
}

.newsticker-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-size: 0.8rem;
    color: var(--slate-300);
    text-decoration: none;
    flex-shrink: 0;
    transition: color var(--transition);
}

.newsticker-item:hover {
    color: var(--ice-400);
}

.newsticker-source {
    font-weight: 700;
    color: var(--ice-400);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.newsticker-separator {
    color: var(--slate-600);
    padding: 0 8px;
}

@keyframes ticker-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* Filter hidden class */
.erfolg-hidden {
    display: none !important;
}

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
    .vorstand-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .trainer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .downloads-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(255,255,255,0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 24px;
        gap: 4px;
        transform: translateX(100%);
        transition: transform var(--transition);
        overflow-y: auto;
    }

    .nav-menu.open {
        transform: translateX(0);
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.open span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    .nav-toggle.open span:nth-child(2) {
        opacity: 0;
    }
    .nav-toggle.open span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }

    .nav-link {
        font-size: 1.1rem;
        padding: 12px 16px;
    }

    .section {
        padding: 60px 0;
    }

    .verein-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .abteilungen-grid {
        grid-template-columns: 1fr;
    }

    .trainer-grid {
        grid-template-columns: 1fr;
    }

    .news-grid {
        grid-template-columns: 1fr;
    }

    .anmeldung-steps {
        grid-template-columns: 1fr;
    }

    .faq-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr 1fr;
    }

    .downloads-grid {
        grid-template-columns: 1fr;
    }

    .kontakt-grid {
        grid-template-columns: 1fr;
    }

    .impressum-grid {
        grid-template-columns: 1fr;
    }

    .vorstand-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .termin-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .sportart-block,
    .sportart-reverse {
        grid-template-columns: 1fr;
        direction: ltr;
    }

    .sportart-image img {
        height: 260px;
    }

    .galerie-grid {
        grid-template-columns: 1fr;
    }

    .galerie-wide {
        grid-column: span 1;
    }

    .member-grid {
        grid-template-columns: 1fr;
    }

    .member-login-card {
        padding: 32px 24px;
    }

    .social-grid {
        grid-template-columns: 1fr;
    }

    .wk-header {
        flex-wrap: wrap;
    }

    .wk-ort {
        width: 100%;
        margin: 4px 0 0 0;
    }
}

@media (max-width: 480px) {
    .verein-highlights {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .vorstand-grid {
        grid-template-columns: 1fr;
    }

    .links-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ===================== NEUE KOMPONENTEN (Umbau 2026) ===================== */

/* --- Navigation Dropdown --- */
.nav-item.has-dropdown { position: relative; }
.nav-caret { font-size: 0.7em; opacity: 0.7; }
.nav-dropdown {
    list-style: none;
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 230px;
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all var(--transition);
    z-index: 200;
}
.nav-item.has-dropdown:hover .nav-dropdown,
.nav-item.has-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}
.nav-dropdown .nav-link { display: block; white-space: nowrap; }

/* --- Timeline (Historie) --- */
.timeline {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    padding-left: 8px;
}
.timeline::before {
    content: "";
    position: absolute;
    left: 78px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(var(--ice-300), var(--ice-100));
}
.timeline-item {
    position: relative;
    display: grid;
    grid-template-columns: 70px 1fr;
    gap: 28px;
    padding: 14px 0;
}
.timeline-item::before {
    content: "";
    position: absolute;
    left: 72px;
    top: 22px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: #fff;
    border: 3px solid var(--ice-400);
    z-index: 1;
}
.timeline-item.timeline-highlight::before { border-color: var(--gold); background: var(--gold-light); }
.timeline-year {
    font-weight: 800;
    color: var(--ice-700);
    font-size: 0.95rem;
    text-align: right;
    padding-top: 16px;
    line-height: 1.2;
}
.timeline-content {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-sm);
    margin-left: 24px;
    transition: all var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }
.timeline-content h4 { margin: 0 0 6px; color: var(--slate-800); font-size: 1.05rem; }
.timeline-content p { margin: 0; color: var(--slate-600); font-size: 0.95rem; }
.timeline-highlight .timeline-content { border-left: 3px solid var(--gold); }

/* --- Philosophie --- */
.philosophie-intro { max-width: 820px; margin: 0 auto 32px; text-align: center; }
.philosophie-intro p { font-size: 1.15rem; color: var(--slate-600); line-height: 1.7; }
.philo-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 32px;
}
.philo-card {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.philo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.philo-icon { font-size: 2.2rem; margin-bottom: 12px; }
.philo-card h4 { margin: 0 0 8px; color: var(--ice-800); font-size: 1.1rem; }
.philo-card p { margin: 0; color: var(--slate-600); font-size: 0.92rem; }
.philosophie-text { max-width: 820px; margin: 0 auto; }
.philosophie-text p { color: var(--slate-600); margin-bottom: 14px; }

/* --- Vorstand Bios --- */
.vorstand-lead { max-width: 760px; margin: 0 auto 32px; text-align: center; }
.vorstand-lead p { color: var(--slate-600); font-size: 1.05rem; }
.bio-card {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.bio-card:hover { box-shadow: var(--shadow-md); }
.bio-featured {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 28px;
    align-items: center;
    margin-bottom: 24px;
    border-left: 4px solid var(--gold);
}
.bio-photo img {
    width: 100%;
    aspect-ratio: 3/4;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.bio-role {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--ice-600);
    background: var(--ice-50);
    padding: 4px 12px;
    border-radius: 999px;
    margin-bottom: 10px;
}
.bio-card h4 { margin: 0 0 10px; color: var(--slate-800); font-size: 1.2rem; }
.bio-card p { margin: 0; color: var(--slate-600); font-size: 0.95rem; line-height: 1.65; }
.bio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}

/* --- Videos (Mediathek) --- */
.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}
.video-card {
    margin: 0;
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}
.video-card video {
    width: 100%;
    display: block;
    background: #000;
    aspect-ratio: 16/9;
    object-fit: cover;
}
.video-card figcaption {
    padding: 14px 18px;
    font-weight: 600;
    color: var(--slate-700);
    font-size: 0.95rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.video-open {
    font-weight: 500;
    font-size: 0.82rem;
    color: var(--ice-600);
    text-decoration: none;
    white-space: nowrap;
}
.video-open:hover { color: var(--ice-800); text-decoration: underline; }

/* --- Termine & Events --- */
.termine-cols {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
    margin-bottom: 40px;
}
.termine-col {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.termine-col:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.termine-head { margin-bottom: 14px; }
.termine-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 5px 14px;
    border-radius: 999px;
}
.termine-badge.badge-l { background: var(--ice-50); color: var(--ice-700); }
.termine-badge.badge-sys { background: var(--rose-light); color: var(--rose); }
.termine-badge.badge-gold { background: var(--gold-light); color: #92600e; }
.termine-col h4 { margin: 0 0 10px; color: var(--slate-800); font-size: 1.15rem; }
.termine-col p { color: var(--slate-600); font-size: 0.93rem; margin: 0 0 16px; }
.termine-links { display: flex; flex-direction: column; gap: 8px; }

.events-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.event-row {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 20px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.event-row:hover { box-shadow: var(--shadow-md); transform: translateX(3px); }
.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--ice-50);
    border-radius: var(--radius-sm);
    padding: 10px 6px;
    color: var(--ice-700);
}
.event-day { font-size: 1.3rem; font-weight: 800; line-height: 1; }
.event-month { font-size: 0.8rem; font-weight: 600; text-transform: uppercase; }
.event-info h4 { margin: 0 0 4px; color: var(--slate-800); font-size: 1.05rem; }
.event-info p { margin: 0; color: var(--slate-600); font-size: 0.92rem; }

/* --- Mobile-Anpassungen neue Komponenten --- */
@media (max-width: 768px) {
    .nav-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        border-left: 2px solid var(--ice-200);
        border-radius: 0;
        margin: 2px 0 8px 12px;
        padding: 2px 0 2px 10px;
        min-width: 0;
    }
    .nav-caret { display: none; }
    .timeline::before { left: 6px; }
    .timeline-item { grid-template-columns: 1fr; gap: 6px; padding-left: 28px; }
    .timeline-item::before { left: 0; }
    .timeline-year { text-align: left; padding-top: 0; }
    .timeline-content { margin-left: 0; }
    .bio-featured { grid-template-columns: 1fr; text-align: center; }
    .bio-photo img { max-width: 220px; margin: 0 auto; }
}

/* ===================== FEINSCHLIFF-KOMPONENTEN (Umbau 2026, Teil 2) ===================== */

/* Textarea analog zu Inputs */
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    font-size: 0.95rem;
    border: 1px solid var(--slate-300);
    border-radius: var(--radius-sm);
    font-family: inherit;
    transition: all var(--transition);
    background: #fff;
    resize: vertical;
}
.form-group textarea:focus {
    outline: none;
    border-color: var(--ice-500);
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

/* Trainerteam-Intro */
.trainer-intro { max-width: 820px; margin: 0 auto 32px; text-align: center; }
.trainer-intro p { color: var(--slate-600); font-size: 1.05rem; line-height: 1.7; }

/* Angebot-Übersicht */
.angebot-tiers {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-bottom: 24px;
}
.angebot-tier {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.angebot-tier:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.angebot-tier-head { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; flex-wrap: wrap; }
.angebot-tier-head h3 { margin: 0; color: var(--slate-800); font-size: 1.3rem; }
.angebot-tier-badge {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    padding: 4px 12px;
    border-radius: 999px;
}
.angebot-tier-badge.badge-blue { background: var(--ice-50); color: var(--ice-700); }
.angebot-tier-badge.badge-gold { background: var(--gold-light); color: #92600e; }
.angebot-tier > p { color: var(--slate-600); font-size: 0.98rem; margin: 0 0 18px; }
.angebot-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.angebot-chip {
    display: inline-block;
    padding: 7px 14px;
    background: var(--slate-50);
    border: 1px solid var(--slate-200);
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--slate-700);
    text-decoration: none;
    transition: all var(--transition);
}
.angebot-chip:hover { background: var(--ice-50); border-color: var(--ice-300); color: var(--ice-700); }
.angebot-note { text-align: center; color: var(--slate-600); font-size: 0.95rem; max-width: 780px; margin: 0 auto; }
.angebot-note a { color: var(--ice-600); font-weight: 600; text-decoration: none; }
.angebot-note a:hover { text-decoration: underline; }

/* Vereinskleidung */
.kleidung-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 24px;
}
.kleidung-card {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 26px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}
.kleidung-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.kleidung-icon { font-size: 2.1rem; margin-bottom: 12px; }
.kleidung-card h4 { margin: 0 0 8px; color: var(--ice-800); font-size: 1.1rem; }
.kleidung-card p { margin: 0; color: var(--slate-600); font-size: 0.92rem; }
.kleidung-card a { color: var(--ice-600); }
.kleidung-note { text-align: center; color: var(--slate-600); font-size: 0.95rem; }

/* Downloads als Links */
a.download-card { text-decoration: none; color: inherit; position: relative; display: block; }
.download-hint {
    display: inline-block;
    margin-top: 10px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--ice-600);
}
.downloads-note { text-align: center; color: var(--slate-500); font-size: 0.9rem; margin-top: 24px; max-width: 760px; margin-left: auto; margin-right: auto; }

/* Kontaktformular */
.kontakt-form-card {
    background: #fff;
    border: 1px solid var(--slate-100);
    border-radius: var(--radius-lg);
    padding: 32px;
    box-shadow: var(--shadow-md);
    max-width: 760px;
    margin: 0 auto 40px;
}
.kontakt-form-card h3 { margin: 0 0 6px; color: var(--slate-800); font-size: 1.3rem; }
.kontakt-form-intro { margin: 0 0 22px; color: var(--slate-500); font-size: 0.92rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.kontakt-form .btn { margin-top: 4px; }

/* Impressum-Disclaimer */
.impressum-disclaimer {
    margin-top: 28px;
    background: var(--gold-light);
    border: 1px solid #e6d3a3;
    border-radius: var(--radius-md);
    padding: 16px 20px;
    font-size: 0.9rem;
    color: #6b5210;
    line-height: 1.6;
}

@media (max-width: 600px) {
    .form-row { grid-template-columns: 1fr; }
}

/* ===== Trainer-Fotos + Kurzvita (08/2026) ===== */
.trainer-photo {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    object-fit: cover;
    display: block;
    margin: 0 auto 16px;
    border: 3px solid var(--ice-200);
    filter: grayscale(1); /* einheitlich Schwarzweiß im Trainerteam */
}
.trainer-bio {
    font-size: 0.85rem;
    color: var(--slate-500);
    line-height: 1.55;
    margin-top: 10px;
    text-align: left;
}

/* ===== Blocksatz für Fließtexte mit deutscher Silbentrennung (09/2026) ===== */
.section p {
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}
.section .section-subtitle,
.section .angebot-note,
.section .erfolge-cta,
.galerie-caption {
    text-align: center;
    -webkit-hyphens: manual;
    hyphens: manual;
}

/* Blocksatz-Erweiterung: auch Listen und Footer (09/2026) */
.section li,
.sportart-legenden li,
.faq-answer li,
footer p {
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Vorstand-Einleitung: Blocksatz im mittig gesetzten Textblock (09/2026) */
.vorstand-lead p {
    text-align: justify;
    -webkit-hyphens: auto;
    hyphens: auto;
}

/* Hero: Kacheln/Buttons sitzen sauber im Blau (09/2026) */
.hero {
    padding: 64px 0 120px;
}
.hero-buttons {
    margin-bottom: 8px;
}

/* Trainingszeiten: Willkommens-Box in normaler Schrift, groesser; Tabellenkopf im Vereinsblau (09/2026) */
.hinweis-willkommen p {
    color: var(--slate-700);
    font-size: 1.2rem;
    font-style: normal;
}
.trainingszeiten-table th {
    background: var(--ice-700);
}

/* Featured-News hell statt blau-weiss - bessere Lesbarkeit (09/2026) */
.news-featured {
    background: var(--ice-50, #f0f9ff);
    color: var(--slate-700);
    border: 1px solid var(--ice-200, #bae6fd);
}
.news-featured .news-date { color: var(--ice-700); }
.news-featured h3 { color: var(--slate-800); }
.news-featured p { color: var(--slate-600); }
.news-featured .news-tag { background: var(--ice-700); color: #fff; }

/* Willkommens-Box: ohne Icon, Text mittig (09/2026) */
.hinweis-willkommen {
    justify-content: center;
}
.hinweis-willkommen p {
    text-align: center;
    -webkit-hyphens: manual;
    hyphens: manual;
}

/* Willkommens-Box: zwei Absaetze, gleiche Faerbung (09/2026) */
.hinweis-willkommen p + p {
    margin-top: 8px;
}

/* Download-Kacheln mittig (nur noch 2 Kacheln, 09/2026) */
.downloads-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
}
.downloads-grid .download-card {
    flex: 0 1 340px;
}

/* Stand-Zeile Impressum/Datenschutz hellblau unterlegt (09/2026) */
.impressum-disclaimer {
    background: var(--ice-50, #f0f9ff);
    border: 1px solid var(--ice-200, #bae6fd);
    border-radius: var(--radius-md, 10px);
    padding: 12px 20px;
    text-align: center;
    color: var(--ice-800, #075985);
}

/* Trainingsplan: Gruppen-Badges dezenter - Outline statt Pastellflaechen (09/2026) */
.trainingszeiten-table .gruppe-badge {
    background: #fff;
    border: 1px solid currentColor;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.trainingszeiten-table .badge-l   { color: #0369a1; }
.trainingszeiten-table .badge-ab  { color: #475569; }
.trainingszeiten-table .badge-et  { color: #0f766e; }
.trainingszeiten-table .badge-sys { color: #5b21b6; }
.trainingszeiten-table .badge-erw { color: #92400e; }

/* ===== Trainer-Detail-Overlay: Karte anklickbar, Farbfoto + Text (09/2026) ===== */
.trainer-card { cursor: pointer; }
.trainer-modal { position: fixed; inset: 0; z-index: 2000; display: flex; align-items: center; justify-content: center; padding: 24px; }
.trainer-modal[hidden] { display: none; }
.trainer-modal-backdrop { position: absolute; inset: 0; background: rgba(4, 30, 53, 0.65); }
.trainer-modal-card { position: relative; background: #fff; border-radius: var(--radius-lg, 16px); max-width: 560px; width: 100%; max-height: 85vh; overflow-y: auto; padding: 40px 36px 32px; text-align: center; box-shadow: 0 24px 64px rgba(0,0,0,0.35); }
.trainer-modal-close { position: absolute; top: 12px; right: 16px; border: none; background: none; font-size: 1.8rem; line-height: 1; color: var(--slate-400); cursor: pointer; }
.trainer-modal-close:hover { color: var(--slate-700); }
.trainer-modal-photo { width: 180px; height: 180px; border-radius: 50%; object-fit: cover; margin: 0 auto 20px; border: 4px solid var(--ice-200, #bae6fd); filter: none; /* Farbfoto! */ }
.trainer-modal-avatar { width: 140px; height: 140px; border-radius: 50%; margin: 0 auto 20px; background: var(--ice-50, #f0f9ff); color: var(--ice-700, #0369a1); display: flex; align-items: center; justify-content: center; font-size: 2.4rem; font-weight: 700; border: 4px solid var(--ice-200, #bae6fd); }
.trainer-modal-card h3 { margin: 0 0 6px; color: var(--slate-800); }
.trainer-modal-qual { color: var(--ice-700, #0369a1); font-weight: 600; font-size: 0.92rem; margin: 0 0 16px; }
.trainer-modal-bio { color: var(--slate-600); line-height: 1.7; text-align: justify; -webkit-hyphens: auto; hyphens: auto; margin: 0; }

/* Trainer-Kacheln einheitlich kompakt - Bio nur noch im Klick-Overlay (09/2026) */
.trainer-card .trainer-bio {
    display: none;
}
.trainer-card::after {
    content: "Zum Profil \2192";
    display: block;
    margin-top: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--ice-700, #0369a1);
}

/* ---- SPORTART-FOTO IN VOLLER GROESSE (kein Beschnitt, z. B. Solo-Eistanz) ---- */
.sportart-image.foto-voll img {
    height: auto;
    object-fit: contain;
    display: block;
}
