@font-face {
  font-family: BreveText;
  src: url("fonts/BreveTextLight.otf");
}

@font-face {
  font-family: BreveTitle;
  src: url("fonts/BreveSlabTitleBold.otf");
}

@font-face {
  font-family: BreveSlabItalic;
  src: url("fonts/BreveSlabTitleBookItalic.otf");
}

@font-face {
  font-family: BreveNews;
  src: url("fonts/BreveNewsBook.otf");
}

body {
  height: 100vh;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  font-family: BreveText, serif;
  font-style: normal;
  font-size: large;
}

h1,
h2 {
  font-family: BreveTitle, serif;
}

header {
  color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 4em;
  padding-right: 2em;
  box-shadow: 0px 1px 6px 0px #00000020;
  position: relative;
}

footer {
  color: white;
  background-color: #333333;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 2em;
  padding-right: 2em;
  font-size: small;
  line-height: 0.7em;
}

.content {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  text-align: center;
}

.homeTop {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  color: white;
  text-align: center;
  background-image: url(images/portrait.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 0%;
  min-height: min(calc(100vh - 70px), 100vw);
}

.homeBottom {
  flex-grow: 1;
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(images/room_playing.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 0%;
  /* min-height: 95vh; */
}

.bottomBanner {
  width: 100%;
  background-color: #2a8bae6e;
}

.newAlbumContainer {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.newAlbumContainer > img {
  max-width: 60%;
  margin: 40px 0px;
  box-shadow: 20px 19px 20px 0px #00000090;
  border-radius: 5px;
}

.newAlbumDescription {
  max-width: 80%;
}

.aboutBottom {
  flex-grow: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  text-align: center;
  background-image: linear-gradient(
      to left,
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.9)
    ),
    url(images/roof.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 100% 50%;
}

.aboutBottom img {
  max-width: 70%;
  box-shadow: 20px 19px 20px 0px #00000090;
  border-radius: 5px;
  margin: 30px;
}

.aboutContainer {
  margin-left: 4em;
}

.aboutContainer > div {
  max-width: 500px;
  text-align: left;
  margin: 30px;
}

.agendaBottom {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: white;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.4)),
    url(images/recording.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 50%;
}

.agendaContainer {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap-reverse;
  width: 100%;
  justify-content: space-evenly;
  align-items: self-start;
}

.agendaContainer > div {
  width: 600px;
  text-align: left;
  margin: 30px;
}

.agendaContainer > div > div {
  margin-bottom: 60px;
}

.agendaContainer li {
  line-height: 1.8em;
}

.agendaContainer li a {
  text-decoration: none;
  color: orange;
}

.newAlbumContainer a {
  text-decoration: none;
  color: orange;
}

.agendaContainer button {
  background: none;
  color: inherit;
  font: inherit;
  cursor: pointer;
  outline: inherit;
  padding: 15px;
  margin: 20px;
  text-align: center;
  text-decoration: none;
  border: 1px solid white;
}

.agendaContainer button:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}

#pastDates {
  display: none;
}

#hidePastDatesButton {
  display: none;
}

.mediaBottom {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  align-items: center;
  color: white;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.6)),
    url(images/instruments.jpg);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-size: cover;
  background-position: 50% 50%;
}

.mediaBottom > div {
  margin-top: 70px;
  margin-bottom: 20px;
}

.videosContainer {
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

.videosContainer iframe {
  box-shadow: 20px 19px 20px 0px #00000090;
  border-radius: 5px;
  max-width: 80vw;
  max-height: 45vw;
}

#photosContainer {
  margin-top: 50px;
  margin-left: 50px;
  margin-right: 50px;
  margin-bottom: 100px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 50px;
}

#photosContainer img {
  max-height: 315px;
  max-width: 80vw;
  cursor: pointer;
  box-shadow: 20px 19px 20px 0px #00000090;
  border-radius: 5px;
}

#photoModal {
  width: 100vw;
  height: 100vh;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  justify-content: center;
  align-items: center;
  padding: 80px;
  cursor: pointer;
}

#photoModal > div {
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.contactContent {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
  color: white;
  text-align: center;
  background-image: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7)),
    url(images/outdoors.jpg);
  background-repeat: no-repeat;
  background-attachment: scroll;
  background-size: cover;
  background-position: bottom;
}

nav {
  flex-grow: 1;
}

nav ol {
  display: flex;
  justify-content: space-around;
  list-style-type: none;
  margin: 0;
}

nav ol li {
  display: inline-block;
}

/* Style the links inside the navigation bar */
nav a {
  color: dimgray;
  text-decoration: none;
  font-family: BreveNews;
  font-size: 20px;
  padding: 1em 0.5em;
}

/* Change the color of links on hover */
nav a:hover {
  color: black;
}

/* Add a color to the active/current link */
nav a.active {
  color: black;
}

/* Style all font awesome icons */
.fa {
  padding: 10px;
  font-size: 30px;
  width: 20px;
  text-align: center;
  text-decoration: none;
  color: dimgray;
}

/* Add a hover effect if you want */
.fa:hover {
  color: black;
}

.linkButton {
  padding: 15px;
  text-align: center;
  text-decoration: none;
  color: white;
  border: 1px solid white;
}

.linkButton:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: black;
}

.contactData {
  margin: 50px;
  max-width: 1200px;
  text-align: center;
}

/* sunil ideas */
@media only screen and (min-width: 1900px) {
  .aboutContainer {
    margin-left: 20em;
  }
}

@media only screen and (max-width: 840px) and (min-width: 701px) {
  header {
    padding-left: 1em;
    padding-right: 0.5em;
  }
  a.fa {
    padding: 3px;
  }
}
@media only screen and (max-width: 700px) {
  header {
    display: block;
    padding-left: 1em;
    padding-right: 1em;
    text-align: center;
  }

  nav ol {
    padding-left: 0;
  }

  nav a {
    font-size: 18px;
  }

  footer {
    font-size: xx-small;
  }

  .aboutContainer {
    margin-left: 1em;
  }
  
  .aboutBottom {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0.2),
        rgba(0, 0, 0, 0.7)
      ),
      url(images/roof.jpg);
  }
  .videosContainer {
    margin-left: 0px;
    margin-right: 0px;
  }

  #photosContainer {
    margin-left: 0px;
    margin-right: 0px;
  }

  #photoModal {
    padding: 10px;
  }

  .videosContainer iframe {
    width: 450px;
  }
}
