
html, body {
    background-color: #121212;
    color: #e0e0e0;
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5 {
    color: #ffffff;
}

p, li, a {
    color: #cccccc;
}

a:hover {
    color: #4a90e2;
}

.navbar {
    background-color: #1e1e1e;
}

.navbar .navbar-brand, .navbar-nav .nav-link {
    color: #e0e0e0;
}

.navbar .nav-link:hover {
    color: #4a90e2;
}

footer {
    background-color: #1e1e1e;
    color: #999999;
}

footer a {
    color: #cccccc;
}

footer a:hover {
    color: #4a90e2;
}

.btn-primary {
    background-color: #4a90e2;
    border-color: #4a90e2;
}

.btn-primary:hover {
    background-color: #357ABD;
    border-color: #357ABD;
}

.section {
    padding: 60px 0;
}

.section-dark {
    background-color: #1e1e1e;
    width: 100%;
}

.verein-img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 50%;
    border: 3px solid #444;
}

/* Slideshow mit Blur */
.hero {
    position: relative;
    width: 100vw; /* GANZE Bildschirmbreite */
    height: 70vh;  /* 70% Höhe des Bildschirms */
    overflow: hidden;
}

.hero-facts {
    position: absolute;
    top: 1rem;
    left: 5vw; /* oder: right: 5vw; für rechtsbündig */
    z-index: 3;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    font-size: 1rem;
    background-color: rgba(0, 0, 0, 0.5); /* leichte Hinterlegung */
    padding: 0.5rem 1rem;
    border-radius: 8px;
}

.hero-facts span {
    color: #ffffff;
}

.hero-facts strong {
    color: #4a90e2;
}

.hero .background {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero .background img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: blur(3px) brightness(0.7);
    opacity: 0;
    transition: opacity 2s ease-in-out;
}

.hero .background img.active {
    opacity: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: flex-start; /* Links ausrichten */
    height: 100%;
    gap: 2rem;
    padding: 1rem 5vw; /* Abstand links + rechts */
    text-align: left;
    flex-wrap: wrap;
}

.hero-content img {
    width: 150px;
    height: auto;
    margin-bottom: 1rem;
}

.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.2rem;
}

@keyframes fade {
    0%, 100% { opacity: 0; }
    10%, 90% { opacity: 1; }
}

.verein-link {
    text-decoration: none;
    color: inherit;
}

.hero-location {
    position: absolute;
    bottom: 20px;
    right: 5vw;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    line-height: 1.4;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
    z-index: 3;
    color: #ffffff;
}

.hero-location strong {
    color: #4a90e2;
}