html{
    scroll-behavior: smooth;
}

body {
    margin: 0;
    width: 100%;
    text-align: center;
}

/* Styling for the title section */
.title-section {

    background-size: cover;
    background-position: center;
    height: 100vh;
    display: flex;
    justify-content: center;
    color: white;
}



.title-text {
    display: flex;
    position: absolute;
    top: -20px;
    flex-direction: column;
    height: 50vh;
    text-align: center;
    font-weight: bold;
    text-shadow: 0 50px 10px rgba(0, 0, 0, .4);
    user-select: none;
}

@media screen and (max-width: 800px) {
.title-text {
    padding-top: 15vh;
}
}


@keyframes animate-title {
    0% {
        blur: 10px;
        opacity: 0;
        transform: translateY(50px);
    }

    100% {
        blur: 0px;
        opacity: 1;
        transform: translateY(0);
    }
}



@media screen and (min-width: 800px) {
    .onlyMobile{
        display: none;
    }
}

@media screen and (max-width: 800px) {
    .onlyDesktop{
        display: none;
    }
}


/* Styling for the other sections (adjust as needed) */
.team-section,
.vorschau-section,
.sponsor-section,
.contact-section,
.about-us-section, 
.press-section,
.upcoming-concerts-section
{
    padding: 20px;
}

#navbar-overlay{
    position: fixed;
    width: 100vw;
    z-index: 999;
}

#navbar{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.5);
    height: 5vh;
    z-index: 1000;
}



#navbar a{
    color: white !important; 
    text-decoration: none !important;
    font-size: 16px !important;
    padding: 0 10px;
    transition: .5s;
}

#navbar a:hover{
    scale: 1.1;
}

@media screen and (max-width: 800px) {
    #navbar a{
        font-size: 12px !important;
    }
}

@media screen and (min-width: 800px) {
    #navbar a{
        font-size: 20px !important;
    }
}



@media screen and (min-width: 800px) {
    #about-us-text{
        padding-right: 15%;
        padding-left: 15%;
    }
}



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

.nav-links li {
    margin-left: 20px;
}

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

.nav-links a:hover {
    color: #ff5733; /* Change to your desired hover color */
}

.eventPictureContainer{
    width: 100%;
    max-height: 35vh;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
}

.eventPictureContainer img{
    width: 100%;
    height: auto;
    object-fit: cover;

}

.eventPictureSmallDoubleContainer{
    padding: 0px;
    height: 35vh;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
}

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

.eventPictureSmallContainer{
    width: 100%;
    max-height: 40vh;
    overflow: hidden;
    border-radius: 20px;
}


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

@media screen and (max-width: 800px){
    .eventPictureSmallDoubleContainer{
        max-height: 25vh;
    }
    .eventPictureSmallContainer{
        max-height: 25vh;
    }
}
.eventPicturesSmall{
    width: 50%;
}

.team-section{
    background-color: white;
}

.vorschau-section{
    background-color: #fdf1ee;
}

.yearSection {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch; /* Ensures each .vorschau div takes the height of the tallest one */
}


.vorschau {
    background-color: white;
    border-radius: 25px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    width: 34vw;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
    padding: 10px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* Ensures content inside .vorschau is spaced evenly */
}

.past-vorschau{
    width: 20vw;
}

.vorschau-title-container{
    text-align: left;
}

.column{
    text-align: justify;
    background-color: #fdf1ee;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    border-radius: 20px;
    margin: 15px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s, transform 0.5s;
}

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

@media screen and (max-width: 800px) {
    .vorschau{
        width: 90vw;
    }  
}

.eventDescrptionWrapper{
    text-align: block;
}


.date-container{
    display: inline-block;
    background-color: blue;
    color: white;
    border-radius: 10px;
}






.row{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 20px;
}

@media screen and (min-width: 800px) {
    .column{
        max-width: 42%;
    }
}






.teamPicture{
    max-width: 400px;
    border-radius: 50%; 
}





.about-us-section,
.upcoming-concerts-section
{
    background-color: #fdf1ee;
    color: black;
}

#about-us-section-inside{
    padding: 20px;
}

#about-us-text{
    text-align: justify;
    hyphens: auto;
}

@media screen and (min-width: 800px) {
    #about-us-text{
        padding-right: 15%;
        padding-left: 15%;
    }
}

hr{
    border: 1px solid black;
    width: 0;
}

@keyframes hrAnimation{
    0%{
        width: 0%;
    }
    100%{
        width: 70%;
    }
}


#horizontal-scroll{
    overflow: auto;
    white-space: nowrap;
    padding: 10px;
    height: 30vh;
}

@media screen and (max-width: 800px) {
    #horizontal-scroll{
        height: 20vh;
    }
}


#horizontal-scroll::-webkit-scrollbar {
    display: none;
}

#horizontal-scroll img {
    padding: 10px;
    height: 90%;
    transition: .5s;
}

#horizontal-scroll img:hover{
    scale: 1.04;
}


.press-section{
    background-color: #fdf1ee;
}

#pressContainer{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 20px;
    width: 95vw;
}

.pressEntry{
    background-color: white;
    width: 20%;
    border-radius: 25px;
    background-color: white(196, 196, 196, 0.8);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    text-align: center;
    transition: opacity 0.5s, transform 0.5s;
    padding: 10px;
    color: black;
}

.pressEntryImage{
    width: 100%;
    height: 35vh;
    object-fit: cover;
    border-radius: 20px 20px 0 0;
}

@media screen and (max-width: 800px) {
    .pressEntry{
        width: 90vw;
    }  
}

.pressEntryText{
    text-align: justify;
}


a{
    text-decoration: none !important;
}

.contact-section{
    background-color: #fdf1ee;
}


.icon{
    width: auto;
    height: 25px;
    padding: 20px;
    transition: .5s;
}

.icon:hover{
    scale: 1.1;
}


#sponsor{
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
    align-items: stretch;
}

@media screen and (max-width: 800px) {
    #sponsor{
        margin-left: 5vw;
        margin-right: 5vw;
    }
    .sponsor_images {
        margin: 15px;
        line-height: 200px;
        max-height: 80px;
        max-width: 80px;
        text-align: center;
    } 
}

@media screen and (min-width: 800px) {
    #sponsor{
        margin-left: 15vw;
        margin-right: 15vw;
    }
    .sponsor_images {
        margin: 15px;
        line-height: 200px;
        max-height: 100px;
        max-width: 200px;
        text-align: center;
    } 
    .bio{
        padding-left: 60px !important;
        padding-right: 60px !important;
    }
}


.bio{
  padding: 20px;   
  text-align: justify; 
  hyphens: auto;
}



#upcoming-concerts-inner{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    text-align: center;
}

.upcoming-concert{
    border-radius: 25px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    background-color: white;
    width: 20vw;
    margin: 20px;
    padding: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.upcoming-concert a {
    margin-top: auto; /* Pushes the link to the bottom */
}

@media screen and (max-width: 800px) {
    .upcoming-concert{
        border-radius: 25px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
        background-color: white;
        width: 90vw;
        margin: 10px;
        padding: 10px;
        text-align: left;
    }
}