/* Thank you for looking at this code...  */
/* CSS Stylesheet Copyright by Fabienne Zahnd*/

/* 

 _   _      _ _        __        __         _     _ _ 
| | | | ___| | | ___   \ \      / /__  _ __| | __| | |
| |_| |/ _ \ | |/ _ \   \ \ /\ / / _ \| '__| |/ _` | |
|  _  |  __/ | | (_) |   \ V  V / (_) | |  | | (_| |_|
|_| |_|\___|_|_|\___/     \_/\_/ \___/|_|  |_|\__,_(_)



*/


    /* ==== SCHRIFT IMPORT ==== */
    /* Importierte  Schrift aus Google Fonts */
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100;200;300;400;500;600;700;800;900&display=swap');

    :root {
        --hell: #DDDDDD;
        --dunkel: #121212;
        --akzent: #CC9933;
        --gold_schimmer: rgba(204, 153, 51, 0.42);
        --background: #1D1D1D;
        /*#2C2C2C;*/
        --abrunden: 0.3rem;
    }

    /*css reset*/
    /*alles ansprechen*/
    * {
        /*alle standard werte auf 0 setzen*/
        padding: 0;
        margin: 0;
        box-sizing: border-box;
        /*keine ränder dazuzählen*/
    }

    /*css variablen*/
    h1 {
        font-family: "Montserrat";
        font-size: 2.5rem;
        font-weight: 700;
        color: var(--akzent);
    }

    h2 {
        font-family: "Montserrat";
        font-size: 2rem;
        color: var(--akzent);
    }

    h3 {
        font-family: "Montserrat";
        font-size: 1.5rem;
        color: var(--akzent);
    }

    h4,
    h5 {
        font-family: "Montserrat";
        font-size: 1rem;
        color: var(--hell);
    }

    p {
        font-size: 1rem;
        color: var(--hell);
        font-family: "Montserrat";
    }

    /*============================body===========================*/

    /*allgemeine HTML ELemente*/
    html,
    body {
        scroll-behavior: smooth;
    }

    body {
        background: var(--background);
        color: var(--akzent);
        font-family: "montserrat";
    }

    /*===================allgemeine definitionen====================*/

    /*alle links*/
    a {
        color: var(--akzent);
        text-decoration: none;
    }

    a:link {
        transition: all ease-in-out 0.5s;
        color: var(--hell);
    }

    a:hover {
        color: var(--hell);
        transition: all ease-in-out 0.3s;
    }

    /*container*/
    #container {
        max-width: 1600px;
        /*1920px */
        margin: 0 auto;
        min-height: 0vh;
        /*ev. dvh responsive*/
    }

    /*===================FRONT SITE - INDEX========================*/
    #logo_frontpage {
        position: fixed;
        /* Fixiert das Bild über die gesamte Seite */
        top: 0;
        left: 0;
        width: 100vw;
        /* Ganze Bildschirmbreite */
        height: 100vh;
        /* Ganze Bildschirmhöhe */
        object-fit: cover;
        /* Bild wird skaliert und zugeschnitten, um den gesamten Bereich zu füllen */
        z-index: 0;
        /* Bild bleibt im Hintergrund */
        cursor: pointer;
    }

    /*===================header========================*/
    header {
        display: flex;
        max-width: 1600px;
        width: 100%;
        margin: 0 auto;
        min-height: 80px;
        flex-wrap: wrap;
        align-items: center;
        justify-content: space-between;
        padding: 1rem 2rem;
        background: var(--background);
    }

    /* ================Logo=================== */
    .logo {
        flex: 1;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .logo img {
        width: 100%;
        /* Verdoppelt die ursprüngliche Größe */
        height: auto;
        /* Behält das Seitenverhältnis bei */
        transition: transform 0.3s ease;
    }

    .logo:hover img {
        transform: scale(1.1);
        /* Leichtes Vergrößern beim Hover */
    }

    /*========== Navigation Desktop================ */
    .navigation {
        flex: 2;
        text-align: center;
        display: flex;
        justify-content: center;
        gap: 20px;
    }

    /* Standardlink-Style für Navigation */
    .navigation a {
        color: var(--hell);
        text-decoration: none;
        font-size: 18px;
        padding: 10px 15px;
        transition: 0.3s;
    }

    /* Hover-Effekte für Navigation */
    .navigation a:hover {
        background: var(--akzent);
        color: var(--background);
        border-radius: 5px;
    }

    /* Hamburger-Menü */
    .hamburger {
        display: none;
        /* Standardmäßig ausgeblendet */
        font-size: 30px;
        cursor: pointer;
    }

    /* Social Media */
    .social-icons {
        display: flex;
        justify-content: flex-end;
        align-items: center;
        gap: 1rem;
    }

    .social-icons a {
        color: var(--akzent);
        font-size: 30px;
        transition: transform 0.3s ease, color 0.3s ease;
    }

    .social-icons a:hover {
        transform: scale(1.2);
        color: var(--akzent);
    }


    /*========================hero section========================*/
    .hero {
        position: relative;
        width: 100%;
        height: 80vh;
        /* Volle Höhe des Viewports */
        display: flex;
        justify-content: flex-end;
        /* Inhalt nach rechts schieben */
        align-items: center;
        /* Zentriert vertikal ausrichten */
        overflow: hidden;
    }

    .hero-video {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80%;
        object-fit: cover;
        z-index: 1;
    }

    #container_willkommen {
        position: relative;
        z-index: 2;
        color: var(--hell);
        text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.7);
        display: flex;
        flex-direction: column;
        align-items: flex-end;
        text-align: right;
        padding-right: 5rem;
        max-width: 50%;
    }

    #hero_titel {
        font-size: 4rem;
        font-weight: 600;
        background: rgba(0, 0, 0, 0.5);
        padding: 0.5rem 1rem;
        border-radius: var(--abrunden);
        display: inline-block;
        font-family: "montserrat";
    }

    #hero_untertitel {
        font-size: 1.5rem;
        margin-top: 1rem;
        background: rgba(0, 0, 0, 0.5);
        padding: 0.5rem 1rem;
        border-radius: var(--abrunden);
        display: inline-block;
        font-family: "montserrat";
    }

    .fade-in {
        opacity: 0;
        transform: translateY(6px);
        animation: fadeIn 1s ease-out forwards;
    }

    @keyframes fadeIn {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 0.6;
            transform: translateY(0);
        }
    }

    /*====================main===================*/
    main {
        /* border: 2px solid rgba(0, 0, 0, 1.00);*/
        max-width: 1600px;
        width: 100%;
        min-height: 100vh;
        /* Stellt sicher, dass der Hauptbereich immer mindestens den sichtbaren Bereich einnimmt */
        margin: 0 auto;
        padding: 20px;
        line-height: 1.5;
        flex-grow: 1;
    }

    section {
        background-color: var(--background);
        /* Hintergrundfarbe */
        padding: 20px;
        /* Abstand innen */
        margin: 20px 0;
        /* Abstand außen */
        border-radius: 10px;
        /* Abgerundete Ecken */
        box-shadow: 0px 6px 12px rgba(0, 0, 0, 0.08);
        /* Schatten */
    }


    /*==========css helpers =============*/
    .grossbuchstaben {
        text-transform: uppercase;
    }

    .kleineschrift {
        font-size: 0.5rem;
        position: absolute;
    }

    .zentriert {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .zentriert img {
        display: block;
        margin: 0 auto;
        /* Horizontale Zentrierung */
        max-width: 100%;
        /* Bild passt sich an */
        height: auto;
        /* Verhindert Verformungen */
    }

    .flex_umkehren {
        flex-direction: row-reverse;
    }

    /*fluid typografie (clamp)*/
    .typo_fluid_h2 {
        font-size: clamp(1.1rem, 3vw, 2.5rem);

    }

    .typo_fluid_p {
        /*min,relativ,max*/
        font-size: clamp(0.9rem, 1vw, 1rem);
        /*1.2rem*/
    }

    /* ==============Schmuckelemente================= */
    /*schmuckelement eigentlich ein störer*/
    .schmuck_element {
        height: 50vh;
        background-image: url("bilder/home/_MG_1716_bw.jpg");
        background-attachment: fixed;
        background-size: cover;
        box-shadow: inset 2px 2px 5px 5px rgba(0, 0, 0, 0.5);
    }

    .schmuck_element_2 {
        height: 50vh;
        background-image: url("bilder/home/_MG_2577_bw.jpg");
        background-attachment: fixed;
        background-size: cover;
        box-shadow: inset 2px 2px 5px 5px rgba(0, 0, 0, 0.5);
    }

    .schmuck_element_3 {
        height: 50vh;
        background-image: url("bilder/home/_MG_2293_bw.jpg");
        background-attachment: fixed;
        background-size: cover;
        box-shadow: inset 2px 2px 5px 5px rgba(0, 0, 0, 0.5);
    }

    /* ==============KACHELN================= */
    /*kacheln*/
    .kacheln {
        display: flex;
        flex-wrap: wrap;
    }

    .kacheln article {
        width: 50%;
        /* Kacheln sind 50% der Breite */
        aspect-ratio: 1 / 1;
        /* Seitenverhältnis von 1:1 für quadratische Kacheln */
        padding: 3rem;
        position: relative;
        /* Wichtig für das Bild und den Hover-Effekt */
    }

    .kacheln figure {
        width: 100%;
        height: 100%;
        margin: 0;
        position: relative;
        /* Positioniert das Bild innerhalb der Kachel */
    }

    /* Zoom-Effekt für Bilder */
    .kacheln figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Bild bleibt proportional und wird korrekt skaliert */
        transition: transform 0.3s ease;
        /* Optionaler Zoom-Effekt */
    }

    /* Hover-Effekt für Zoom */
    .kacheln figure img:hover {
        transform: scale(1.1);
        /* Zoom-Effekt bei Hover */
    }


    /* Kacheln mit Schwarz-Weiß-Effekt */
    .kacheln_schwarzweiss img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        /* Bild bleibt proportional und wird korrekt skaliert */
        filter: grayscale(100%);
        /* Bild startet in schwarz-weiß */
        transition: filter 0.5s ease, transform 0.3s ease;
        /* Sanfter Übergang für Filter und Zoom */
    }

    /* Hover-Effekt für Kacheln mit Schwarz-Weiß-Bild */
    .kacheln_schwarzweiss img:hover {
        filter: grayscale(0%);
        /* Bild wird farbig beim Hover */
        transform: scale(1.05);
        /* Optionaler Zoom-Effekt */
    }

    .text_inhalt {
        padding: 5rem;
    }

    /*====================about===================*/
    #about {}

    .about {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        /* Stellt sicher, dass Text und Bild Platz haben */
    }

    .kacheln_about {
        display: flex;
        flex-direction: column;
        /* statt nebeneinander */
    }

    .kacheln_about article {
        width: 100%;
        padding: 3rem 2rem;
    }

    .kacheln_about figure {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 2rem;
    }

    .kacheln_about figure img {
        width: 100%;
        max-width: 600px;
        height: auto;
        object-fit: cover;
        border-radius: 0.5rem;
    }


    .social-icons_about {
        display: flex;
        flex-wrap: nowrap;
        /* Verhindert Umbrüche */
        justify-content: flex-start;
        /* Links ausrichten */
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
        min-width: 200px;
        /* Mindestbreite, damit die Icons nicht zu eng zusammenrücken */
    }

    /* Stil für Icons */
    .social-icons_about a {
        font-size: 2rem;
        color: var(--akzent);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Hover-Effekt */
    .social-icons_about a:hover {
        color: var(--hell);
        transform: scale(1.2);
    }

    /* ================ GRID LIVE DATEN ===================== */
    #live {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 40px 20px;
    }

    .live-daten-header {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
        gap: 20px;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
        font-size: 0.8rem;
        font-weight: bold;
        margin-bottom: 20px;
        /* Abstand zum Grid mit den Live-Daten */
    }

    .live-daten {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        /* Drei gleich breite Spalten */
        gap: 20px;
        max-width: 1200px;
        width: 100%;
        margin: 0 auto;
    }


    .live-datum,
    .live-ort,
    .live-band {
        padding: 10px;
        border: 1px solid var(--hell);
        text-align: center;
    }

    .live-datum p,
    .live-ort p,
    .live-band p {
        font-size: 1rem;

    }

    .live-datum p {
        font-weight: bold;
        /* Text fett */
    }

    .h4_live {
        font-family: "Montserrat";
        font-size: 1rem;
        color: var(--gold_schimmer);
    }

    .cta_button_dates {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--akzent);
        color: var(--hell);
        text-decoration: none;
        border-radius: var(--abrunden);
        transition: background 0.2s ease-in-out;
        margin-top: 2rem;
        /* Drückt den Button nach unten */
    }

    .cta_button_dates:hover {
        background: var(--hell);
        color: var(--akzent);
    }

    /*========cal to action===============*/
    .cta_button {
        background: var(--akzent);
        padding: 0.3rem 0.6rem;
        transition: all ease-in-out 0.2s;
        border-radius: var(--abrunden);
        display: inline-block;
        /*damit es zu einem block element wird*/
        margin-top: 4rem;
        color: var(--hell);
    }

    /*animation*/
    animation: schweben 3s linear infinite;
    }

    @keyframes schweben {
        0% {
            transform: translateY(0);
        }

        50% {
            transform: translateY(1rem);
        }

        100% {
            transform: translateY(1rem);
        }
    }

    .cta_button:hover {
        background: var(--hell);
        color: var(--akzent);
        margin-left: 0.5rem;
    }

    /*=====================PROJECTS==================*/
    /*=====================panels==================*/
    .panels {
        display: flex;
        flex-wrap: wrap;
        min-height: 66vh;
        justify-content: center;
    }

    .panels article {
        flex-grow: 1;
        /*nimm den ganzen freien Platz ein*/
        width: 33.333%;
        display: flex;
        flex-direction: column;
        /*justify-content: center; */
        align-items: center;
        justify-content: space-between;
        padding: 1rem;
        text-align: center;
    }

    .panels article figure {
        overflow: hidden;
        border-radius: var(--abrunden);
        width: 100%;
        aspect-ratio: 4 / 3;
    }

    .panels h4 {
        margin: 2rem 0rem;
    }

    .panels article figure img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    /*verschiedene article panels ansprechen*/
    .panels article:nth-child(1) {
        background: var(--background);
    }

    .panels article:nth-child(2) {
        background: var(--background);
    }

    .panels article:nth-child(3) {
        background: var(--background);
    }

    /* CTA Button Porjects */
    .cta_button_projects {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--akzent);
        color: var(--hell);
        text-decoration: none;
        border-radius: var(--abrunden);
        transition: background 0.2s ease-in-out;
        margin-top: 2rem;
        /* Drückt den Button nach unten */
    }

    .cta_button_projects:hover {
        background: var(--hell);
        color: var(--akzent);
    }

    /*=====================Live/Bands==============
    ====*/
    .titel {
        background: var(--gold_schimmer);
        border-radius: var(--abrunden);
        color: var(--dunkel);
        text-align: center;
        padding: 2rem 0;
    }

    .titel h2 {
        font-family: "Montserrat", sans-serif;
        font-size: 1.5rem;
        color: var(--hell);
    }

    .titel h3 {
        font-family: "Montserrat", sans-serif;
        font-size: 1.5rem;
        color: var(--akzent);
    }

    .live_bands {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        /* Stellt sicher, dass Text und Bild Platz haben */
    }

    /* Flexbox für Text + Bild */
    .band-container {
        width: 100%;
        /* Nutzt volle Breite */
        display: flex;
        flex-direction: row;
        /* Text links, Bild rechts */
        align-items: center;
        justify-content: space-between;
        padding: 3rem;
    }

    /* Text-Bereich */
    .band-text {
        flex: 1;
        max-width: 50%;
        /* Maximal 50% Breite */
    }

    /* Bild-Bereich */
    .band-image {
        flex: 1;
        max-width: 50%;
        /* Maximal 50% Breite */
    }

    /* Bild richtig skalieren */
    .band-image img {
        width: 100%;
        height: auto;
        /* Beugt Verzerrung vor */
        object-fit: contain;
    }


    /* ===================== animieren von der Seite==================== */
    .anim_einblenden_von_links {
        animation: einblenden-von-links 3s ease-out forwards;
        animation-timeline: view();
        animation-range: entry 0% exit 1vh;
    }

    .anim_einblenden_von_rechts {
        animation: einblenden-von-rechts 1s ease-out forwards;
        animation-timeline: view();
        animation-range: entry 0% exit 13vh;
    }

    @keyframes einblenden-von-links {
        from {
            transform: translateX(-30%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    @keyframes einblenden-von-rechts {
        from {
            transform: translateX(30%);
            opacity: 0;
        }

        to {
            transform: translateX(0);
            opacity: 1;
        }
    }

    /* ===================== Social Icons projects ==================== */
    .social-icons_projects {
        display: flex;
        flex-wrap: nowrap;
        /* Verhindert Umbrüche */
        justify-content: flex-start;
        /* Links ausrichten */
        align-items: center;
        gap: 1rem;
        margin-top: 1rem;
        min-width: 200px;
        /* Mindestbreite, damit die Icons nicht zu eng zusammenrücken */
    }

    /* Stil für Icons */
    .social-icons_projects a {
        font-size: 2rem;
        color: var(--hell);
        transition: transform 0.3s ease, color 0.3s ease;
    }

    /* Hover-Effekt */
    .social-icons_projects a:hover {
        color: var(--akzent);
        transform: scale(1.2);
    }

    /* ===================== werbung für mich ==================== */

    .werbung {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        /* Stellt sicher, dass Text und Bild Platz haben */
        background-color: var(--akzent);
        color: var(--dunkel);
    }

    .werbung_1 {
        color: var(--dunkel);
    }

    /* Flexbox für Text + Bild */
    .werbung-container {
        width: 100%;
        /* Nutzt volle Breite */
        display: flex;
        flex-direction: row;
        /* Text links, Bild rechts */
        align-items: center;
        justify-content: space-between;
        padding: 3rem;
        color: var(--dunkel);
    }

    /* Text-Bereich */
    .werbung-text {
        flex: 1;
        max-width: 50%;
        /* Maximal 50% Breite */
        color: var(--dunkel);
    }

    /* Bild-Bereich */
    .werbung-image {
        flex: 1;
        max-width: 50%;
        /* Maximal 50% Breite */
    }

    /* Bild richtig skalieren */
    .werbung-image img {
        width: 100%;
        height: auto;
        /* Beugt Verzerrung vor */
        object-fit: contain;
    }

    /* CTA Button Werbung */
    .cta_button_werbung {
        display: inline-block;
        padding: 0.5rem 1rem;
        background: var(--dunkel);
        color: var(--akzent);
        text-decoration: none;
        border-radius: var(--abrunden);
        transition: background 0.2s ease-in-out;
        margin-top: 2rem;
        /* Drückt den Button nach unten */
    }

    .cta_button_werbung:hover {
        background: var(--hell);
        color: var(--dunkel);
    }

    /*=====================copyright bei bilder live_bands==================*/

    .image-container {
        position: relative;
        display: inline-block;
        overflow: hidden;
    }

    .image-container img {
        display: block;
        width: 100%;
        height: auto;
    }

    .copyright-text {
        position: absolute;
        bottom: 10px;
        right: 10px;
        background: rgba(0, 0, 0, 0.5);
        color: white;
        font-size: 0.7rem;
        padding: 2px 6px;
        border-radius: 5px;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
        pointer-events: none;
    }

    .image-container:hover .copyright-text {
        opacity: 1;
        transform: translateY(0);
    }


    /*=====================projects_studio==================*/
    .liste_studio {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: var(--hell);
        padding: 1rem 0rem;
        list-style: circle inside;
        margin: 0;
        /* wichtig */
        text-align: left;
        /* wichtig */
    }

    .liste_studio li {
        min-height: 40px;
        position: relative;
        padding-left: 1.5rem;
        /* Platz für den Punkt */
    }


    /*=====================projects_md/backliner==================*/
    .liste {
           display: flex;
        flex-direction: column;
        align-items: flex-start;
        color: var(--hell);
        padding: 1rem 0rem;
        list-style: circle inside;
        margin: 0;
        /* wichtig */
        text-align: left;
        /* wichtig */
    }

    .liste li {
         min-height: 40px;
        position: relative;
        padding-left: 1.5rem;
        /* Platz für den Punkt */
    }


    /*============= Cookies================= */
     #cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #222;
    color: #fff;
    padding: 1rem;
    text-align: center;
    z-index: 9999;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

#cookie-banner.hidden {
    opacity: 0;
    transform: translateY(100%);
    pointer-events: none;
}









    /*============= MEDIA.html================= */
    .video-wrapper {
        position: relative;
        padding-bottom: 56.25%; /* 16:9 Verhältnis */
        height: 0;
        overflow: hidden;
        margin-bottom: 2rem;
        border-radius: 12px;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    }

    .video-wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 80%;
    }


    .bildergalerie {
        display: grid;
        grid-template-columns: repeat(auto-fill, minmax(min(100%, 300px), 1fr));
    }

    .bildcontainer {
        border: 1px solid black;
        /*width:33.33333%; wie breit möchtest du es haben*/
        overflow: hidden;
        /*damit man elemente ausserhalb nicht sieht*/
        position: relative;
        height: 15rem;
        flex-grow: 1;
    }

    .bildcontainer img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .bildlegende {
        position: absolute;
        left: 0;
        bottom: 0rem;
        color: var(--hell);
        border-top: 1px solid var(--dunkel);
        border-bottom: 1px solid var(--dunkel);
        ;
        background-color: var(--background);
        padding: 0.5rem;
        width: 100%;
        height: 100%;
        text-align: center;
        transition: all 0.4s ease-in-out;
        /*trick um vertikal und horizontal zu zentrieren*/
        display: flex;
        justify-content: center;
        align-items: center;
        opacity: 1;
        filter: blur(0.2px);
    }

    /*rollover ueber den bildcontainer soll legende verschieben*/
    .bildcontainer:hover .bildlegende {
        /*bottom:100rem;*/
        /*text verschwindet je höher die zahl*/
        transition: all 0.4s ease-in-out;
        opacity: 0;
    }

    .filter_element {}

    .filter_button {
        background-color: var(--akzent);
        color: var(--hell);
        border-radius: var(--abrunden);
        position: relative;
        padding: 0.5rem 3rem;
        margin: 0.5rem;
    }

    .filter_button:hover {
        background: var(--hell);
        color: var(--akzent);
        margin-left: 0.5rem;
    }

    /*================= Formularelemente==========================*/
    .form-container {
        padding-left: 9.5rem;
    }

    #label {
        color: var(--background);
    }

    input,
    select,
    textarea {
        padding: 0.5rem;
        font-size: 1rem;
        font-family: 'Roboto', Helvetica, sans-serif;
        border: var(--background);
        border-radius: 0.3rem;
        margin: 0.5rem 0rem;
        background: rgba(112, 111, 111, 0.24);
    }

    textarea {
        height: 300px;
        width: 50%;
    }

    input[type=radio] {
        width: 1rem;
        margin-right: 0.2rem;


    }

    input[type=checkbox] {
        width: 2rem;
    }

    input[type=submit] {
        padding: 0.5rem 2rem;
        height: 3rem;
        cursor: pointer;
        transition: 0.5s ease-in-out color;
        color: var(--hell);
        background: var(--akzent);
    }

    input[type=submit]:hover {
        background: var(--hell);
        color: var(--akzent);
        transition: 0.3s ease-in-out color;
    }

    /*========================totop=================================*/
    #totop {
        background: var(--akzent);
        padding: 1rem;
        position: fixed;
        right: 0rem;
        bottom: 0rem;
        z-index: 555;
    }

    /*=========================footer==============================*/
    .footer-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 2rem;
        margin-top: 1rem;
        background: var(--background);
        max-width: 1600px;
        width: 100%;
        margin-left: auto;
        margin-right: auto;
        color: var(--akzent);
        height: auto;
        text-align: center;
    }

    .footer-container img {
        width: 50%;
        /* Größe des Logos anpassen */
        text-align: center;
        max-width: 500px;
    }

    .footer_unten {
        text-align: center;
        width: 100%;
        margin-top: auto;
        /* Drückt die Fußzeile nach unten */
        color: var(--akzent);
    }

    .footer_unten a {
        color: var(--akzent);
    }

    .footer a {
        color: var(--akzent);
        text-decoration: none;
        transition: color 0.3s ease;
    }

    .footer a:hover {
        color: var(--akzent);
    }

    /*===========================impressum============================*/
    #impressum,
    #datenschutz {
        position: fixed;
        top: 1rem;
        left: 1rem;
        width: 80%;
        right: 1rem;
        height: 90vh;
        margin: 0 auto;
        background: var(--background);
        padding: 2rem;
        overflow-x: hidden;
        /*scrollbalken nur vertikal*/
        display: none;
        color: var(--dunkel);
        z-index: 888;
    }

    .footer_flex {
        display: flex;
        flex-wrap: wrap;
        gap: 1rem;
    }

    /*diese klasse zeigt dass ein element an*/
    .show_element {
        display: block !important;
        /*ohne important geht nicht*/
    }

    .toggle_button {
        cursor: pointer;
        background: var(--background);
        /* Hintergrundfarbe */
        color: var(--akzent);
        /* Textfarbe */
        padding: 0.5rem 1rem;
        /* Abstände anpassen */
        display: flex;
        justify-content: center;
        align-items: center;
        border: 0.1px solid var(--akzent);
        /* Dünner Rand */
        border-radius: var(--radius);
        /* Abgerundete Ecken */
        transition: all 0.3s ease;
        /* Übergänge für Hover */
    }

    .toggle_button_oben {
        position: absolute;
        top: 1rem;
        right: 3rem;
        width: 2.5rem;
        height: 2.5rem;
        color: var(--akzent);
        aspect-ratio: 1 / 1;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        cursor: pointer;
        z-index: 1000;
    }

    .toggle_button_oben .fa {
        pointer-events: none;
    }

    .kein_padding {
        padding: 0px;
    }

