.days {
    background-color: var(--color-background);
    width: 90%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    position: fixed; 
    bottom: 0; 
    z-index: 10;
    margin: 0 15px;
    left: 0;
    display: none;
    color: var(--color-text);
}



.days ul {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.days li {
    margin: 0;
    padding: 0;
}

.days a {
    display: block;
    padding: 1rem 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
    color: var(--color-text)
}

.days a:hover {
    background-color: rgba(0, 160, 189, 0.1);
}

.days a.active {
    color: var(--color-accent);
    /* background-color: #00A0BD; */
    font-weight: bold;
}

.day-overview {
    position: sticky;
    top: 0px; /*calc(191px + 71px);*/
    width: 100%;
    background-color: var(--color-background);
    height: 60px;
    z-index: 5;
    padding: 0.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
}

.day-overview ul{
    display: flex;
    height: 100%;
    list-style: none;
    align-items: center;
    gap: 1rem;
}
/* .day-overview ul li {
    margin: 0;
    padding: 0 1rem;
} */
.day-overview h2{
    font-weight: normal;
    margin: 0;
}

.day-overview a.active h2{
    font-weight: bold;
    color: var(--color-accent);
}

.day-indicator {
    width:100%;
    padding: 0.5rem 2rem;
    margin-left: -2rem;
    margin-right: -2rem;
    /* background-color: #00a1bd38; */
    border-color: var(--color-accent);
    border-top: 1px solid;
    border-bottom: 1px solid;
    color: var(--color-accent);
}

html, .buehne-mitte {
    scroll-behavior: smooth;
}

.bands-container {
    position:relative;
}
@media (max-width: 768px) {

    .day-indicator, .day-overview {
        width:100%;
        padding: 0.5rem 1rem;
        margin-left: -1rem;
        margin-right: -1rem;
    }

    .day-overview.header-visible{
        top: 70px;
    }

    .bands-container {
        overflow: visible;
    }

    .buehne-mitte {
        overflow: visible;
    }
    
    .days ul {
        overflow-x: auto;
        white-space: nowrap;
        -webkit-overflow-scrolling: touch;
    }
    
    .days a {
        padding: 0.8rem 1rem;
    }

    .days.visible {
        display: block;
    }
}


.bands {
    display: flex;
    flex-direction: column;
    gap: 0rem;
    padding-bottom: 3rem;
}

.bands h2{
    margin-bottom: 0;
}

.bands .band-image-square img {
    width: 250px;
    aspect-ratio: 1/1;
}

.band-image-wide {
    display: none;
}

.band-image-wide img {
    width:100%;
    aspect-ratio: 4/2;
    object-fit: cover;
    object-position: center 15%;
}

.band-item {
    display: flex;
    gap: 1.5rem;
    padding-bottom: 3rem;
    padding-top: 3rem;
    border-bottom: 1px solid var(--color-grey);
    align-items: stretch;
}

.band-item:last-child {
    border-bottom: none;
    padding-bottom:0;
}

.band-item h2 {
    text-decoration: none;
    font-size: 1.4rem;
    margin-bottom: 0;
}

.band-item .band-informations {
    align-self: stretch;
    display: flex;
    flex-direction: column;
    /* gap: 1.5rem; */
    /* max-height: 250px; */
    justify-content: space-between;
}

.band-item .title-genre {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
    /* align-items: center; */
}

.band-genre {
    color: #00A0BD;
}


.band-item .band-informations .band-stage {
    /* font-size: 1.2rem; */
    font-weight: lighter;
    text-transform: uppercase;
    text-wrap: nowrap;
    /* border: 1px solid #0098C2; */
    background: #00a1bd28;
    padding: 5px 10px;
    align-self: flex-start;
}

.band-item .band-informations a {
    font-size: 1.4rem;
    font-weight: medium;
    text-decoration: none;
}

.band-item .band-informations .description {
    display: block;/* or inline-block */
    word-wrap: break-word;
    /* overflow: hidden; */
    /* max-height: 9em; */
    line-height: 1.5em;
    font-size: 1rem;
    font-weight: lighter;
}

@media (max-width: calc(1300px)) {

    .band-item .band-image-square img{
        width: 200px;
        aspect-ratio: 3/4;
        object-fit: cover;
    }

}

@media (max-width: calc(1100px)) {

    .band-item .band-image-square img{
        width: 250px;
        aspect-ratio: 1/1;
        object-fit: cover;
    }
    /* .main {
        padding: 2rem;
    } */
}

@media (max-width: calc(980px)) {
    .band-item {
        flex-direction: column;
        gap: 1rem;
        padding-top: 5rem;
        /* border: 0; */
    }

    .title-genre h2 {
        margin-top: 0;
    }

    .band-item .band-informations {
        gap: 1rem;
    }
    .band-item .band-image-wide {
        display: block;
    }
    .band-item .band-image-square {
        display: none;
    }
}

@media screen and (max-width: 370px) {
    .day-overview ul li a h2 {
        font-size: 1.3rem;
    }
}