* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

header {
    background: #01420a;
    color: white;
    text-align: center;
    padding: 20px;
}

nav {
    margin-top: 15px;
}

.event-date {
    font-size: 1.5rem;
    font-weight: bold;
}

.tab-button {
    background: transparent;
    color: white;
    border: none;
    padding: 12px 20px;
    cursor: pointer;
    font-size: 1rem;
    transition: 0.3s;
}

.tab-button:hover {
    background: rgba(255, 255, 255, 0.15);
}

.tab-button.active {
    background: white;
    color: #1f2937;
    border-radius: 6px;
}

main {
    flex: 1;
    padding: 30px;
}

.tab-content {
    display: none;
    animation: fadeIn 0.3s ease;
}

.tab-content.active {
    display: block;
}

footer {
    background-color: #01420a;
    color: white;
    padding: 20px;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
}

.footer-right ul {
    list-style: none;
    padding: 0;
}

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

.footer-right a {
    color: white;
    text-decoration: none;
}

.footer-right a:hover {
    text-decoration: underline;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(8px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#impressum {
    max-width: 1000px;
    margin: auto;
    line-height: 1.6;
}

#impressum h1,
#impressum h2 {
    margin-top: 25px;
    margin-bottom: 10px;
}

#impressum p {
    margin-bottom: 15px;
}

.kontakt-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

.kontakt-block {
    text-align: center;
}

.kontakt-block img {
    width: 200px;
    height: auto;
}

.kontakt-info {
    text-align: center;
    margin-top: 20px;
}

.kontakt-button {
    display: inline-block;
    margin-top: 15px;
    padding: 12px 20px;
    background-color: #1f2937;
    color: white;
    text-decoration: none;
    border-radius: 6px;
    transition: 0.3s;
}

.kontakt-button:hover {
    background-color: #374151;
}

#neugierig {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 30px;
}

.interessenliste {
    list-style: none;
    margin: 30px 0;
    padding: 0;
}

.interessenliste li {
    font-size: 1.2rem;
    margin: 15px 0;
}

.neugierig-text p {
    margin: 20px 0;
    line-height: 1.7;
}

.willkommen {
    font-size: 1.3rem;
    margin-top: 40px;
}

.interessenliste,
.interessenliste li {
    list-style: none;
}

.feiern-liste {
    list-style: none;
    padding: 0;
    margin: 25px 0;
}

.feiern-liste li {
    margin: 12px 0;
    font-size: 1.1rem;
}

.feiern-content {
    margin-top: 30px;
    line-height: 1.7;
}

.hallenbild {
    float: right;
    width: 450px;
    max-width: 100%;
    height: auto;
    margin-left: 25px;
    margin-bottom: 15px;
    border: 1px solid #999;
}

@media (max-width: 768px) {
    .hallenbild {
        float: none;
        display: block;
        margin: 20px auto;
        width: 100%;
    }
}

.training-container {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    flex-wrap: wrap;
}

.training-bild {
    width: 450px;
    max-width: 100%;
    height: auto;
    border: 1px solid #999;
}

.training-liste {
    flex: 1;
    min-width: 300px;
}

.training-liste li {
    margin-bottom: 25px;
    line-height: 1.6;
}

.training-liste {
    list-style: none;
    padding: 0;
}

.vorstand-container {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
    align-items: flex-start;
}

.vorstand-liste ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vorstand-liste li {
    margin-bottom: 10px;
    line-height: 1.5;
}

.vorstand-bild {
    text-align: center;
    max-width: 350px;
}

.vorstand-bild img {
    width: 100%;
    height: auto;
    border: 1px solid #999;
}

.majestaten-container {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: flex-start;
}

.majestaten-item {
    text-align: center;
    max-width: 500px;
}

.majestaten-item img {
    width: 100%;
    height: auto;
    border: 1px solid #999;
}

.majestaten-text {
    text-align: left;
    margin-top: 15px;
    line-height: 1.6;
}

.start-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.start-banner {
    width: 100%;
    max-width: 600px;
    height: auto;
}

.start-wappen {
    width: 150px;
    height: auto;
}

.start-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.start-image img {
    width: 700px;
    max-width: 100%;
    height: auto;
    border: 1px solid #999;
}

.start-text h2 {
    margin: 10px 0;
}

img {
    max-width: 100%;
    height: auto;
}

@media (max-width: 768px) {

    nav {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
    }

    .start-content,
    .training-container,
    .vorstand-container,
    .majestaten-container {
        flex-direction: column;
        align-items: center;
    }

    .start-text h1 {
    animation: pulse 2s infinite;
}



}