@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700&display=swap');

html, body {
    height: 100%;
    margin: 0;
    padding: 0;
    font-family: 'Montserrat', Arial, sans-serif;
    color: #111;
    min-height: 100vh;
}

body {
    background: url('images/hintergrund_1.png') no-repeat center center fixed;
    background-size: cover;
    position: relative;
}

.bg-overlay {
    position: fixed;
    inset: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(255, 255, 255, 0.475);
    z-index: 0;
    pointer-events: none;
}

nav.navbar {
    width: 100%;
    background: #f9f9f9;
    color: #000000;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 2rem;
    height: 70px;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 10;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-links li a {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: color 0.2s;
}

.nav-links li a:hover {
    color: #00a2ff;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}
.logo img {
    height: 48px;
    margin: 0 1rem 0 0;
    display: block;
}

.section {
    padding: 100px 0 60px 0;
    min-height: 300px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.start-section {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.start-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.main-logo {
    width: 400px;
    max-width: 80vw;
    margin-bottom: 32px;
}

.start-content h1 {
    font-size: 2.5rem;
    margin-bottom: 18px;
    font-weight: 700;
}

.slogan {
    font-size: 1.8rem;
    font-weight: 5100;
    margin-bottom: 0;
    color: #000000;
}



.bilder-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
    padding: 24px 0;
}

.bilder-grid img {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    background: #b3b3b3;
}
.trainer-section {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0 32px 0;
    background: transparent;
}

.trainer-content {
    background: #fff;
    border-radius: 18px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
    padding: 32px 32px 24px 32px;
    max-width: 400px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.trainer-bild {
    width: 180px;
    height: 260px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    margin: 24px 0 16px 0;
}
.trainer-steckbrief {
    max-width: 350px;
    margin: 0 auto;
    font-size: 1rem;
    color: #222;
}
.trainer-steckbrief strong {
    font-size: 1.1rem;
}
.trainer-steckbrief span {
    color: #fffffff1;
    font-size: 0.98rem;
}

.kontakt-content {
    width: 100%;
    max-width: 500px;
    margin: auto;
    background: none;
    border-radius: 16px;
    padding: 32px 24px;
}

.kontakt-content h2 {
    margin-top: 0;
    font-size: 2rem;
    font-weight: 700;
}

.kontakt-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 18px;
}

.kontakt-form input,
.kontakt-form textarea {
    padding: 12px;
    border: 1px solid #ccc;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    resize: vertical;
}

.kontakt-form button {
    background: #111;
    color: #fff;
    border: none;
    padding: 14px 0;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
}

.sponsoren {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 10px;
}
.sponsoren span {
    font-weight: 600;
    margin-right: 10px;
    color: #fff;
}
.sponsoren img {
    width: 96px;
    height: 52px;
    object-fit: contain;
    background: #fff;
    border-radius: 4px;
    padding: 2px 4px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

.footer-links {
    text-align: center;
    margin-bottom: 8px;
}
.footer-links a {
    color: #001eff;
    text-decoration: none;
    margin: 0 8px;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-links a:hover {
    color: #fff;
}

.footer {
    text-align: center;
    padding: 24px 0 10px 0;
    background: #111;
    color: #fff;
    margin-top: 0;
    font-size: 1em;
    z-index: 1;
    position: relative;
}

.kontakt-form button:hover {
    background: #ffd700;
    color: #111;
}

.footer {
    text-align: center;
    padding: 24px 0 10px 0;
    background: #fafafa;
    color: #000000;
    margin-top: 0;
    font-size: 1em;
    z-index: 1;
    position: relative;
}

/* Ergänze in deiner style.css */
.stundenplan-bild {
    width: 90%;
    max-width: 1200px;
    margin-top: 32px;
    border-radius: 16px;
    opacity: 0.7;
    display: block;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.171);
}
.satzung-btn {
    display: inline-block;
    margin: 24px auto 0 auto;
    padding: 12px 28px;
    background: #111;
    color: #fff;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.satzung-btn:hover {
    background: #ffd700;
    color: #111;
}
@media (max-width: 900px) {
    .bilder-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(5, 1fr);
    }
    .main-logo {
        width: 180px;
    }
    .kontakt-content {
        padding: 24px 8px;
    }
}

@media (max-width: 600px) {
    .navbar {
        flex-direction: column;
        height: auto;
        padding: 0.5rem 1rem;
    }
    .nav-links {
        flex-direction: column;
        gap: 0.5rem;
        margin-bottom: 0.5rem;
    }
    .bilder-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(9, 1fr);
        gap: 16px;
    }
    .main-logo {
        width: 120px;
        margin-bottom: 18px;
    }
    .start-content h1 {
        font-size: 1.5rem;
    }
    .slogan {
        font-size: 1rem;
    }
}