/* ===== CSS Variables ===== */
:root {
    --primary-blue: #1a56db;
    --primary-blue-dark: #1e40af;
    --primary-blue-light: #3b82f6;
    --primary-yellow: #fbbf24;
    --primary-yellow-dark: #f59e0b;
    --primary-yellow-light: #fcd34d;
    
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --text-white: #ffffff;
    
    --bg-light: #f8fafc;
    --bg-white: #ffffff;
    --bg-dark: #111827;
    
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;
    
    --transition: all 0.3s ease;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

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

/* ===== Typography ===== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-full);
    transition: var(--transition);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--primary-blue);
    color: var(--text-white);
    box-shadow: 0 4px 14px rgba(26, 86, 219, 0.4);
}

.btn-primary:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(26, 86, 219, 0.5);
}

.btn-light {
    background: var(--text-white);
    color: var(--primary-blue);
}

.btn-light:hover {
    background: var(--bg-light);
    transform: translateY(-2px);
}

/* ===== Back to Top Button ===== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-blue);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(26, 86, 219, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-blue-dark);
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(26, 86, 219, 0.4);
}

/* ===== Scroll Progress Bar ===== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-blue);
    width: 0%;
    z-index: 1001;
    transition: width 0.1s ease-out;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: var(--transition);
    height: 90px;
}

.navbar-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    z-index: -1;
}

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

.nav-logo {
    position: relative;
    z-index: 10;
    width: 140px;
    height: 100%;
    display: flex;
    align-items: center;
}

.nav-logo img {
    height: 140px;
    width: 140px;
    border-radius: 50%;
    object-fit: cover;
    position: absolute;
    top: 20px;
    left: 0;
    border: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    background: var(--bg-white);
}

.nav-logo img:hover {
    transform: scale(1.05);
}

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

.nav-link {
    position: relative;
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    padding: 10px 6px;
    transition: var(--transition);
}

/* Animierte Marken-Unterstreichung (blau→gelb), wächst aus der Mitte */
.nav-menu > li > .nav-link::before {
    content: '';
    position: absolute;
    left: 6px;
    right: 6px;
    bottom: 2px;
    height: 3px;
    border-radius: var(--radius-full);
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    transform: scaleX(0);
    transform-origin: center;
    transition: transform 0.3s ease;
}

.nav-menu > li > .nav-link:hover {
    color: var(--primary-blue);
}

.nav-menu > li > .nav-link:hover::before,
.nav-menu > li > .nav-link.active::before {
    transform: scaleX(1);
}

.nav-link.active {
    color: var(--primary-blue);
    font-weight: 600;
}

/* Dropdown (Unterseiten, z.B. Verein > Läufe) */
.nav-item-dropdown {
    position: relative;
}

.nav-item-dropdown > .nav-link::after {
    content: '▾';
    display: inline-block;
    margin-left: 6px;
    font-size: 0.7em;
    opacity: 0.5;
    vertical-align: middle;
    transition: var(--transition);
}

.nav-item-dropdown:hover > .nav-link::after {
    transform: rotate(180deg);
    opacity: 1;
}

/* Hauptpunkt bleibt hervorgehoben, solange sein Menü offen ist */
.nav-item-dropdown:hover > .nav-link,
.nav-item-dropdown:focus-within > .nav-link {
    color: var(--primary-blue);
}

.nav-item-dropdown:hover > .nav-link::before,
.nav-item-dropdown:focus-within > .nav-link::before {
    transform: scaleX(1);
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 8px);
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    list-style: none;
    padding: 8px;
    min-width: 250px;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 1000;
}

/* Unsichtbare Brücke, damit der Hover beim Übergang nicht abreisst */
.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -16px;
    left: 0;
    right: 0;
    height: 16px;
}

/* Pfeil, der das Panel sichtbar mit dem Hauptpunkt "Verein" verbindet */
.nav-dropdown::after {
    content: '';
    position: absolute;
    top: -7px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 13px;
    height: 13px;
    background: var(--bg-white);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    border-left: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 3px 0 0 0;
}

.nav-item-dropdown:hover .nav-dropdown,
.nav-item-dropdown:focus-within .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0);
}

