
        /* Grundlegende Stil-Anpassungen für den gesamten Körper */
        body {
            font-family: 'Inter', sans-serif;
            background-color: #1a1a1a;
            color: #f0f0f0;
            margin: 0;
            padding: 0;
            line-height: 1.6;
            scroll-behavior: smooth;
            overflow-x: hidden;
        }

        .underline {
    display: block;
    width: 300px;
    height: 4px;
    background-color: #f0f0f0; 
    margin: 2rem auto;
    border-radius: 2px;
}

        /* Container-Stile für flexible Layouts */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 2rem;
        }

        /* Header und Navigation */
        .header {
            background-color: rgba(0, 0, 0, 0.7);
            position: fixed;
            width: 100%;
            left: 0;
            top: 0;
            z-index: 1000;
            padding: 0;
            box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
        }

         .navbar {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            padding: 1.5rem 2rem;
        }

        .logo {
            flex: 0 0 auto;
        }

        .logo img {
            height: 100px;
        }

        .nav-center {
        flex: 1 1 auto;
        display: flex;
        justify-content: center;
        }

        .nav-links {
            list-style: none;
            display: flex;
            gap: 2rem;
            margin: 0;
            padding: 0;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 700;
            transition: color 0.3s;
        }

        .nav-links a:hover {
            color: #888;
        }

        .social-icons {
            flex: 0 0 auto;
            display: flex;
            gap: 1rem;
            justify-content: flex-end;
            align-items: center;
            min-width: 120px; /* Mindestbreite für die Social Icons */
        }

        .icon {
            color: #fff;
            font-size: 1.5rem;
            transition: color 0.3s;
        }
        
        .icon:hover {
            color: #888;
        }

        /* Hero-Sektion mit Video-Hintergrund */
        .hero-section {
            position: relative;
            width: 100%;
            height: 100vh;
            overflow: hidden;
            display: flex;
            justify-content: center;
            align-items: center;
            text-align: center;
            padding: 0 !important;
        }

        .hero-section video {
            position: absolute;
            top: 50%;
            left: 50%;
            min-width: 100%;
            min-height: 100%;
            width: auto;
            height: auto;
            z-index: -1;
            transform: translate(-50%, -50%);
        }

        .hero-section::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            z-index: 0;
        }

        .hero-content {
    position: relative;
    z-index: 1;
    color: #fff;
    padding: 2rem 1rem;
    text-align: center;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
        }

        .hero-content h1 {
            font-size: 3rem;
            margin-bottom: 0.5rem;
        }
       
        .hero-content .adjektive {
            font-size: 1.5rem;
            font-style: italic;
            color: #ccc;
        }

        .hero-content .underline {
            display: block;
            width: 100px;
            height: 4px;
            background-color: #f0f0f0;
            margin: 1rem auto;
            border-radius: 2px;
        }

        .cta-button {
            display: inline-block;
            background-color: #fff;
            color: #1a1a1a;
            padding: 0.75rem 2rem;
            text-decoration: none;
            border-radius: 50px;
            font-weight: 700;
            transition: background-color 0.3s, color 0.3s;
            margin-top: 1rem;
            margin: 0 auto; 
        }

        .cta-button:hover {
            background-color: #ccc;
        }
        
        /* Allgemeine Sektionen */
        section {
            padding: 4rem 2rem;
            text-align: center;
        }

        /* About-Sektion */
        .about-me {
            display: flex;
            gap: 2rem;
            align-items: center;
            flex-wrap: wrap;
            justify-content: center; /* Zentriert die Elemente horizontal */
        }
        
        .image-section {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 1rem;
        }
        
