*{
    margin: 0;
    padding: 0;
    transition: all 0.3s ease;
}
h1, h2, h3 {
    font-family: 'Roboto', sans-serif;
    font-weight: 700; /* für eine fettgedruckte Variante */
}

p {
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    text-decoration: none;
}
body {
    font-family: 'Roboto', sans-serif;
}

:root {
    --primary-color: #f44336;
    --secondary-color: #fff3f3;
    --background-color: rgba(4, 9, 30, 0.7);
}





.header{
    min-height: 100vh;
    background-image: linear-gradient(rgba(4, 9, 30, 0.281), rgba(4, 9, 30, 0.281)), url(Images/Gruppenbild.jpeg);
    background-size: cover;
    background-position: center;
    position: relative;
    width: 100%;
}

/* Navbar Styles */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: #fff3f3;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transform: translateY(-100%); /* Initially hidden */
    transition: transform 0.3s ease-in-out;
}

/* Make navbar visible */
.navbar.visible {
    transform: translateY(0%);
}

/* Navbar too wide fix */
.navbar * {
    max-width: 100%; /* Prevent content overflow */
}

/* Logo */
.navbar .logo img {
    width: 100px;
    height: auto;
}



/* Navigation Links */
.nav-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    color: black; /* White text initially */
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: color 0.3s;
}

.nav-links a.active {
    color: #f44336; /* Highlight color */
    font-weight: bold; /* Make it bold */
}

.nav-links a:hover {
    color: #f44336da;
}

                        .nav-links a.dropdown-arrow:after {
                            content: "\25BE";
                            margin-left: 5px;
                        }


                        .nav-links ul.sub-menus{
                            height: auto;
                            overflow: hidden;
                            width: 170px;
                            background: #444444;
                            position: absolute;
                            z-index: 99;
                            display: none;
                        }
                        .nav-links ul.sub-menus li {
                            display: block;
                            text-align: left;
                            width: 100%;
                        }
                        .nav-links ul.sub-menus a {
                            color: #FFFFFF;
                            font-size: 16px;
                        }
                        .nav-links li:hover ul.sub-menus {
                            display: block
                        }
                        .nav-links ul.sub-menus a:hover{
                            background: #F2F2F2;
                            color: #444444;
                        }








                        
/* Social Media Icons */
.social-icons1 {
    padding-right: 50px;
    display: flex;
    gap: 0.5rem;
}

.social-icons1 a img {
    width: 25px;
    height: 25px;
    transition: transform 0.3s;
}

.social-icons1 a:hover img {
    transform: scale(1.2);
}

