:root {
    --primary-color: #349254;
    --primary-hover: #2b7443;
    --dark-bg: #212121;
    --card-bg: #242424;
    --text-primary: #ffffff;
    --text-secondary: #bbbbbb;
}

body {
    background: var(--dark-bg);
    color: var(--text-primary);
}

h2, h3, h5 {
    color: var(--primary-color);
    font-weight: 700;
}

.section {
    margin-top: 6vh;
    margin-bottom: 6vh;
}

.shadow-card {
    background: var(--card-bg);
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

/* Hero Section */
.hero {
    text-align: center;
    margin-top: 100px;
    margin-bottom: 3rem;
}
.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.hero p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Veranstaltungskarten */
.event-card {
    background: var(--card-bg);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.event-card:hover {
    transform: translateY(-5px);
}
.event-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
}
.event-card .card-body {
    padding: 1.25rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.event-card h5 {
    margin-bottom: 0.75rem;
}
.event-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
}