.small-ddc {
    font-size: 0.65em;
    opacity: 0.7;
}

        .image-section img,
        .references-images img {
            width: 100%;
            max-width: 300px;
            height: auto;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            transition: transform 0.3s;
        }

        .image-section img:hover,
        .references-images img:hover {
            transform: scale(1.10);
        }

        .text-section {
            max-width: 600px;
            text-align: left;
        }
        
        .text-section ul {
            list-style: none;
            padding: 0;
            columns: 2;
        }

        .text-section li {
            margin-bottom: 0.5rem;
        }

        /* Show-Sektion mit Video-Galerie */
        .video-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: center;
        }

        .video-item {
            width: 500px;
            max-width: 800px;      /* Maximalbreite für Videos */
            aspect-ratio: 16/9;    /* Modernes Seitenverhältnis */
            position: relative;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
            overflow: hidden;
            margin: 0 1rem;
        }

        .video-item iframe {
            width: 100%;
            height: 100%;
            border-radius: 10px;
            position: absolute;
            top: 0;
            left: 0;
        }

        /* Vollflächiges Bild-Banner */
       .full-width-image-banner {
    height: 600px;
    background-image: url(Content/BannerDance.jpg);
    background-size: cover;
    background-position: center;
    margin-top: 3rem;      /* Abstand über dem Banner */
    margin-bottom: 3rem;   /* Abstand unter dem Banner */
    margin: 0;
    padding: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

        /* Kontaktformular */
        .contact-form {
            max-width: 600px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            text-align: left;
            gap: 1rem;
        }

        .contact-form label {
            font-weight: 700;
        }

        .contact-form input, .contact-form textarea {
            padding: 0.75rem;
            border: 1px solid #555;
            background-color: #333;
            color: #f0f0f0;
            border-radius: 5px;
        }

        .contact-form button {
            cursor: pointer;
            border: none;
        }
        
        .contact-form textarea {
        min-height: 120px; /* vorher keine Höhe, jetzt größer */
        resize: vertical;  /* Nutzer kann die Höhe selbst anpassen */
        padding: 0.75rem;
        border: 1px solid #555;
        background-color: #333;
        color: #f0f0f0;
        border-radius: 5px;
        }

        /* Footer-Stile */
        .footer {
            text-align: center;
            padding: 2rem;
            background-color: #111;
            width: 100%;
            position: relative;
        }
        
        .footer a {
            color: #f0f0f0;
            text-decoration: none;
            transition: color 0.3s;
        }
        
        .footer a:hover {
            color: #888;
        }
        
        .references-layout {
        display: flex;
        justify-content: center;
        align-items: flex-start;
        gap: 3rem;
        flex-wrap: wrap;
        text-align: center;
        }

        .references-images {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
        }

        .references-images img {
        width: 300px;
        max-width: 100%;
        height: auto;
        border-radius: 5px;
        box-shadow: 0 4px 10px rgba(0,0,0,0.3);
        margin-bottom: 1rem;
        }

        .references-list {
        flex: 1 1 300px;
        display: flex;
        flex-direction: column;
        align-items: center;
        }

        .references-list ul {
        list-style: none;
        padding: 0;
        margin: 0;
        text-align: center;
        }

        .references-list li {
        margin-bottom: 0.5rem;
        }

        /* Mobile Anpassung */
        @media (max-width: 900px) {
        .references-layout {
        flex-direction: column;
        align-items: center;
        gap: 2rem;
        }
        .references-images img {
        width: 100%;
        max-width: 250px;
        }
        }

        #about,
        #about-references,
        #shows,
        #contact,
        #workshops
        {
        scroll-margin-top: 120px;
        }
        
        .references-carousel {
    display: none;
}

        /* Mobile Optimierung */
        @media (max-width: 768px) {
            .logo img {
            margin-bottom: 0.1rem; /* Weniger Abstand unter dem Logo */
            }
            .nav-links {
            margin-top: 0.1rem;    /* Weniger Abstand über den Navlinks */
            }

            .hero-content {
            max-width: 95vw;
            padding: 1rem;
            padding-top: 9rem;
            }
            .hero-content h1 {
            font-size: 2rem;
            }

            .full-width-image-banner {
            height: 100px;
            }

            .container {
            width: 100%;
            max-width: 100%;
            padding: 1rem;
            box-sizing: border-box;
            }
            .footer {
            padding: 1rem;
            width: 100%;
            left: 0;
            box-sizing: border-box;
            }
            .navbar {
                flex-direction: column;
                align-items: center;
                padding-top: 1rem;
                padding-bottom: 1rem;
                padding: 1rem;
                width: 100%; /* statt 100vw */
                box-sizing: border-box;
            }

            .nav-links {
            gap: 0.7rem; /* Weniger Abstand zwischen den Links */
            }

            .nav-links, .social-icons {
                margin-top: 1rem;
            }

            .hero-content h1 {
                font-size: 2rem;
            }
            
            .text-section ul {
                columns: 1; /* Clients in einer Spalte anzeigen */
            }
          
          	.image-section img {
                max-width: 220px !important;
                width: 80vw !important;
                height: auto !important;
            }

            .references-layout {
            flex-direction: column;
            align-items: center;
            gap: 2rem;
            }
            /* Verstecke die linken und rechten Bildspalten auf Mobil */
            .references-images {
            display: none;
            }
            /* Zeige ein Karussell nur auf Mobil */
            .references-carousel {
            display: flex;
            flex-direction: row;
            gap: 1rem;
            overflow-x: auto;
            width: 100%;
            justify-content: flex-start;
            margin-top: 1.5rem;
            scroll-snap-type: x mandatory;
            }
            .references-carousel img {
            min-width: 220px;
            max-width: 80vw;
            height: auto;
            object-fit: cover;
            border-radius: 10px;
            box-shadow: 0 4px 10px rgba(0,0,0,0.3);
            scroll-snap-align: center;
            }
            #workshops .about-me {
            flex-direction: column;
            align-items: center;
            }
            #workshops .image-section {
            display: flex !important;
            flex-direction: row !important;    /* Bilder nebeneinander */
            flex-wrap: nowrap;
            justify-content: center;
            align-items: center;
            margin-top: 1.5rem;
            gap: 1rem;
            }
            #workshops .image-section img {
            max-width: 45vw;
            min-width: 150px;          /* Beide Bilder passen nebeneinander */
            height: auto;
            }

    }


            #workshops .image-section img {
            max-width: 400px; /* vorher 300px, jetzt größer */
            }

            .shows.container {
    text-align: left;
}
.shows.container h2 {
    text-align: center;
}
.shows.container > ul > li {
    margin-bottom: 1.5rem;
}