/* Mobile Responsiveness */
@media (max-width: 768px) {
    .nav-links {
        flex-direction: column;
        gap: 1rem;
    }

    .social-icons1 {
        margin-top: 1rem;
    }
}


                                    /* Mobile Navbar (Standardmäßig ausgeblendet) */
                                    .header-mobile {
                                        display: none;
                                        width: 100%;
                                        height: fit-content;
                                        overflow: visible;
                                        position: sticky;
                                    }

                                    /* Hamburger-Menu Button */
                                    #menuToggle {
                                        margin-top: 25px;
                                        display: flex;
                                        flex-direction: column;
                                        position: fixed;
                                        top: 20px;
                                        right: 20px; /* Rechts ausgerichtet */
                                        z-index: 1000;
                                        cursor: pointer;
                                    }

                                    /* Unsichtbare Checkbox für das Menü */
                                    #menuToggle input {
                                        display: flex;
                                        width: 40px;
                                        height: 32px;
                                        position: absolute;
                                        cursor: pointer;
                                        opacity: 0;
                                        z-index: 1010;
                                    }

                                    /* Hamburger-Icon */
                                    #menuToggle span {
                                        overflow: visible;
                                        display: flex;
                                        width: 35px;
                                        height: 4px;
                                        margin-bottom: 5px;
                                        position: relative;
                                        background: #010101;
                                        border-radius: 3px;
                                        z-index: 1000;
                                        transform-origin: 5px 0px;
                                        transition: all 0.3s ease-in-out;
                                    }

                                    /* Animation des Hamburger-Menüs */
                                    #menuToggle input:checked ~ span {
                                        opacity: 1;
                                        transform: rotate(45deg) translate(5px, 5px);
                                        background: #010101 }
                                                #menuToggle input:checked ~ span:nth-last-child(3) {
                                                    opacity: 0;
                                                    transform: scale(0);}
                                                #menuToggle input:checked ~ span:nth-last-child(2) {
                                                    transform: rotate(-45deg) translate(-7px, 2px);}

                                    /* Menü (Rechts ausfahrend) */
                                    #menu {
                                        position: fixed;
                                        top: 0;
                                        right: -100%; /* Startposition außerhalb des Bildschirms */
                                        width: 175px;
                                        height: fit-content;
                                        background-color: #fff3f3;
                                        box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
                                        padding-top: 50px;
                                        padding-bottom: 50px;
                                        transform: translateX(0);
                                        transition: right 0.5s ease-in-out;
                                        z-index: 999;
                                        border-radius: 10%;
                                        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
                                    }

                                    /* Menü anzeigen, wenn die Checkbox aktiv ist */
                                    #menuToggle input:checked ~ ul {
                                        right: 0;
                                    }

                                    /* Menüeinträge */
                                    #menu li {
                                        list-style-type: none;
                                        padding: 10px;
                                        text-align: center;
                                    }

                                    #menu a {
                                        text-decoration: none;
                                        font-size: 20px;
                                        color: #010101;
                                        font-weight: bold;
                                        display: block;
                                        transition: color 0.3s;
                                        align-items: center;
                                        justify-content: center;
                                    }
                                        #menu a.active{color: #f44336;}

                                    .logo-mobile{
                                        display: none;
                                    }

                                    /* Responsive Anpassung */
                                    @media screen and (max-width: 1150px) {
                                        .header {
                                            display: none; /* Desktop Navbar ausblenden */
                                        }

                                        .header-mobile {
                                            display: block; 
                                            z-index: 1000;/* Mobile Navbar aktivieren */
                                        }

                                        .logo-mobile{
                                            display: block;
                                            position: absolute;
                                            align-items: center;
                                            overflow: visible;
                                            transform: translateX(-29%) scale(0.1) translateY(-440%);
                                        }
                                        .social-icons1{
                                            display: none;
                                        }
                                        .navbar{
                                            transform: translateY(0%); /* Initially hidden */
                                            z-index: 1;
                                        }
                                        .header-mobile .social-icons {
                                            margin-top: 15px;
                                            display: flex;
                                            align-items: center;
                                            justify-content: center;
                                            flex-direction: row;
                                        }
                                    }




.text-box{
    width: 90%;
    color:#fff;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    text-align: center;
    }
    .text-box h1{
        font-size: 62px;
    }
    .text-box p{
        margin: 10px 0 40px;
        font-size: 14px;
        color: #fff
    }

.hero-btn{                      /*Erfahren Sie Mehr! - Button*/
    display: inline-block;
    text-decoration: none;
    color: #fff;
    border: 1px solid #fff;
    padding: 12px 34px;
    font-size: 13px;
    background: transparent;
    position: relative;
    cursor: pointer;
    }
    .hero-btn:hover{
        border: 1px solid #f44336;
        background: #f44336;
        transition: 1s;
        text-decoration: none;
    }
    nav .fa{
        display: none;
    }


@media(max-width: 700px){       /*für kleine Bildschirme*/
    .text-box h1{
        font-size: 20px;
     }
    .nav-links ul li{
     display: block;
    }
    .nav-links{
        position: absolute;
        background: #f44336;
        height: 100vh;
        width: 200px;
        top: 0;
        right: -200px;
        text-align: left;
        z-index: 2;
        transition: 1s;
    }
    nav .fa{
        display: block;
        color: #fff;
        margin: 10px;
        font-size: 22px;
        cursor: pointer;
    }
    .nav-links ul{
        padding: 30px;      /*abstand Schrift zu Rand*/
    }
}