/* Bereichs-Überschrift im Dropdown */
.nav-dropdown-label {
    padding: 6px 12px 8px;
    margin-bottom: 4px;
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: var(--text-light);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: var(--radius-md);
    text-decoration: none;
    transition: var(--transition);
}

.nav-dropdown-item:hover {
    background: rgba(26, 86, 219, 0.06);
}

.nav-dropdown-icon {
    width: 38px;
    height: 38px;
    flex-shrink: 0;
    background: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.nav-dropdown-icon svg {
    width: 19px;
    height: 19px;
    color: var(--primary-blue);
    transition: var(--transition);
}

.nav-dropdown-item:hover .nav-dropdown-icon,
.nav-dropdown-item.active .nav-dropdown-icon {
    background: var(--primary-blue);
}

.nav-dropdown-item:hover .nav-dropdown-icon svg,
.nav-dropdown-item.active .nav-dropdown-icon svg {
    color: var(--text-white);
}

.nav-dropdown-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.nav-dropdown-title {
    font-weight: 600;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.nav-dropdown-desc {
    font-size: 0.75rem;
    color: var(--text-light);
}

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

.nav-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero-content {
    text-align: center;
    position: relative;
    z-index: 2;
}

.hero-title {
    margin-bottom: 24px;
    color: var(--text-dark);
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 16px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-hashtag {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-yellow);
    margin-bottom: 40px;
    letter-spacing: 2px;
    text-shadow: 0 2px 10px rgba(251, 191, 36, 0.3);
}

.hero-decoration {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.circle-1 {
    width: 400px;
    height: 400px;
    background: var(--primary-yellow);
    top: -100px;
    right: -100px;
    filter: blur(80px);
}

.circle-2 {
    width: 300px;
    height: 300px;
    background: var(--primary-blue-light);
    bottom: -50px;
    left: -50px;
    filter: blur(60px);
}

.circle-3 {
    width: 200px;
    height: 200px;
    background: var(--primary-yellow-light);
    top: 50%;
    left: 20%;
    filter: blur(50px);
}

/* ===== Section Titles ===== */
.section-title {
    text-align: center;
    margin-bottom: 48px;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--primary-yellow));
    margin: 16px auto 0;
    border-radius: var(--radius-full);
}

/* ===== Bento Grid ===== */
.bento-section {
    padding: 100px 0;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: auto;
    gap: 24px;
}

/* Diagonal Bento Layout - matching sketch */
.bento-diagonal {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto auto;
    grid-template-areas:
        "lauftreff willkommen"
        "lauftreff maps"
        "treffpunkt maps";
}

.card-lauftreff {
    grid-area: lauftreff;
}

.card-willkommen {
    grid-area: willkommen;
}

.card-treffpunkt {
    grid-area: treffpunkt;
}

.card-maps {
    grid-area: maps;
}

.bento-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

.bento-medium {
    grid-column: span 2;
}

.bento-small {
    grid-column: span 1;
}

.bento-wide {
    grid-column: span 4;
}

/* Card Styles */
.card-icon {
    width: 56px;
    height: 56px;
    background: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card-icon svg {
    width: 28px;
    height: 28px;
    color: var(--primary-blue);
}

.card-icon.yellow {
    background: rgba(251, 191, 36, 0.2);
}

.card-icon.yellow svg {
    color: var(--primary-yellow-dark);
}

.bento-card h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
}

.bento-card p {
    color: var(--text-light);
}

.card-highlight {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--primary-blue) !important;
    margin-bottom: 8px;
}

.card-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    margin-top: 20px;
}

/* Accent Gradient Card */
.accent-gradient {
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    color: var(--text-white);
}

.accent-gradient h3,
.accent-gradient p,
.accent-gradient .card-highlight {
    color: var(--text-white) !important;
}

.accent-gradient .card-icon {
    background: rgba(255, 255, 255, 0.2);
}

