/* Globale Stile */
body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    background-color: #f8f9fa; /* Heller Hintergrund */
}

main {
    flex-grow: 1;
}

/* Header Bild auf der Startseite */
.hero-header {
    background-image: url('../images/header.jpg');
    background-size: cover;
    background-position: center;
    padding: 6rem 1rem;
    position: relative;
    color: white;
    border-radius: 0.25rem; /* Hinzugefügt: Leicht abgerundete Ecken */
}

.hero-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3); /* Leichter Schatten für bessere Lesbarkeit */
}

.hero-header .container {
    position: relative;
    z-index: 2;
}

.hero-logo {
    max-width: 400px;
    width: 100%;
    margin-bottom: 1rem;
}

/* Abstand für Sektionen */
.content-section {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

/* Akkordeon (FAQ-Stil) */
.accordion-button:not(.collapsed) {
    color: #fff;
    background-color: #0BB14B; /* Vereinsfarbe aus altem CSS */
}

.accordion-button:focus {
    box-shadow: 0 0 0 0.25rem rgba(11, 177, 75, 0.25);
}

.anfahrt-skizze {
    max-width: 100%;
    height: auto;
    border: 1px solid #dee2e6;
    border-radius: .25rem;
    padding: .25rem;
    margin-top: 1rem;
}