:root {
    --bg: #fff;
    --tc: #000;
  }


* {
    box-sizing: border-box;
  }

body {
    margin: 0;
    padding: 0;
    min-height: 100vh;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    background-color: var(--bg);
    font-family: Arial, Helvetica, sans-serif;
}

nav {
    z-index: 10;
    background-color: #000;
    box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
    position: fixed;
    top: 0;
}

nav ul {
    width: 100%;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

nav li {
    height: 50px;
}

nav a {
    height: 100%;
    padding: 0 14px;
    text-decoration: none;
    display: flex;
    align-items: center;
    color: #fff;
    font-weight: bold;
    border-radius: 6px;
    align-items: center;
    justify-content: center;
}

nav a:hover {
    background-color: coral;
    padding: 0 14px;
    color: #fff;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    font-weight: bold;
    height: 130%;
    margin-top: 0px;
    transition: height 0.3s;
    box-shadow: 3px 3px 8px rgba(0, 0, 0, 0.8);
    transition-timing-function: ease-in-out;
    animation-iteration-count: 1;
}

nav li:first-child {
    margin-right: auto;
    font-size: 34px;
}

nav li:first-child .logo-image {
    height: 48px;
    width: auto;
    margin-top:  8px;
    background-color: #000;
}


nav li:first-child a {
    color: coral;
    background-color: #000;
    font-weight: bold;
    height: 40px;
    width: auto;
}

/* Selects the third li element in NavBar "Concerts" */
nav>ul>li:nth-child(3) {
    display: none;
}

/* Selects the third li element in NavBar "Events" */
/*nav>ul>li:nth-child(4) {
    display: none;
}*/

.selected {
    color: #ff0;
    background-color: #0b0;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    border-radius: 5px;
    font-weight: bold;
}

/*-------------- Sidebar ------------*/
.sidebar {
    position: fixed;
    top: -20px;
    left: -50px;
    height: 100vh;
    width: 120vw;
    font-size: 28px;
    background-color: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.1);
    display: none;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.sidebar li {
    width: 100%;
}

.sidebar a {
    width: 100%;
}

.menu-button {
    font-size: 28;
    display: none;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.banner-img {
    margin: 0;
    padding-top: 6vh;
    width: 100%;
}

.img-text-overlay {
    position: absolute;
    top: 6vh;
    z-index: 0;
    margin-top: 15%;
    width: 100%;
    text-align: center;
    color: #fff;
    font-size: 4.0vw;
    font-weight: 900;
    text-shadow: 4px 4px 10px #000;
}

.flyer{
    display: block;
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
  }

/*----------------------------- Change for Small Screens --------------*/
@media(max-width: 850px) {
    .hideonmobile {
        display: none;
    }

    .menu-button {
        display: block;
        color: white;
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    }

    /*--- Sidebar Close button ---*/
    .close-menu {
        float: left;
        font-size: 8;
        background-color: #00f;
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    }

    .banner-img {
        padding-top: 6vh;
        width: 100%;
    }

    .flex-heading>div>h1 {
        align-items: center;
        justify-content: center;
        color: coral;
        text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
    }

    .flyer{
        display: block;
        margin-left: auto;
        margin-right: auto;
        width: 450px;
    
      }


}

    /*--------------------------------------------------------------------------------*/

.block {
    margin-top: 100px;
    padding: 0;
    z-index: 1000;
    background-color: #00f;
    color: #f00;
}

.block img {
    width: 100vw;
}

.sub-heading {
    width: 100%;
    text-align: center;
    color: #000;
    font-size: 8.0vw;
    font-weight: 500;
}

.flex-container {
    margin: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: var(--bg);
}

.flex-container>div {
    background-color: var(--bg);
    color: var(--tc);
    overflow: hidden;
    width: 100%;
    max-width: 800px;
    margin: auto;
    padding: 20px 20px;
    text-align: start;
    line-height: 20px;
    font-size: 20px;
    align-items: center;
    justify-content: center;
}

.flex-container>div>h1 {
    align-items: center;
    justify-content: center;
    color: coral;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

/*------------------- FLEX-HEADING -------------*/
.flex-heading {
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.flex-heading>div {
    margin: 0; /*5px;*/
    padding: 10px;
    font-size: 20px;
    text-align: center;
    background-color: var(--bg);
}

.flex-heading>div>h1 {
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;
}

.flex-heading>div>h2 {
    padding: 0;
    align-items: center;
    justify-content: center;
    color: var(--tc);
    /*text-shadow: -1px 0 black, 0 1px black, 1px 0 black, 0 -1px black;*/
}

/*-------------------- Animation ------------------*/
.heading-animate {
    text-align: center;
    margin: 0;
    padding: 0;
    animation: mymove 1s ease-in-out forwards;
    animation-iteration-count: 1;
}

@keyframes mymove {
    from {
        color: white;
        font-size: 0px;
    }

    to {
        color: coral;
        font-size: 2rem;
    }
}

/*---------------------- Animation End ------------------*/
.flex-body {
    display: flex;
    height: 10vh;
    align-items: center;
    justify-content: center;
}

/*---------------------------------*/

.flex-contact-container {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-around;
    padding-top: 20px;
    padding-bottom: 20px;
    background-color: #aba;
}

.flex-contact-container>div {
    background-color: #f1f1f1;
    margin: 15px;
    padding: 5px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: bold;
    box-shadow: -10px 0 10px rgba(0, 0, 0, 0.3);
}

.flex-contact-container>div>ul {
    list-style-type: none;
}

.flex-contact-container>div>img {
    height: 125px;
    padding: 10px;
    border-radius: 10px;
}

/*--------------------------------*/


.button {
    background-color: #0a0;
    margin-top: 5px;
    margin-bottom: 20px;
    padding: 5px 12px;
    border: none;
    color: white;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    border-radius: 6px;
}

.button:hover {
    background-color: coral;
    color: #fff;
    transition: margin 0.2s, height 0.2s;
    box-shadow: 3px 3px 8px rgba(0, 0, 255, 0.8);
    transition-timing-function: ease-in-out;
}

.flex-footer {
    display: flex;
    height: 300px;
    flex-direction: column;
    justify-content: center;
    background-color: #000;
}

.flex-footer>div {
    font-size: 20px;
    text-align: center;
}

.flex-footer div h3 {
    color: coral;
}

.flex-footer div h6 {
    color: #fff;
    padding: 0px 20px;
}

.flex-footer>div a {
    list-style: none;
    text-decoration: none;
    font-size: 20px;
    color: #fff;
}

div.sticky {
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    padding: 5px;
    background-color: #cae8ca;
    border: 2px solid #4CAF50;
}

/*--------------- YouTube Video --------------*/
.yt-media {
    max-width: 800px;
    width: 90%;
    margin: auto;
    height: auto;
    text-align: center;

}

.youtube-video {
    aspect-ratio: 16 / 9;
    width: 100%;
}

.left {
    background-color: #aff;
    padding: 2px;
    float: left;
    width: 50%; /* The width is 50%, by default */
  }
  
  .right {
    background-color: #aff;
    padding: 2px;
    float: left;
    width: 50%; /* The width is 50%, by default */
  }

.flex-event-images {
    display: flex;
    flex-direction: column;
    background-color: white;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }


  .flex-event-images > div {
    background-color: #f1f1f1;
    border: 1px solid black;
    margin: 10px;
    padding: 20px;
    width: 96%;
    height: auto;
  }

  .next-event{
    background-color: #000;
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
  }

  .flex-event-images > div > img {
    width: 100%;
    height: auto;
  }

  .para-text{
    margin-left: auto;
    margin-right: auto;
    max-width: 700px;
    padding: 20px;
  }

  .para-text > h2 {
    text-align: center;
  }

  .para-text > h3 {
    text-align: center;
  }

  .prog-text{
    background-color: #cae8ca;
    width: 350px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
  }

  #next-one{
    text-align: center;
    font-size: 25px;
    line-height: 2em;
 }