/*Angebote*/
.Angebote{
        width: 80%;
        margin: auto;
        text-align: center;
        padding-top: 100px;
    }
    h1{
        font-size: 36px;
        font-weight: 600;
    }
    p{
        color: #777;
        font-size: 14px;
        font-weight: 300;
        line-height: 22px;
        padding: 10px;
    }

    .row{
        margin-top: 5%;
        display: flex;
        justify-content: space-between;
    }
   

    .course-col{
        flex-basis: 31%;
        background: #fff3f3;
        border-radius: 10px;
        margin-top: 5%;
        padding: 20px 12px;
        box-sizing: border-box;
        transition: 0.5s;
    }
        h3{
            text-align: center;
            font-weight: 600;
            margin: 10px 0;
        }
        .course-col:hover{
            box-shadow: 0 0 20px 0px rgba(0,0,0,0.2);

        }
@media(max-width: 700px){
    .row{
        flex-direction: column;
    }
}

/*Kurse*/

.Kurse {
    text-align: center;
        }
        .row {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0.5px;
        }
        .Kurse-col {
            flex: 1;
            min-width: 200px;
            max-width: 300px;
            position: relative;
            overflow: hidden; /* Damit der Hover-Effekt sauber bleibt */
            border-radius: 15px; /* Runde Ecken */
            transition: transform 0.3s ease; /* Weiche Animation für Hover-Effekt */
            margin: 20px;
        }
        .Kurse-col img {
            width: 100%;
            height: auto;
            border-radius: 15px; /* Runde Ecken für das Bild */
        }
        .Kurse-col .layer {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-color: rgba(176, 74, 56, 0.5); /* Halbdurchsichtige Überlagerung */
            color: white;
            display: flex;
            justify-content: center;
            align-items: center;
            opacity: 0; /* Initial unsichtbar */
            transition: opacity 0.3s ease; /* Weiche Überblendung */
            border-radius: 15px; /* Runde Ecken für die Layer */
        }
        .Kurse-col h3 {
            margin: 0 5px;
            font-size: 1.5em;
        }
        /* Hover-Effekt */
        .Kurse-col:hover {
            transform: scale(1.05); /* Vergrößerung beim Hover */
        }
        .Kurse-col:hover .layer {
            opacity: 1; /* Layer wird beim Hover sichtbar */
        }
        @media(max-width: 700px){
            .Kurse{
                margin-top: 100px;
                display: flex;
                flex-wrap: wrap;
                justify-content: center;
                gap: 0.5px;
            }
            .Kurse-col{
                min-width: 100px;
                max-width: 200px;
                width: auto;
                height: 50%;
                display: flex;
                flex: 0.5;
                margin: 0;
                flex-direction: column;
            }
            .Kurse-col .layer{
            opacity: 1;
            background-color: #22222265;
            }
            .Kurse-col h3{
                transform: scale(0.5);
            }
        }

/*News*/
.Neues{
    width: 80%;
    margin: auto;
    text-align: center;
    padding-top: 100px;
}
    .Neues-col{
        .Neues-col {
            width: 300px;
            margin: 0 auto;
            text-align: center;
        }
     
    }
    .Neues-col img{
        width: 100%;
        border-radius: 10px;
    }


/*Kooperationen*/
.testimonials {
    text-decoration: none;
    width: 80%; /* Set the width of the testimonials section */
    margin: auto; /* Center the testimonials section */
    padding-top: 100px; /* Space above the section */
    text-align: center; /* Center the title and any other centered content */
}

.row {
    text-decoration: none;
    display: flex; /* Use Flexbox for the child testimonial columns */
    flex-wrap: wrap; /* Allow items to wrap to the next line on smaller screens */
    justify-content: space-between; /* Space between items */
}

.testimonial-col {
    text-decoration: none;
    flex-basis: 30%; /* Set the basis for Flexbox items (adjust for three items in a row) */
    border-radius: 10px; /* Rounded corners */
    margin-bottom: 5%; /* Space below each testimonial */
    text-align: left; /* Align text to the left */
    background: #fff3f3; /* Light red background */
    padding: 25px; /* Padding inside the testimonial box */
    cursor: pointer; /* Change cursor to pointer on hover */
    display: flex; /* Use Flexbox for the content inside */
    align-items: center; /* Center content vertically */
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); /* Add slight shadow for depth */
    transition: transform 0.2s; /* Add transition for hover effect */
}

