* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, sans-serif;
    background-color: #eee9df;
    color: #222;
}

main {
    background-color: #ffffff;
}


/* ========================================

   HEADER / BANNER

======================================== */

.site-header {
    background-color: #111;
}

.site-banner {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;

    /* Schwarze Bereiche des Bildes werden abgeschnitten */
    overflow: hidden;
}

.site-banner img {
    display: block;
    width: 100%;
    height: auto;

    /* Banner auf die beiden gelben Linien zuschneiden */
    clip-path: inset(8.5% 0 16.5% 0);

    /* Freien Platz des abgeschnittenen Bereichs entfernen */
    margin-top: -8.5%;
    margin-bottom: -16.5%;
}

.mobile-header {
    display: none;
}

.main-navigation {
    max-width: 1100px;
    margin: 0 auto;

    display: flex;
    align-items: center;

    background-color: #222;
}

.main-navigation a {
    padding: 14px 18px;

    color: white;
    text-decoration: none;
    font-weight: bold;
}

.main-navigation a:hover {
    background-color: #e5a900;
    color: #111;
}

.menu-toggle {
    display: none;
}

/* ========================================
   ALLGEMEINER SEITENINHALT
======================================== */

main {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px;
    background-color: white;
}


/* ========================================

   STARTSEITE

======================================== */

.hero {
    padding: 60px 0;
}

.hero-content {
    max-width: 700px;
}

.hero-kicker {
    margin: 0 0 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-content h2 {
    margin: 0 0 20px;
    font-size: 2.5rem;
}

.hero-content>p:not(.hero-kicker) {
    margin: 0 0 28px;
    line-height: 1.6;
}

.hero-button {
    display: inline-block;
    padding: 12px 20px;

    background-color: #222;
    color: white;

    text-decoration: none;
    font-weight: bold;

    transition: background-color 0.2s ease,
                color 0.2s ease;
}

.hero-button:hover {
    background-color: #e5a900;
    color: #111;
}

/* Trainingsvideo auf der Startseite */

.home-video-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.home-video-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2rem;
}

.home-video-section video {
    display: block;
    width: 100%;
    max-width: 860px;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #000;
}

/* Weitere Startseiten-Abschnitte */

.home-intro,
.home-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.home-intro {
    border-top: none;
}

.home-intro h2,
.home-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2rem;
}

.home-intro p,
.home-section p {
    max-width: 760px;
    line-height: 1.7;
}

.section-link {
    display: inline-block;

    margin-top: 8px;

    color: #222;
    font-weight: bold;
    text-decoration: none;

    border-bottom: 2px solid #222;

    transition: color 0.2s ease,
                border-color 0.2s ease;
}

.section-link:hover {
    color: #e5a900;
    border-bottom-color: #e5a900;
}




/* ========================================
   TRAININGSPROGRAMM
======================================== */

.training-gallery {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}

.gallery-grid img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    display: block;
}