/*--------------------------------------------------------*/
/*-----------------RESPONSIVE DESIGN-----------------------*/
/*--------------------------------------------------------*/


/*=============Responsives Design: max-width689px==========*/

    @media screen and (max-width: 689px) {

        header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0.1rem 0.1rem;
            margin-top: 0;
        }

        .logo {
            justify-content: center;
            width: 100%;
            margin-bottom: 1rem;
        }

        .logo img {
            width: 60%;
        }

        /* Hamburger Button unterhalb des Logos */
        .hamburger {
            display: block;
            margin-top: 1rem;
            /* Abstand unterhalb des Logos */
        }

        /* Responsives Navigation */
        .navigation {
            display: none;
            flex-direction: column;
            width: 100%;
            background: var(--background);
            text-align: left;
            margin-top: 1rem;
            /* Abstand für die Navigation */
        }

        .navigation.show {
            display: flex;
        }

        /* Social Icons */
        .social-icons {
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            width: 100%;
        }

        .hero {
            height: 60vh;
            padding: 1rem;
        }

        #container_willkommen {
            max-width: 90%;
            text-align: center;
            padding-right: 0;
        }

        #hero_titel {
            font-size: 2.5rem;
        }

        #hero_untertitel {
            font-size: 1rem;
        }

        .fade-in {
            opacity: 1;
            transform: translateY(0);
        }

        /* Schmuck-Elemente */
        .schmuck_element,
        .schmuck_element_2,
        .schmuck_element_3 {
            display: none !important;
        }

        /* Kacheln - Zentrieren und untereinander anordnen */
        .kacheln,
        .kacheln_about {
            display: flex;
            flex-direction: column;
            align-items: center;
            /* Zentriert die Kacheln */
            width: 100%;
            gap: 1rem;
            /* Abstand zwischen den Kacheln */
        }

        .kacheln article,
        .kacheln_about article {
            width: 90%;
            /* Oder eine andere max. Breite, je nach Bedarf */
            padding: 1rem;
            text-align: center;
            /* Optional: um den Text innerhalb der Kacheln zu zentrieren */
        }

        .text_inhalt {
            padding: 2rem;
        }

        /* About-Kacheln */
        .about {
            flex-direction: column;
            align-items: center;
        }

        .kacheln_about article {
            width: 100%;
            padding: 1rem;
        }

        .cta_button_about {
            font-size: 1rem;
            padding: 0.5rem 1rem;
            margin-top: 1rem;
        }

        /* Live-Daten */
        #live {
            padding: 30px 15px;
        }

        .live-daten-header {
            font-size: 1rem;
        }

        .live-daten {
            grid-template-columns: 1fr;
        }

        .live-datum p,
        .live-ort p,
        .live-band p {
            font-size: 0.85rem;
        }

        /* Panels */
        .panels article {
            width: 100%;
            margin-bottom: 1rem;
        }

        .titel h2,
        .titel h3 {
            font-size: 1.2rem;
            text-align: center;
        }

        .band-container {
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 2rem 1rem;
            gap: 1rem;
        }

        .band-text,
        .band-image {
            width: 100%;
            max-width: 600px;
        }

        .band-image img {
            width: 100%;
            height: auto;
            display: block;
        }

        .social-icons_projects {
            display: flex;
            justify-content: center;
            align-items: center;
            gap: 0.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }

        .social-icons_projects a {
            font-size: 1.5rem;
        }

        .liste {
            padding: 2rem 2rem;
            /* Weniger Seitenabstand auf kleinen Geräten */
        }

        /* Media-Galerie */
        .bildergalerie {
            grid-template-columns: 1fr;
            gap: 15px;
        }

        .bildcontainer {
            height: 10rem;
        }

        .filter_button {
            padding: 0.5rem 1.5rem;
            width: 100%;
        }

        /* Kontaktformular */
        .form-container {
            padding-left: 1rem;
            padding-right: 1rem;
        }

        textarea,
        input,
        select {
            width: 100%;
        }

        input[type=submit] {
            padding: 0.5rem 1.5rem;
        }

        /* To Top Button */
        #totop {
            padding: 0.75rem;
            right: 1rem;
            bottom: 1rem;
        }

        /* Footer / Impressum / Datenschutz */
        .footer-container {
            padding: 1rem;
        }

        .footer-container img {
            width: 80%;
            max-width: 400px;
        }

        .footer_unten {
            font-size: 0.9rem;
        }

        #impressum,
        #datenschutz {
            width: 100%;
            top: 1rem;
            padding: 1rem;
            max-height: 90vh;
            overflow-y: scroll;
        }

        .toggle_button {
            font-size: 0.9rem;
            padding: 0.3rem 0.7rem;
        }
    }

    /*===================Ende max-width 768px===================*/


    /*=======Responsive Anpassungen für 690px bis 1024px============= */

    @media (min-width: 768px) and (max-width: 1024px) {
        header {
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 0.1rem 0.1rem;
            margin-top: 0;
        }

        .logo {
            justify-content: center;
            width: 100%;
            margin-bottom: 1rem;
        }

        .logo img {
            width: 60%;
        }

        /* Hamburger Button unterhalb des Logos */
        .hamburger {
            display: block;
            margin-top: 1rem;
        }

        /* Responsives Navigation */
        .navigation {
            display: none;
            flex-direction: column;
            width: 100%;
            background: var(--background);
            text-align: left;
            margin-top: 1rem;
        }

        .navigation.show {
            display: flex;
        }

        /* Social Icons */
        .social-icons {
            justify-content: center;
            align-items: center;
            gap: 1rem;
            margin-top: 1rem;
            width: 100%;
        }

        .hero {
            padding: 3rem 2rem;
            /* Mehr Platz innen im Hero Bereich */
        }

        .hero_title {
            font-size: 2.8rem;
            /* Anpassung der Titelgröße */
        }

        .hero_subtitle {
            font-size: 1.4rem;
            /* Anpassung der Untertitelgröße */
        }

        .cta_button_projects {
            width: 50%;
            font-size: 1.2rem;
            margin: 2rem auto;
        }

        .social-icons_projects {
            justify-content: center;
            gap: 2rem;
            margin-top: 1rem;
        }

        .live-daten {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* Immer drei Spalten */
            gap: 20px;
            width: 100%;
            max-width: 100%;
            /* Stellt sicher, dass der Container die volle Breite nutzen kann */
            margin: 0 auto;
        }

        .live-daten-header {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            /* Stellt sicher, dass immer drei Spalten angezeigt werden */
            gap: 20px;
            max-width: 1200px;
            width: 100%;
            margin: 0 auto;
            font-size: 0.8rem;
            font-weight: bold;
            margin-bottom: 20px;
            /* Abstand zum Grid mit den Live-Daten */
        }

        .kacheln,
        .kacheln_about {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 1rem;
        }

        .kacheln article,
        .kacheln_about article {
            width: 90%;
            padding: 1rem;
            text-align: center;
        }

        /* Weitere allgemeine Anpassungen */
        section {
            padding: 3rem 2rem;
            /* Standard-Padding für alle Sektionen */
        }

        .footer-container {
            padding: 1rem;
            text-align: center;
        }
    }

    /*===================Ende max-width 1024px===================*/