.testimonial-col:hover {
    text-decoration: none;
    transform: translateY(-5px); /* Slightly raise the box on hover */
}

.testimonial-col img {
    text-decoration: none;
    height: 40px; /* Set the height of the image */
    margin-left: 5px; /* Space on the left of the image */
    margin-right: 15px; /* Space on the right of the image */
    border-radius: 50%; /* Make the image circular */
}

.testimonial-col p {
    text-decoration: none;
    padding: 0; /* No padding for paragraphs */
    margin: 0; /* No margin for paragraphs */
    font-size: 14px; /* Adjust font size */
    color: #333; /* Dark gray text for better readability */
}

.testimonial-col h3 {
    text-decoration: none;
    margin-top: 15px; /* Space above the name */
    text-align: left; /* Left align the name */
    font-weight: bold; /* Make the name bold */
    color: #d00; /* Dark red color for the name */
}

/* Remove underline from links */
.testimonial-col a {
    text-decoration: none; /* No underline for links */
    color: inherit; /* Inherit the color from the parent */
}
/* General reset for links inside testimonials */
.testimonial-col a, 
.testimonial-col a:link, 
.testimonial-col a:visited, 
.testimonial-col a:hover, 
.testimonial-col a:active {
    text-decoration: none !important; /* Forcefully remove any underlining */
    color: inherit; /* Ensure links take on the parent color */
}

/* Ensure hover state doesn't add underline */
.testimonial-col a:hover {
    text-decoration: none;
    color: #f44336; /* Optional hover color for better UX */
}

/* If links are nested deeper, extend the rule */
.testimonials .row .testimonial-col a {
    text-decoration: none !important;
}

@media(max-width: 700px){
    .testimonial-col img{
        margin-left: 0px;
        margin-right: 15px;
    }
}


/*Interesse Geweckt?*/
.cta{
    margin: 100px auto;
    width: 80%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.281), rgba(4, 9, 30, 0.281)), url(Images/jacken.jpg);
    background-position: center;
    background-size: cover;
    border-radius: 10px;
    text-align: center;
    padding: 100px 0;
}
    .cta h1{
        color: #fff;
        margin-bottom: 40px;
        padding: 0;
    }
@media (max-width: 700px){
    .cta h1{
        font-size: 24px;
    }
}

/*Fußzeile*/
footer {
    background: #fff3f3;
    padding: 2rem 1rem;
    text-align: center;
}

footer a{
    color: #222222;
    text-decoration: none;
    
}

footer a:hover{
    color: #f44336;
}

.social-icons img {
    width: 30px;
    margin: 0 10px;
}
.social-icons a:hover img {
    transform: scale(1.2);
}


/*Angebote - Seite*/
.sub-header{
    height: 50vh;
    width: 100%;
    background-image: linear-gradient(rgba(4, 9, 30, 0.281), rgba(4, 9, 30, 0.281)), url(Images/Gruppenbild.jpeg);
    background-position: top;
    background-size: cover;
    text-align: center;
    color: #fff;
}
.sub-header h1{
    padding-top: 225px;
    text-shadow: -1px -1px 1px rgba(255,255,255,.1), 1px 1px 1px rgba(0,0,0,.5), 2px 2px 2px rgba(206,89,55,0.1);
}
    

    .angebote{
        width: 80%;
        margin: auto;
        padding-top: 80px;
        padding-bottom: 50px;
    }
    .angebote-col{
        flex-basis: 48%;
        padding: 30px 2px;
    }
    .angebote-col img{
        width: 100%;
    }
    .angebote-col h1{
        padding-top: 0;
    }
    .angebote-col p{
        padding: 15px 0 25px;
    }
    .red-btn{
        border: 1px solid #f44336;
        background: transparent;
        color: #f44336;
    }
    .red-btn:hover{
        color: #fff;
    }


