/* uncomment for troubleshooting*/
/* * {
  border: 1px solid red;
} */

/* global style */
body {
  margin: 0;
  padding: 0;
  background-color: black;
  font-size: 1rem;
  /* 16px or 14px */
  /* line-height: 1.6; */
  /* 1.3–1.6 is good for readability */
  /* letter-spacing: 0.03em; */
  /* small spacing */
  font-family: Arial, sans-serif;
  color: white;
  box-sizing: border-box;
  overflow-x: hidden;
  /* needed because of the bandimage 100vw can not be changed to 100%...*/
}

#main_bg {
  z-index: -2;
  width: 100vw;
  margin: 0 auto;
}

#main_bg_mobile {
  display: none;
  z-index: -2;
  width: 100vw;
  height: 100vw;
  margin: 0 auto;
}

section,
.onstage_card {
  width: clamp(300px, 90vw, 1000px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-family: "Audiowide", sans-serif;
  font-size: 200%;
}

h2 {
  font-family: "Metal Mania", system-ui;
  font-size: 200%;
}

a {
  color: white;
}

a:hover {
  color: lightgray;
}

iframe {
  width: 100%;
  min-height: 315px;
}

/* mobile mode */
@media (max-width: 768px) {

  .overlay,
  .imgcontainer a,
  .member {
    display: none !important;
  }
}

.onstage_card {
  margin-bottom: 50px;
  gap: 20px;
  /*onstage card is also display flex*/
}

.onstage_card img {
  display: block;
  width: clamp(300px, 90vw, 1000px);
  object-fit: cover;
}

#links {
  width: clamp(300px, 90vw, 1000px);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border: none;
}

#links a img {
  width: 48px;
  background: white;
  border-radius: 100%;
  padding: 1px;
  transition: background 0.2s ease-in-out;
}

#links a img:hover,
#links a img:focus {
  background: gray;
  cursor: pointer;
}

#instagramm img:hover {
  background: linear-gradient(45deg,
      #f09433,
      #e6683c,
      #dc2743,
      #cc2366,
      #bc1888) !important;
}

#youtube img:hover {
  background: #ff0000 !important;
}

#spotify img:hover {
  background: #1DB954 !important;
}

#backstagepro img:hover {
  background: lightgray !important;
}

#spreadshop img:hover {
  background: orange !important;
}

#email img:hover {
  background: dodgerblue !important;
}

.maps {
  display: inline-block;
  padding: 10px 20px;
  background: lightgray;
  /* Google blue */
  color: black;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 500;
  transition: background 0.2s ease-in-out;
}

.maps:hover {
  background: gray;
  color: black;
}

footer {
  text-align: center;
  color: white;
  margin-top: 50px;
  margin-bottom: 100px;
}