@font-face {
    font-family: notosans;
    src: url('fonts/notosans.ttf') format('opentype'),
    url('fonts/notosans.ttf') format('truetype');
}

@font-face {
    font-family: oregano;
    src: url('fonts/oregano.ttf') format('opentype'),
    url('fonts/oregano.ttf') format('truetype');
}


body {
  font-family: 'Georgia', serif;
  font-family: 'oregano';
  margin: 0;
  background-color: #111;
  color: #f5f5f5;
  background: url('images/full_band_audience_tribfest_mainstage.jpg') top/cover no-repeat;    
}

header {
  background-color: transparent;
  padding: 0rem;
  display: flex;
  align-items: top;
  justify-content: space-between;
  background-color: rgba(0,0,0, 0.4);
}

#topbanner {
  width: 100%;
  background: linear-gradient(to right, black, black, rgba(0,0, 0, 0.8), transparent);
}

.logo {
  height: 10rem;
  margin-bottom: -5px;
}

nav ul {
  list-style: none;
  display: flex;
  gap: 1rem;
}

nav a {
  color: white;
  text-decoration: none;
  font-weight: bold;
}

a {
  color: white;
}

a:hover {
  color: rgba(255, 255, 255, 0.8);
}

.hero {
  text-align: center;
  padding: 2rem;
 
  color: #fff;
}

.about, .tour-dates, .media {
  padding: 2rem;
}

footer {
  position: relative;
  bottom: 0px;
  background-color: rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 0.5rem;
  font-size: 0.9rem;
  width: 100%;
}

main {
  height: 100%;  
  background-color: rgba(0,0,0, 0.4);
  font-size: 2em;
  padding: 20px;
    text-shadow:
      -2px -2px 0 black,
      2px -2px 0 black,
      -2px  2px 0 black,
      2px  2px 0 black;
}

section {
  margin: 0 0;
  padding: 0;
}


form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
}

input, textarea {
  padding: 0.5rem;
  font-size: 1rem;
  border: none;
  border-radius: 4px;
}

button {
  background-color: #c00;
  color: white;
  padding: 0.75rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}



nav {
  position: absolute; 
  top: 0px;
  right: 0px;
}


.menu-toggle {
  display: none;
  font-size: 3rem;
  cursor: pointer;
  color: #f5f5f5;
  margin-right: 20px;
}

.nav-links {
  display: flex;
  gap: 1rem;
  list-style: none;
  color: black !important;
  padding-right: 20px;
  font-size: 1.5em;
}

.nav-links li {
  border: white solid 2px;
  border-color: transparent;
  padding: 10px;
}

.nav-links li:hover {
  border: white solid 2px;
}

.gigbox {

}

.gigbox.previous {
  text-decoration: line-through;
}

.gigvid {
  border: white 2px solid;
  border-radius: 5px;
  margin-left: 20px;
  width: 90% !important;
  max-width: 500px;
}

ul {  
  list-style-type: none;
  padding-left: 20px; /* Optional: removes indentation */
}

.subhead {
  background-color: rgba(0,0, 0, 0.7);
  padding: 10px 20px;
  display: inline-block;
  margin-right: 20px;
}

.div_bandmember {
  position: relative;
  margin-bottom: 50px;
}

.img_wrapper {
  width: 50%;
  position: relative;
}

.div_bandmember img {
  width: 100%;
  border: white 2px solid;
  border-radius: 10px;
}

.div_bandmember h3 {
  position: absolute;
  top: 0px;
  left: 5px;
  margin-top: 0px;
  font-size: 1.2em;
  background-color: transparent;
  text-shadow:
    -2px -2px 0 black,
    2px -2px 0 black,
    -2px  2px 0 black,
    2px  2px 0 black;
}

.img_wrapper .member {
  position: absolute;
  bottom: 20px;
  right: 20px;
  font-size: 3em;  
  
  text-shadow:
      -2px -2px 0 black,
      2px -2px 0 black,
      -2px  2px 0 black,
      2px  2px 0 black;

}

.div_bandmember p {
  position: absolute;
  top: 0px;
  right: 0px;
  width: 45%;
  padding: 20px;
  border-radius: 5px;
  background-color: rgba(0, 0, 0, 0.8);
  font-size: 1.5rem;
}




@media (max-width: 768px) {
  main {
    font-size: 1.5em;
  }

  #topbanner {
    background-color: black;
    z-index: 1;
  }

  .about, .tour-dates, .media {
    padding: 1rem;
  }

  .menu-toggle {
    display: block;
  }

  nav {
    z-index: 10;
  }


  .nav-links {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 40px;
    right: 0;
    background-color: #222;
    padding: 1rem;
    width: 200px;
  }

  .nav-links.active {
    display: flex;
  }

  ul {  
    padding-left: 0px; /* Optional: removes indentation */
  }   

  .img_wrapper {
    width: 100%;
    margin-bottom: -30px;
  }

  .div_bandmember img {
    width: calc(100% + 60px);
    margin-left: -30px;    
  }

  .div_bandmember h3 {
    margin-top: -5px;
    font-size: 1em;
    margin-left: -40px;
  }

  .div_bandmember .member {
    font-size: 2em;
    margin-right: -30px;
  }

  .div_bandmember p {    
    position: relative;
    font-size: 1.4rem;
    width: calc(100% + 25px);
    margin-left: -30px; 
    margin-top: 23px;
  }
}
