/* Grundlegende Stile */
* {
    padding: 0;
    margin: 0;
    font-family: 'Audiowide', sans-serif;
    box-sizing: border-box;
}

/* Header */
header {
    display: flex;
    align-items: center;
    height: 5rem;
    width: 100%;
    background-color: rgb(7, 237, 153);
    padding: 0 1rem;
    justify-content: space-between;
}

.header-img {
    height: 4rem;
    width: auto;
}

/* Navigation */
nav {
    display: flex;
    gap: 1rem;
}

.nav-link {
    font-size: 1.2rem;
    color: #000;
    padding: 0.5rem;
    text-decoration: none;
}

.nav-link:hover {
    background-color: #000;
    color: rgb(7, 237, 153);
}

/* Hauptinhalt */
.container-img {
    height: calc(100vh - 10rem);
    width: 100%;
    background-image: url('Wurzel.JPG');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.main-img {
    max-height: 100%;
    max-width: 100%;
}

/* Scrollende Nachricht */
.scroll-left {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 3rem;
    overflow: hidden;
    position: fixed;
    width: 100%;
    bottom: 0;
    background: rgb(7, 237, 153);
}

.scroll-left p {
    font-size: 1rem;
    width: 200%;
    text-align: center;
    animation: scroll-left 20s linear infinite;
}

@keyframes scroll-left {
    0% { transform: translateX(100%); }
    100% { transform: translateX(-100%); }
}

/* Akkordeon */
.accordion {
    background-color: #eee;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    text-align: left;
    border: none;
    outline: none;
    transition: 0.4s;
}

.panel {
    padding: 0 18px;
    background-color: white;
    display: none;
}

.active, .accordion:hover {
    background-color: #ccc;
}

/* Flexibles Layout für Bilder */
.Bilder, .Bild, .location-img, .map-img, .BI-KA {
    max-width: 100%;
    height: auto;
}

/* Tab-Layout */
.tab {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    background-color: #f1f1f1;
}

.tab button {
    flex: 1;
    padding: 10px;
    border: none;
    cursor: pointer;
    text-align: center;
}

.tabcontents {
    padding: 12px;
    background-color: rgb(7, 237, 153);
}

main {
    margin-bottom: 5rem;
  }

/* Responsive Anpassungen für Handys im Hochformat */
@media screen and (max-width: 480px) {
    header {
        flex-direction: column;
        height: auto;
        padding: 0.5rem;
        text-align: center;
    }
    
    .nav-link {
        font-size: 1rem;
        padding: 0.5rem;
    }
    
    nav {
        flex-direction: column;
        align-items: center;
    }
    
    .container-img {
        height: auto;
        padding: 2rem;
        background-size: contain;
    }
    
    .main-img {
        width: 100%;
        height: auto;
    }
    
    .scroll-left p {
        font-size: 0.8rem;
        animation-duration: 10s;
    }
    
    .tab {
        flex-direction: column;
    }
    
    .tab button {
        width: 100%;
        text-align: center;
    }
    
    .column2 {
        width: 100%;
    }

    }

    .tabcontents{
        display: flex;
        width: 100%;
        flex-direction: column;
      }
      
      .Bilder{
        height: auto;
        width: 100%;
      }
      
      .Künstler {
        width: 100%;
        height: 100%;
        float: left;
        flex-direction: column;
      }
      
      .Text_Artist {
        margin-top: 2%;
        width: 100%;
        padding-left: 1%;
        padding-right: 5%;
        }

        .Garderobe {
            width: 100%;
        }
        
        .panel {
          flex-direction: column;
        }