/*Kontakt Info*/
.location {
    display: flex;
    flex-direction: column; /* Inhalte untereinander anordnen */
    align-items: center; /* Alle Elemente zentrieren */
    gap: 20px; /* Abstand zwischen den Elementen */
    padding: 20px;
    margin-top: 2rem;
}

.location h1 {
    text-align: center;
    width: 100%;
    padding: 1rem;
}

.location-content {
    display: flex;
    justify-content: cneter;
    align-items: center;
    gap: 50px;
    width: 100%;
}

.location-content iframe {
    margin-left: 50px;
    flex: 0.5;
    max-width: 100%;
    border-radius: 8px;
}

.contact-info {
    flex: 1;
    padding-left: 20px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-info h4 {
    margin: 10px 0;
    font-size: 1.2em;
    display: flex;
    align-items: center;
}

.contact-info h4 img {
    margin-right: 10px;
    width: 25px;
    height: 20px;
}

.contact-info p {
    margin-bottom: 15px;
    font-size: 1em;
}

.contact-info a {
    text-decoration: none;
    margin-bottom: 15px;
    font-size: 1em;
    transition: 0.3s;
}

.contact-info a:hover {
    transform: translateY(-3px);
}

  

                                @media (max-width: 768px) {
                                    .location {
                                        flex-direction: column; /* Stapelt die Inhalte vertikal */
                                        align-items: center; /* Zentriert die Inhalte */
                                        gap: 20px; /* Verringert den Abstand */
                                        padding: 15px;
                                    }

                                    .location-content {
                                        flex-direction: column; /* Karte und Kontaktinfos untereinander */
                                        align-items: center; /* Zentriert die Inhalte */
                                        width: 100%;
                                    }

                                    .location-content iframe {
                                        width: 90%; /* Verkleinert die Karte */
                                        height: 250px; /* Reduziert die Höhe */
                                        margin-left: 0; /* Entfernt linken Abstand */
                                    }

                                    .contact-info {
                                        padding-left: 0;
                                        text-align: center; /* Zentriert den Text */
                                        align-items: center; /* Zentriert die Inhalte */
                                    }

                                    .contact-info h4 {
                                        justify-content: center; /* Text und Icon zentriert */
                                    }

                                    .contact-info h4 img {
                                        width: 20px; /* Kleinere Icons */
                                        height: 18px;
                                    }

                                    .contact-info p,
                                    .contact-info a {
                                        font-size: 0.9em; /* Leicht verkleinerte Schrift */
                                    }

                                    .contact-info a:hover {
                                        transform: translateY(-2px);
                                    }
                                }
  
               
   
.Kursplan {
    margin: auto;
    align-self: center;
    width: 80%;
    border-width: 1px;
    border-style: none;
    border-color: #222222;
    border-collapse: separate;
    background-color: #FFFFFF;
    color: #222222;
  }
  
  .Kursplan th, .Kursplan td {
    border-width: 1px;
    border-style: none;
    border-color: #222222;
  }
  
  .Kursplan thead {
    background-color: #ffffff;
    color: #222222;
  }
  
  


.angebote {
    padding: 20px;
    margin: auto;
}

.section:nth-child(even) {
    background-color: #f7f7f7;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 20px;
}

.content {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}
.Liste {
    color: #777;
    padding-left: 50px;
}
.text-content {
    flex: 1 1 50%;
}
    .text-content a{
        text-decoration: none;
        color: #010101;
        transition: color 0.2s ease;;
    }
    
    .text-content a:hover h5 {
        color: #e74c3c;
    }
    
.video {
    flex: 1 1 40%;
}

.video iframe {
    width: 100%;
    height: 300px;
    border: none;
}

.btn-group {
    margin: 20px 0;
}

.btn {
    display: inline-block;
    background-color: #f44336;
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    margin-right: 10px;
    transition: transform 0.3s;

}

.btn:hover {
    transform: scale(1.05);
}

.coaches {
    display: flex;
    gap: 15px;
    margin-top: 20px;
                    }
                    .coach {
                        flex: 1;
                        text-align: center;
                    }
                    .image-container {
                        position: relative;
                        display: inline-block;
                    }
                    .coach img {
                        border-radius: 50%;
                        width: 100px;
                        height: 100px;
                        object-fit: cover;
                        background: #6c5e41;
                        transition: 0.3s ease-in-out;
                    }
                    .plus-icon {
                        position: absolute;
                        top: 50%;
                        left: 50%;
                        transform: translate(-50%, -50%);
                        font-size: 24px;
                        font-weight: bold;
                        color: white;
                        opacity: 0;
                        transition: opacity 0.3s ease-in-out;
                    }
                    .image-container:hover img {
                        filter: brightness(0.7);
                    }
                    .image-container:hover .plus-icon {
                        opacity: 1;
                    }
                    .coach-link {
                        text-decoration: none;
                    }
                    .coach-name {
                        margin-top: 10px;
                        font-weight: bold;
                        font-size: 0.9rem;
                    }

                    .Team_Img {
                        width: 300px;
                        border-radius: 10px;
                        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
                    }




  
.container h1 {
    text-align: center;
    margin-top: 30px;
    font-size: 2rem;
    color: #333;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
  }
  
  .Kursplan {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .Kursplan thead {
    background-color: #f44336;
    color: white;
  }
  
  .Kursplan th,
  .Kursplan td {
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .Kursplan th {
    text-transform: uppercase;
  }
  
  .Kursplan tbody tr {
    transition: background-color 0.3s ease;
  }
  
  .Kursplan tbody tr:hover {
    background-color: #f9f9f9;
  }
  
  .Kursplan td {
    font-size: 0.9rem;
    color: #333;
  }
  
  /* Farben für die Kursarten */
  .rock{
    background-color: #d1e7f8;
    font-weight: bold;
  }
  
  .hip-hop {
    background-color: #fff2b0;
    font-weight: bold;
  }
  
  .acrobatics {
    background-color: #d8f8d5;
    font-weight: bold;
  }
  
  .ballet {
    background-color: #f8d0e6;
    font-weight: bold;
  }
  

                                            /* Mobile Anpassungen */
                                            @media (max-width: 768px) {
                                                
                                                .container {
                                                    padding: 10px;
                                                }
                                            
                                                .Kursplan {
                                                    width: 100%;
                                                    font-size: 0.8rem; /* Kleinere Schrift für bessere Lesbarkeit */
                                                    overflow-x: auto; /* Falls nötig, wird horizontales Scrollen aktiviert */
                                                    display: block; /* Verhindert Layout-Probleme */
                                                }
                                            
                                                .Kursplan th,
                                                .Kursplan td {
                                                    padding: 10px; /* Weniger Padding für kompaktere Darstellung */
                                                    font-size: 0.8rem;
                                                    white-space: normal; /* Zeilenumbrüche in Zellen erlauben */
                                                    word-wrap: break-word; /* Längere Wörter umbrechen */
                                                }
                                            
                                                .Kursplan thead {
                                                    font-size: 0.85rem; /* Etwas kleinere Kopfzeilen-Schrift */
                                                }
                                            
                                                .Kursplan tbody tr {
                                                    display: table-row;
                                                }
                                            
                                                .Kursplan td {
                                                    font-size: 0.85rem;
                                                }
                                                
                                                 
                                                    .content {
                                                        flex-direction: column;
                                                        align-items: center;
                                                        text-align: center;
                                                        transform: scale(0.8);
                                                    }
                                                
                                                    .text-content,
                                                    .video {
                                                        flex: 1 1 100%;
                                                    }
                                                
                                                    .video iframe {
                                                        height: 200px; /* Kleinere Höhe für mobile Ansicht */
                                                    }
                                                
                                                    .coaches {
                                                        flex-direction: column;
                                                        align-items: center;
                                                    }
                                                
                                                    .coach {
                                                        width: 80%;
                                                    }
                                                
                                                    .coach img {
                                                        width: 80px;
                                                        height: 80px;
                                                    }
                                                
                                                    .btn-group {
                                                        text-align: center;
                                                    }
                                                
                                                    .btn {
                                                        display: block;
                                                        width: 80%;
                                                        margin: 10px auto;
                                                    }
                                                }
                                                
                                            
                                                
                                            
  




.description {
    padding: 20px;
    text-align: center;
}

.description p {
    max-width: 800px;
    margin: 0 auto;
    font-size: 1rem;
    color: #333;
}

.pricelist {
    text-align: center;
    margin: auto;
    padding: 20px;
    background-color: #fff;
}

.pricelist h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
    color: #222222;
}



.price-box {
    width: 50%;
    margin: auto;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
  }
  
  .price-box thead {
    background-color: #f44336;
    color: white;
  }
  
  .price-box th,
  .price-box td {
    padding: 15px;
    text-align: center;
    font-size: 0.9rem;
  }
  
  .price-box th {
    text-transform: uppercase;
  }


.price-bar {
    width: 100%;
    height: 10px;
    background: linear-gradient(to right, #e74c3c, #f7cac9);
    margin-bottom: 10px;
}

.documents {
    text-align: center;
    padding: 20px 0;
}

.documents h2 {
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.doc-container {
    display: flex;
    justify-content: center;
    gap: 20px;
    transition: transform 0.3s;
}
.doc-container :hover{
    transform: translateY(-5px);
}

.doc-box {
    width: 150px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
}

.doc-box p {
    margin: 0;
    font-size: 0.9rem;
}



.navbar2 {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.5rem 2rem;
    background-color: #fff3f3;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

/* Make navbar visible */
.navbar2.visible {
    transform: translateY(0%);
}

/* Navbar too wide fix */
.navbar2 * {
    max-width: 100%; /* Prevent content overflow */
}

/* Logo */
.navbar2 .logo img {
    width: 100px;
    height: auto;
}
                        /* Dropdown-Menü */
                        .nav-links {
                            list-style: none;
                            display: flex;
                            gap: 20px;
                        }

                        .nav-links li {
                            position: relative;
                        }
                        /* Dropdown-Menü standardmäßig verstecken */
                        .dropdown-menu {
                            display: none;
                            position: absolute;
                            top: 100%;
                            left: 0;
                            background-color: #fff3f3;
                            box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
                            min-width: 180px;
                            border-radius: 5px;
                            overflow: hidden;
                            z-index: 1000;
                        }

                        /* Dropdown-Menü anzeigen, wenn Maus über das Eltern-Element fährt */
                        .dropdown:hover .dropdown-menu {
                            display: block;
                        }

                        /* Stile für Dropdown-Elemente */
                        .dropdown-menu li {
                            display: block;
                            width: 100%;
                        }

                        .dropdown-menu li a {
                            display: block;
                            padding: 10px 15px;
                            color: #333;
                            text-decoration: none;
                            transition: background 0.3s;
                        }

                        .dropdown-menu li a:hover {
                            background-color: #f44336;
                            color: #FFFFFF;
                        }


                    




.content {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 100px 0;
    }
    .video-container{
        width: 300px;
        height: 450px;
        overflow: hidden;
        border-radius: 10px;
        box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
    }
    .video-container video {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
   
             /* Responsive Anpassung */
             @media screen and (max-width: 1300px) {
                .video-container {
                    width: 70%;
                    height: 70%;
                }
             }


 .Impressum{
                padding-bottom: 50px;
                padding-left: 3rem;
                padding-right: 3rem;
            }
                .Impressum h3{
                    color: #f5c000;
                }

.team-container {
                    display: flex;
                    justify-content: center;
                    gap: 20px;
                    padding: 1rem;
                }
                
                .team-member {
                    position: relative;
                    width: 200px;
                    cursor: pointer;
                    overflow: hidden;
                    border-radius: 10px;
                    transition: transform 0.3s ease-in-out;
                }
                
                .team-member img {
                    width: 100%;
                    display: block;
                    border-radius: 10px;
                    filter: brightness(0.7);
                    transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
                }
                
                .overlay {
                    position: absolute;
                    top: 50%;
                    left: 50%;
                    transform: translate(-50%, -50%);
                    font-size: 24px;
                    font-weight: bold;
                    color: white;
                    opacity: 1;
                    transition: transform 0.4s ease-in-out;
                }
                
                /* Hover-Effekte */
                .team-member:hover {
                    transform: scale(1.05) translateY(-5px);
                }
                
                .team-member:hover img {
                    filter: brightness(1);
                    transform: scale(1.03);
                }
                
                .team-member:hover .overlay {
                    transform: translate(-50%, -50%) scale(1.03);
                }
                
                .coach-link {
                    text-decoration: none;
                }
                

                        .team-container {
    display: flex;
    justify-content: center;
    flex-wrap: wrap; /* bricht automatisch um */
    gap: 20px;
    padding: 1rem;
}

                                .team-member {
                                    position: relative;
                                    flex: 1 1 250px;   /* mindestens 250px breit, wächst aber flexibel */
                                    max-width: 100%;   /* nie über Bildschirmbreite */
                                    cursor: pointer;
                                    overflow: hidden;
                                    border-radius: 10px;
                                    transition: transform 0.3s ease-in-out;
                                }

                                .team-member img {
                                    width: 100%;
                                    height: auto;
                                    display: block;
                                    border-radius: 10px;
                                    filter: brightness(0.7);
                                    transition: transform 0.4s ease-in-out, filter 0.4s ease-in-out;
                                }

                                .overlay {
                                    position: absolute;
                                    top: 50%;
                                    left: 50%;
                                    transform: translate(-50%, -50%);
                                    font-size: clamp(16px, 4vw, 24px); /* skaliert je nach Bildschirmbreite */
                                    font-weight: bold;
                                    color: white;
                                    opacity: 1;
                                    transition: transform 0.4s ease-in-out;
                                }

                                /* Hover-Effekte */
                                .team-member:hover {
                                    transform: scale(1.05) translateY(-5px);
                                }

                                .team-member:hover img {
                                    filter: brightness(1);
                                    transform: scale(1.03);
                                }

                                .team-member:hover .overlay {
                                    transform: translate(-50%, -50%) scale(1.03);
                                }

                                .coach-link {
                                    text-decoration: none;
                                }

                                /* Responsive Verhalten */
                                @media (max-width: 1024px) {
                                    .team-container {
                                        justify-content: center;
                                    }

                                    .team-member {
                                        flex: 1 1 45%;  /* zwei Spalten auf Tablets */
                                    }
                                }

                                @media (max-width: 600px) {
                                    .team-member {
                                        flex: 1 1 100%; /* eine Spalte auf Handys */
                                    }
                                }




/*Bildergalerie*/
            .gallery {
                margin-top: 100px;
                column-count: 3;
                column-gap: 10px;
                padding: 20px;
            }
            .gallery img {
                width: 100%;
                break-inside: avoid;
                margin-bottom: 10px;
                display: block;
                border-radius: 5px;
            }
            @media (max-width: 1024px) {
                .gallery {
                    column-count: 2;
                }
            }
            @media (max-width: 600px) {
                .gallery {
                    column-count: 1;
                }
            }
       


        .Verbaende-div {
            padding-top: 2rem; 
                    }
                    .Verbaende {
                        padding-bottom: 2rem;
                        display: flex;
                        justify-content: center;
                        align-items: center;
                        gap: 20px;
                    }
                    .Verbaende-div h1{
                        text-align: center;
                    }
                    .Verbaende a {
                        display: flex;
                        background-color: #fff;
                        padding: 15px;
                        text-decoration: none;
                        border-radius: 10%;
                        font-weight: bold;
                        transition: transform 0.3s;
                        box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
                        align-items: center;  /* Bild und Text mittig */
                        justify-content: center;
                    }
        
                    .Verbaende a:hover {
                        transform: scale(1.05);
                    }
        
                    .Verbaende img {
                        width: 150px; /* Ein wenig kleiner, um Gleichmäßigkeit zu bewahren */
                        height: auto;
                            }
            
            
        
        