.training-videos {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.training-videos h2 {
    margin-top: 0;
    margin-bottom: 20px;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.video-card {
    min-width: 0;
}

.video-card video {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #000;
}

.video-card h3 {
    margin: 10px 0 0;
    font-size: 1.05rem;
}


/* ========================================
   TRAINER-SEITE
======================================== */

.trainer-hero {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 40px;
    align-items: center;
    padding: 20px 0 50px;
}

.trainer-hero-image img {
    width: 100%;
    display: block;
    aspect-ratio: 4 / 5;
    object-fit: cover;
}

.trainer-kicker {
    margin: 0 0 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.trainer-hero-content h2 {
    margin: 0 0 20px;
    font-size: 2.4rem;
}

.trainer-hero-content p {
    line-height: 1.7;
    max-width: 700px;
}

.trainer-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.trainer-section h2 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 2rem;
}

.trainer-list {
    margin: 0;
    padding-left: 22px;
    max-width: 760px;
}

.trainer-list li {
    margin-bottom: 10px;
    line-height: 1.6;
}

.trainer-achievements {
    max-width: 760px;
}

.trainer-achievements p {
    line-height: 1.7;
}

.trainer-image-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.trainer-image-grid figure {
    margin: 0;
}

.trainer-image-grid img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    display: block;
}

.trainer-boxer-jung {
    object-position: center 25%;
}

.trainer-timeline {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.timeline-entry {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid #e0e0e0;
}

.timeline-entry:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.timeline-year {
    font-weight: bold;
}

.timeline-entry h3 {
    margin: 0 0 8px;
    font-size: 1.15rem;
}

.timeline-entry p {
    margin: 0;
    line-height: 1.6;
    max-width: 700px;
}

.trainer-video-section video {
    width: 100%;
    max-width: 760px;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    background-color: #000;
}



/* ========================================
   VEREINS-SEITE
======================================== */

.club-hero {
    padding: 20px 0 50px;
}

.club-hero-content {
    max-width: 780px;
}

.club-kicker {
    margin: 0 0 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.club-hero-content h2 {
    margin: 0 0 20px;
    font-size: 2.4rem;
}

.club-hero-content p {
    line-height: 1.7;
    margin-bottom: 18px;
}

.club-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.club-section h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 2rem;
}

/* Unser Boxstudio */

.club-studio-image {
    margin-top: 24px;
    width: 100%;
    overflow: hidden;
}

.club-studio-image img {
    display: block;
    width: 100%;
    height: 430px;
    object-fit: cover;
}

/* Was uns ausmacht */

.club-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.club-value {
    padding: 24px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.club-value h3 {
    margin-top: 0;
    margin-bottom: 12px;
    font-size: 1.2rem;
}

.club-value p {
    margin: 0;
    line-height: 1.6;
}

/* Verein auf einen Blick */

.club-facts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.club-fact {
    padding: 22px;
    border: 1px solid #e0e0e0;
    background-color: #fafafa;
}

.club-fact-label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 0.9rem;
}

.club-fact strong {
    font-size: 1.05rem;
}

/* Allgemeiner Text */

.club-text {
    max-width: 760px;
}

.club-text p {
    line-height: 1.7;
}

/* Team-Bereich */

.club-team-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.6fr;
    gap: 40px;
    align-items: center;
}

.club-team-text {
    max-width: 650px;
}

.club-team-text p {
    margin-top: 0;
    line-height: 1.7;
}

.club-team-person {
    margin: 24px 0 18px;
}

.club-team-person span {
    display: block;
    margin-bottom: 6px;
    color: #666;
    font-size: 0.9rem;
}

.club-team-person strong {
    display: block;
    font-size: 1.05rem;
}

.club-team-image {
    display: flex;
    justify-content: flex-end;
}

.club-team-image img {
    display: block;
    width: 100%;
    max-width: 280px;
    height: 320px;
    object-fit: cover;
}

/* ========================================
   KONTAKT-SEITE
======================================== */

.contact-hero {
    padding: 20px 0 50px;
}

.contact-hero-content {
    max-width: 760px;
}

.contact-kicker {
    margin: 0 0 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.contact-hero-content h2 {
    margin: 0 0 20px;
    font-size: 2.4rem;
}

.contact-hero-content p {
    margin: 0;
    line-height: 1.7;
}

.contact-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2,
.contact-form-wrapper h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 2rem;
}

.contact-info-block {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.contact-info-block a {
    color: #222;
    text-decoration: none;
}

.contact-info-block a:hover {
    text-decoration: underline;
}

.contact-label {
    color: #666;
    font-size: 0.9rem;
}

.contact-trial {
    margin-top: 32px;
    padding: 24px;
    background-color: #f5f5f5;
    border: 1px solid #e0e0e0;
}

.contact-trial h3 {
    margin-top: 0;
    margin-bottom: 10px;
}

.contact-trial p {
    margin: 0;
    line-height: 1.6;
}

.contact-form-wrapper>p {
    margin: 0 0 24px;
    line-height: 1.7;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: bold;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    font: inherit;
    background-color: white;
}

.form-group textarea {
    resize: vertical;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: 2px solid #222;
    outline-offset: 1px;
}

.contact-submit {
    padding: 12px 20px;
    border: none;
    background-color: #222;
    color: white;
    font-weight: bold;
    cursor: pointer;
}

.contact-submit:hover {
    background-color: #444;
}

/* ========================================
   ANFAHRT-SEITE
======================================== */

.route-hero {
    padding: 20px 0 50px;
}

.route-hero-content {
    max-width: 760px;
}

.route-kicker {
    margin: 0 0 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.route-hero-content h2 {
    margin: 0 0 20px;
    font-size: 2.4rem;
}

.route-hero-content p {
    margin: 0;
    line-height: 1.7;
}

.route-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.route-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.route-info h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 2rem;
}

.route-address {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 24px;
    line-height: 1.6;
}

.route-info p {
    margin: 0 0 24px;
    line-height: 1.7;
}

.route-map {
    width: 100%;
}

.route-map iframe {
    display: block;
    width: 100%;
    height: 430px;
    border: 0;
}

/* Eingang zum Boxstudio */

.route-entrance-section h2 {
    margin-top: 0;
    margin-bottom: 24px;
    font-size: 2rem;
}

.route-entrance-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}

.route-entrance-image {
    width: 100%;
    min-width: 0;
}

.route-entrance-image img {
    display: block;
    width: 100%;
    height: 380px;
    object-fit: cover;
    object-position: center;
}

.route-entrance-text {
    max-width: 420px;
}

.route-entrance-text p {
    margin: 0;
    line-height: 1.7;
}

/* ========================================
   IMPRESSUM
======================================== */

.legal-hero {
    padding: 20px 0 40px;
}

.legal-hero-content {
    max-width: 760px;
}

.legal-kicker {
    margin: 0 0 12px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.legal-hero-content h2 {
    margin: 0;
    font-size: 2.4rem;
}

.legal-section {
    padding: 40px 0;
    border-top: 1px solid #e0e0e0;
}

.legal-content {
    max-width: 760px;
}

.legal-block {
    padding: 0 0 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #e0e0e0;
}

.legal-block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.legal-block h3 {
    margin: 0 0 12px;
    font-size: 1.2rem;
}

.legal-block p {
    margin: 0;
    line-height: 1.7;
}

.legal-block a {
    color: #222;
}


/* ========================================
   FOOTER
======================================== */

.site-footer {
    padding: 30px 40px;
    background-color: #111;
    color: white;
    text-align: center;
}

.site-footer p {
    margin: 0 0 12px;
}

.footer-navigation {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

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


/* ========================================
   MOBILE / KLEINERE BILDSCHIRME
======================================== */

@media (max-width: 768px) {

    /* Header / Banner */

    .site-banner {
        display: block;
        width: 100%;
        overflow: hidden;
    }

    .site-banner img {
        display: block;
        width: 100%;
        height: auto;

        /* Banner zwischen den gelben Linien zuschneiden */
        clip-path: inset(8.5% 0 16.5% 0);
        margin-top: -8.5%;
        margin-bottom: -16.5%;
    }

    .mobile-header {
        display: flex;
        align-items: center;
        justify-content: flex-end;

        position: relative;
        z-index: 10;

        padding: 8px 14px;

        /* Header über den unteren Teil des Banners ziehen */
        margin-top: -58px;

        background: transparent;
    }

    /* Name ausblenden, da er bereits im Banner steht */
    .mobile-header span {
        display: none;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;

        width: 46px;
        height: 46px;
        padding: 0;

        border: 2px solid #e5a900;
        border-radius: 4px;

        background-color: rgba(17, 17, 17, 0.95);

        color: #e5a900;
        font-size: 1.7rem;
        font-weight: bold;
        line-height: 1;

        cursor: pointer;

        box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    }

    .main-navigation {
        display: none;
        flex-direction: column;
        gap: 0;
        padding: 0;
    }

    .main-navigation.active {
        display: flex;
    }

    .main-navigation a {
        padding: 14px 20px;
        border-top: 1px solid #333;
    }

    main {
        padding: 24px 20px;
    }

    /* Startseite */

    .hero {
        padding: 40px 0;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    /* Trainingsvideo */

    .home-video-section {
        padding: 32px 0;
    }

    .home-video-section h2 {
        font-size: 1.6rem;
    }

    .home-video-section video {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .home-intro,
    .home-section {
        padding: 32px 0;
    }

    .home-intro h2,
    .home-section h2 {
        font-size: 1.6rem;
    }

    /* Trainingsprogramm */

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .gallery-grid img {
        height: 220px;
    }

    .video-grid {
        grid-template-columns: 1fr;
    }

    /* Trainer-Seite */

    .trainer-hero {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 10px 0 32px;
    }

    .trainer-hero-image {
        max-width: 420px;
    }

    .trainer-hero-content h2 {
        font-size: 2rem;
    }

    .trainer-section {
        padding: 32px 0;
    }

    .trainer-section h2 {
        font-size: 1.6rem;
    }

    .trainer-image-grid {
        grid-template-columns: 1fr;
    }

    .trainer-image-grid img {
        height: 320px;
    }

    .timeline-entry {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .trainer-video-section video {
        max-width: 100%;
    }

    /* Vereins-Seite */

    .club-hero {
        padding: 10px 0 32px;
    }

    .club-hero-content h2 {
        font-size: 2rem;
    }

    .club-section {
        padding: 32px 0;
    }

    .club-section h2 {
        font-size: 1.6rem;
    }

    .club-values-grid,
    .club-facts {
        grid-template-columns: 1fr;
    }

    .club-studio-image img {
        height: 280px;
    }

    .club-team-layout {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .club-team-image {
        justify-content: flex-start;
    }

    .club-team-image img {
        max-width: 320px;
        height: auto;
    }

    /* Anfahrt-Seite */

    .route-hero {
        padding: 10px 0 32px;
    }

    .route-hero-content h2 {
        font-size: 2rem;
    }

    .route-section {
        padding: 32px 0;
    }

    .route-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .route-info h2 {
        font-size: 1.6rem;
    }

    .route-map iframe {
        height: 320px;
    }


    .route-entrance-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .route-entrance-image img {
        width: 100%;
        max-width: 100%;
        height: auto;
    }

    .route-entrance-section h2 {
        font-size: 1.6rem;
    }

/* Impressum */

    .legal-hero {
        padding: 10px 0 32px;
    }

    .legal-hero-content h2 {
        font-size: 2rem;
    }

    .legal-section {
        padding: 32px 0;
    }

}

/* Netlify Honeypot – für Besucher unsichtbar */
.hidden-field {
    display: none !important;
}