.accent-gradient .card-icon svg {
    color: var(--text-white);
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

/* Gruppen-Chips (zwei Laufgruppen) */
.group-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.group-chip {
    background: rgba(26, 86, 219, 0.08);
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.8125rem;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    white-space: nowrap;
}

/* Blue Card */
.blue-card {
    background: var(--primary-blue);
    color: var(--text-white);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.blue-card p {
    color: rgba(255, 255, 255, 0.8);
}

/* Yellow Card */
.yellow-card {
    background: var(--primary-yellow);
    color: var(--text-dark);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
}

.stat-label {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.stat-text {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 8px;
}

/* Location Card */
.location-card {
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
}

.location-name {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--primary-blue) !important;
}

.location-desc {
    font-size: 0.875rem;
}

/* Map Card */
.map-card {
    padding: 16px;
    background: var(--bg-white);
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 300px;
    display: block;
}

/* Apple Maps Card */
.map-card-apple {
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Map Loader */
.map-loader {
    position: absolute;
    inset: 0;
    z-index: 20;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e8f0 50%, #c5dde8 100%);
    border-radius: var(--radius-xl);
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

.map-loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.map-loader span {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-light);
}

.map-loader-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid rgba(26, 86, 219, 0.15);
    border-top-color: var(--primary-blue);
    border-radius: 50%;
    animation: map-spin 0.8s linear infinite;
}

@keyframes map-spin {
    to { transform: rotate(360deg); }
}

#apple-map {
    width: 100%;
    height: 100%;
    min-height: 300px;
    border-radius: var(--radius-xl);
}

.map-overlay-link {
    position: absolute;
    bottom: 16px;
    left: 16px;
    background: var(--bg-white);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    z-index: 10;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

.map-overlay-link span {
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.875rem;
}

.map-overlay-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

/* Apple Maps Link Card (fallback) */
.map-card-link {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: linear-gradient(135deg, #e8f4f8 0%, #d1e8f0 50%, #c5dde8 100%);
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

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

.map-card-link:hover .map-cta {
    color: var(--primary-blue-dark);
}

.map-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 2;
}

.map-icon {
    width: 56px;
    height: 56px;
    background: var(--primary-blue);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-icon svg {
    width: 28px;
    height: 28px;
    color: var(--text-white);
}

.map-info h3 {
    color: var(--text-dark);
    margin-bottom: 4px;
}

.map-info p {
    color: var(--text-light);
    margin-bottom: 16px;
}

.map-cta {
    display: inline-block;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    transition: var(--transition);
}

.map-decoration {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 60%;
    height: 60%;
    pointer-events: none;
    z-index: 1;
}

.map-decoration::before {
    content: '';
    position: absolute;
    bottom: -20%;
    right: -10%;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(26, 86, 219, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.map-pin {
    position: absolute;
    bottom: 30%;
    right: 25%;
    width: 40px;
    height: 40px;
    background: var(--primary-blue);
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.3);
}

.map-pin::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    background: var(--text-white);
    border-radius: 50%;
}

/* Quote Card */
.quote-card {
    background: linear-gradient(90deg, var(--primary-blue) 0%, var(--primary-blue-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.quote-card blockquote {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-white);
    font-style: italic;
    max-width: 800px;
}

.quote-card .hashtag {
    font-style: normal;
    font-weight: 800;
    color: var(--primary-yellow);
}

/* TrainTuesday Badge */
.train-tuesday-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    margin-bottom: 16px;
    letter-spacing: 0.5px;
}

/* ===== Spezialtrainings Section ===== */
.specials-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.special-featured {
    display: flex;
    align-items: center;
    gap: 32px;
    background: linear-gradient(135deg, var(--primary-blue) 0%, var(--primary-blue-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.special-featured::after {
    content: '';
    position: absolute;
    top: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    background: rgba(251, 191, 36, 0.35);
    border-radius: 50%;
    filter: blur(60px);
    pointer-events: none;
}

.special-featured > * {
    position: relative;
    z-index: 1;
}

.special-icon {
    width: 88px;
    height: 88px;
    font-size: 2.75rem;
    line-height: 1;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.special-badge {
    display: inline-block;
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 12px;
}

.special-body h3 {
    color: var(--text-white);
    margin-bottom: 8px;
}

.special-tagline {
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 16px;
    max-width: 560px;
}

.special-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.special-meta-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.special-meta-item svg {
    width: 16px;
    height: 16px;
    color: var(--primary-yellow);
    flex-shrink: 0;
}

.special-countdown {
    margin-left: auto;
    align-self: flex-start;
    background: var(--primary-yellow);
    color: var(--text-dark);
    font-weight: 800;
    font-size: 0.9375rem;
    padding: 10px 20px;
    border-radius: var(--radius-full);
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.4);
}

.special-upcoming {
    margin-top: 24px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.special-upcoming-label {
    color: var(--text-light);
    font-size: 0.875rem;
    font-weight: 600;
}

.special-pill {
    background: var(--bg-light);
    border: 1px solid rgba(0, 0, 0, 0.06);
    padding: 8px 16px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.875rem;
    color: var(--text-dark);
}

/* Gemeinsamer Lauf (#lauf) in der Agenda */
.agenda-label.agenda-label--lauf {
    background: var(--primary-blue);
    color: var(--text-white);
}

/* ===== Läufe Seite ===== */
.laeufe-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.laeufe-past-title {
    text-align: center;
    margin: 64px 0 32px;
    color: var(--text-light);
}

.agenda-card--past {
    opacity: 0.65;
}

.agenda-card--past:hover {
    opacity: 1;
}

/* Link in Bento-Karten (z.B. Verein > Events & Anlässe) */
.card-link {
    display: inline-block;
    margin-top: 14px;
    color: var(--primary-blue);
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: var(--transition);
}

.card-link:hover {
    color: var(--primary-blue-dark);
}

/* Spezialtraining in der Agenda */
.agenda-card.agenda-card--special {
    border-color: var(--primary-yellow);
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(251, 191, 36, 0.14) 100%);
}

.agenda-card--special .agenda-date {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
    color: var(--text-dark);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.35);
}

/* ===== Agenda Section ===== */
.agenda-section {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.agenda-card {
    background: var(--bg-white);
    border-radius: var(--radius-xl);
    padding: 28px;
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 22px;
    transition: var(--transition);
    border: 2px solid transparent;
    position: relative;
}

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

.agenda-card.next-event {
    border-color: var(--primary-blue);
    background: linear-gradient(135deg, rgba(26, 86, 219, 0.03) 0%, rgba(26, 86, 219, 0.08) 100%);
    overflow: hidden;
    padding-top: 52px;
}

.next-event-ribbon {
    position: absolute;
    top: -2px;
    right: -2px;
    background: var(--primary-blue);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 8px 14px;
    border-radius: 0 var(--radius-xl) 0 var(--radius-md);
    box-shadow: 0 2px 8px rgba(26, 86, 219, 0.25);
    z-index: 1;
}

.next-event-ribbon span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.agenda-top {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.agenda-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: var(--primary-blue);
    color: var(--text-white);
    border-radius: var(--radius-lg);
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(26, 86, 219, 0.2);
}

.agenda-date-day {
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
}

.agenda-date-month {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    margin-top: 3px;
    opacity: 0.95;
}

.agenda-header {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.agenda-label {
    align-self: flex-start;
    background: var(--primary-yellow);
    color: var(--text-dark);
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.agenda-content h4,
.agenda-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.01em;
    margin: 0;
    color: var(--text-dark);
    min-height: calc(1.125rem * 1.3 * 2);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.agenda-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.agenda-detail {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-light);
    font-size: 0.875rem;
    line-height: 1.45;
}

.agenda-detail svg {
    color: var(--primary-blue);
    flex-shrink: 0;
    margin-top: 2px;
}

.agenda-detail--desc span {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.agenda-footer {
    display: flex;
    gap: 10px;
    padding-top: 18px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    margin-top: 8px;
}

.agenda-calendar-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    flex: 1;
    padding: 10px 12px;
    background: var(--primary-blue);
    color: var(--text-white);
    border: none;
    border-radius: var(--radius-md);
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.agenda-calendar-btn:hover {
    background: var(--primary-blue-dark);
    color: var(--text-white);
}

.agenda-calendar-btn[href] {
    background: rgba(26, 86, 219, 0.08);
    color: var(--primary-blue);
}

.agenda-calendar-btn[href]:hover {
    background: rgba(26, 86, 219, 0.14);
    color: var(--primary-blue-dark);
}

.agenda-calendar-btn svg {
    flex-shrink: 0;
    width: 14px;
    height: 14px;
}

.agenda-calendar-btn.downloaded {
    background: #10b981;
    color: var(--text-white);
}

.agenda-calendar-btn.downloaded:hover {
    background: #059669;
}

@media (max-width: 1024px) {
    .agenda-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* ===== Instagram Section ===== */
.instagram-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.125rem;
    margin-top: -32px;
    margin-bottom: 48px;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.instagram-grid .instagram-media {
    margin: 0 !important;
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
}

.instagram-widget {
    margin-bottom: 48px;
}

.instagram-cta {
    text-align: center;
}

.instagram-cta .btn {
    display: inline-flex;
    align-items: center;
}

@media (max-width: 1024px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto 48px;
    }
}

/* ===== About Section ===== */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-content p {
    color: var(--text-light);
    margin-bottom: 32px;
    font-size: 1.125rem;
}

.about-content .section-title {
    text-align: left;
}

.about-content .section-title::after {
    margin: 16px 0 0;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

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

.about-verein-btn {
    margin-top: 32px;
}

.about-image {
    display: flex;
    justify-content: center;
}

.image-placeholder {
    width: 100%;
    max-width: 400px;
    aspect-ratio: 1;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-white) 100%);    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
}

.about-logo {
    width: 80%;
    height: auto;
    border-radius: 50%;
}

/* ===== CTA Section ===== */
.cta-section {
    padding: 60px 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-dark) 100%);
    border-radius: var(--radius-xl);
    padding: 60px;
    text-align: center;
    box-shadow: var(--shadow-xl);
}

.cta-card h2 {
    color: var(--text-dark);
    margin-bottom: 16px;
}

.cta-card p {
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 32px;
    font-size: 1.125rem;
}

/* ===== Contact Section ===== */
.contact-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
}

.contact-item {
    display: flex;
    gap: 20px;
    padding: 24px;
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    margin-bottom: 20px;
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-blue);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon svg {
    width: 24px;
    height: 24px;
    color: var(--text-white);
}

.contact-item h4 {
    margin-bottom: 4px;
    color: var(--text-dark);
}

.contact-item p {
    color: var(--text-light);
    font-size: 0.9375rem;
}

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

/* ===== Footer ===== */
.footer {
    background: var(--bg-dark);
    color: var(--text-white);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: center;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo img {
    height: 80px;
    width: auto;
    border-radius: 50%;
    object-fit: contain;
    margin-bottom: 12px;
    background: var(--bg-white);
    padding: 10px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.footer-logo p {
    color: rgba(255, 255, 255, 0.7);
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 40px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary-yellow);
}

.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 16px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-blue);
}

.footer-social svg {
    width: 20px;
    height: 20px;
    color: var(--text-white);
}

.footer-bottom {
    padding-top: 30px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.875rem;
}

/* ===== Responsive Design ===== */

/* Tablet */
@media (max-width: 1024px) {
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-diagonal {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
        grid-template-areas:
            "lauftreff willkommen"
            "lauftreff maps"
            "treffpunkt maps";
    }
    
    .bento-wide {
        grid-column: span 2;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-title::after {
        margin: 16px auto 0;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .nav-link {
        padding: 8px 14px;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    /* Navigation Mobile */
    .navbar {
        height: 70px;
    }
    
    .nav-logo {
        width: 90px;
    }
    
    .nav-logo img {
        height: 90px;
        width: 90px;
        top: 25px;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        height: 100dvh;
        width: 280px;
        background: #ffffff;
        display: flex;
        flex-direction: column;
        padding: 100px 24px 24px;
        gap: 12px;
        box-shadow: -4px 0 20px rgba(0, 0, 0, 0.15);
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.3s ease, visibility 0.3s ease;
        z-index: 1000;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }
    
    .nav-menu li {
        list-style: none;
        width: 100%;
    }
    
    /* Hauptpunkte: kräftig, klar als oberste Ebene erkennbar */
    .nav-link {
        padding: 14px 18px;
        text-align: left;
        display: block;
        border-radius: var(--radius-lg);
        background: transparent;
        color: #1a1a2e !important;
        text-decoration: none;
        font-weight: 600;
        font-size: 1.0625rem;
        letter-spacing: -0.01em;
        width: 100%;
    }

    /* Gradienten-Unterstreichung ist Desktop-only */
    .nav-menu > li > .nav-link::before {
        display: none;
    }

    .nav-link:hover {
        background: rgba(26, 86, 219, 0.08);
        color: #1a56db !important;
    }

    .nav-link.active {
        background: #1a56db;
        color: #ffffff !important;
    }

    /* Trenner zwischen den Hauptpunkten */
    .nav-menu > li + li {
        border-top: 1px solid rgba(0, 0, 0, 0.05);
        padding-top: 4px;
        margin-top: 4px;
    }

    /* Dropdown mobil: Unterpunkte als eingerückter "Ast"-Block */
    .nav-item-dropdown > .nav-link::after {
        content: none;
    }

    .nav-dropdown {
        position: static;
        transform: none;
        opacity: 1;
        visibility: visible;
        box-shadow: none;
        border: none;
        border-left: 2px solid rgba(26, 86, 219, 0.25);
        border-radius: 0 var(--radius-md) var(--radius-md) 0;
        background: rgba(26, 86, 219, 0.04);
        min-width: 0;
        margin: 6px 0 2px 20px;
        padding: 4px;
    }

    .nav-dropdown::before,
    .nav-dropdown::after {
        content: none;
    }

    /* Bereichs-Überschrift nur auf Desktop – mobil reicht der eingefärbte Block */
    .nav-dropdown-label {
        display: none;
    }

    /* Desktop-Hover-Regel neutralisieren, sonst rutscht das Untermenü beim Tippen nach links */
    .nav-item-dropdown:hover .nav-dropdown,
    .nav-item-dropdown:focus-within .nav-dropdown {
        transform: none;
    }

    .nav-dropdown .nav-dropdown-item {
        padding: 10px 12px;
    }

    .nav-dropdown-icon {
        width: 34px;
        height: 34px;
    }

    /* Trenner zwischen Unterpunkten NICHT wie Hauptpunkte darstellen */
    .nav-dropdown > li + li {
        border-top: none;
        padding-top: 0;
        margin-top: 0;
    }

    .nav-toggle {
        display: flex;
        z-index: 1001;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(5px, -5px);
    }
    
    /* Mobile Menu Overlay */
    .nav-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0, 0, 0, 0.5);
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 998;
    }
    
    .nav-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    
    /* Hero Mobile */
    .hero {
        padding: 120px 20px 60px;
        min-height: auto;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-hashtag {
        font-size: 1.25rem;
    }
    
    /* Bento Grid Mobile */
    .bento-section {
        padding: 60px 0;
    }
    
    .bento-grid,
    .bento-diagonal {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        grid-template-areas:
            "lauftreff"
            "willkommen"
            "maps"
            "treffpunkt";
        gap: 16px;
    }
    
    .bento-card {
        padding: 24px;
    }
    
    .card-maps {
        min-height: 280px;
    }
    
    /* Section Titles Mobile */
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-title::after {
        width: 40px;
    }
    
    /* Agenda Mobile */
    .agenda-section {
        padding: 60px 0;
    }
    
    .agenda-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .agenda-card {
        padding: 20px;
        gap: 16px;
    }
    
    .agenda-date {
        width: 60px;
        height: 60px;
    }
    
    .agenda-date-day {
        font-size: 1.5rem;
    }
    
    .next-event-ribbon {
        font-size: 0.6rem;
        padding: 5px 10px;
    }
    
    /* About Mobile */
    .about-section {
        padding: 60px 0;
    }
    
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-content .section-title {
        text-align: center;
    }
    
    .about-content .section-title::after {
        margin: 16px auto 0;
    }
    
    .about-content p {
        text-align: center;
    }

    .about-content {
        text-align: center;
    }

    .about-verein-btn {
        margin-top: 24px;
    }
    
    .feature-list {
        max-width: 320px;
        margin: 0 auto;
    }
    
    .image-placeholder {
        max-width: 280px;
        margin: 0 auto;
    }
    
    /* Instagram Mobile */
    .instagram-section {
        padding: 60px 0;
    }
    
    .instagram-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
        padding: 0 20px;
    }
    
    /* Spezialtrainings Mobile */
    .specials-section {
        padding: 60px 0;
    }

    .special-featured {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 28px 24px;
    }

    .special-icon {
        width: 64px;
        height: 64px;
        font-size: 2rem;
    }

    .special-countdown {
        position: absolute;
        top: 24px;
        right: 24px;
        margin-left: 0;
        font-size: 0.8125rem;
        padding: 8px 16px;
    }

    .special-meta {
        flex-direction: column;
        gap: 8px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 40px 0;
    }
    
    .cta-card {
        padding: 40px 24px;
        border-radius: var(--radius-xl);
    }
    
    .cta-card h2 {
        font-size: 1.5rem;
    }
    
    .cta-card p {
        font-size: 0.95rem;
    }
    
    /* Footer Mobile */
    .footer {
        padding: 40px 0 20px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
    
    .footer-logo img {
        margin: 0 auto 12px;
    }
    
    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
        gap: 16px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    /* Back to Top Mobile */
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    /* Container Padding */
    .container {
        padding: 0 16px;
    }
}

/* Extra Small Devices */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-hashtag {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
    
    .bento-card h3 {
        font-size: 1.25rem;
    }
    
    .card-lauftreff .card-highlight {
        font-size: 1.1rem;
    }
    
    .agenda-card {
        flex-direction: column;
        text-align: center;
    }
    
    .agenda-date {
        margin: 0 auto;
    }
    
    .agenda-details {
        justify-content: center;
    }
    
    .agenda-calendar-btn {
        justify-content: center;
    }
    
    .nav-logo img {
        height: 80px;
        width: 80px;
        top: 25px;
    }
    
    .nav-logo {
        width: 80px;
    }
}

/* ===== Animations ===== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bento-card {
    animation: fadeInUp 0.6s ease forwards;
}

.bento-card:nth-child(1) { animation-delay: 0.1s; }
.bento-card:nth-child(2) { animation-delay: 0.2s; }
.bento-card:nth-child(3) { animation-delay: 0.3s; }
.bento-card:nth-child(4) { animation-delay: 0.4s; }
.bento-card:nth-child(5) { animation-delay: 0.5s; }
.bento-card:nth-child(6) { animation-delay: 0.6s; }

/* Scroll animations */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Verein Page ===== */
.hero-small {
    min-height: 60vh;
    padding: 160px 24px 80px;
}

.verein-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.verein-intro {
    max-width: 760px;
    margin: 0 auto 56px;
    text-align: center;
}

.verein-intro p {
    color: var(--text-light);
    font-size: 1.125rem;
    margin-bottom: 20px;
}

.verein-intro strong {
    color: var(--text-dark);
}

.verein-grid {
    grid-template-columns: repeat(3, 1fr);
}

/* Vorstand Section */
.vorstand-section {
    padding: 100px 0;
    background: var(--bg-light);
}

.vorstand-image {
    max-width: 900px;
    margin: 0 auto 72px;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    background: var(--bg-white);
}

.vorstand-image img {
    display: block;
    width: 100%;
    height: auto;
}

.vorstand-placeholder {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
    color: var(--text-light);
    font-weight: 500;
}

.vorstand-placeholder svg {
    width: 64px;
    height: 64px;
    color: var(--primary-blue);
    opacity: 0.4;
}

.vorstand-image.no-image img {
    display: none;
}

.vorstand-image.no-image .vorstand-placeholder {
    display: flex;
}

/* Ressorts */
.ressorts-title {
    text-align: center;
    margin-bottom: 40px;
}

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

.ressort-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: 20px 24px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

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

.ressort-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    background: rgba(26, 86, 219, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ressort-icon svg {
    width: 24px;
    height: 24px;
    color: var(--primary-blue);
}

.ressort-info {
    min-width: 0;
}

.ressort-info h4 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.ressort-info .ressort-name {
    font-size: 0.9375rem;
    color: var(--text-light);
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .verein-grid,
    .ressort-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-small {
        min-height: auto;
        padding: 140px 20px 60px;
    }

    .verein-section,
    .vorstand-section {
        padding: 60px 0;
    }

    .verein-grid,
    .ressort-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .ressort-card {
        padding: 16px 20px;
    }

    .verein-intro {
        margin-bottom: 40px;
    }

    .verein-intro p {
        font-size: 1rem;
    }

    .vorstand-image {
        margin-bottom: 48px;
    }
}