.shows.container .cta-button {
    display: inline-block;
    margin: 1rem auto 0 auto;
    text-align: center;
}

.booking-btn-center {
    text-align: center;
    margin-top: 1.5rem;
}

        .lang-switch {
        background: #fff;
        color: #1a1a1a;
        padding: 0.3em 1em;
        border-radius: 20px;
        font-weight: 700;
        margin-left: 1rem;
        text-decoration: none;
        transition: background 0.3s, color 0.3s;
        }
.lang-switch:hover {
    background: #ccc;
    color: #222;
}
.show-portfolio {
    margin-top: 3rem; /* oder z.B. 3rem für noch mehr Abstand */
    margin-bottom: 1rem;
    text-decoration: underline;
}

#workshops .about-me {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 2rem;
}

#workshops .image-section {
    display: flex;
    flex-direction: column; /* Bilder untereinander */
    gap: 1rem;
    justify-content: flex-start;
    align-items: flex-start;
}

#workshops .image-section img {
    max-width: 300px; /* Größe nach Wunsch */
    margin-top: 1.2rem;
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
}

.shows.container h3 {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-size: 2rem;
    color: #fff;
}
.hero-content h1,
.hero-content p,
.hero-content .adjektive {
    text-align: center;
    width: auto;
    margin-left: auto;
    margin-right: auto;
}

.hero-content .cta-button {
    display: inline-block;
    margin: 1rem auto 0 auto;
    text-align: center;
}

.showvideos.container h2 {
    margin-top: 1rem;
    margin-bottom: 2rem;

}
#about,
    #about-references,
    #shows,
    #contact,
    #workshops {
        scroll-margin-top: 200px; /* oder Wert passend zur mobilen Header-Höhe */
    }

   