@font-face {
  font-family: 'Roboto';
  font-weight: 300;
  src: url('/fonts/roboto-v30-latin-300.woff2') format('woff2');
  font-display: swap;
}

body {
  margin: 0;
  padding: 0;
  background-color: black;
  color: #aaaaaa;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
  font-size: 18pt;
  line-height: 1.6;
}

a {
  color: red;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: grey;
}

a:visited {
  color: red;
}


h1 {
  font-weight: 300;
  font-size: 24pt;
  color: red;
  margin: 40px 0 20px;
}

.navbar {
  background-color: #111;
  border-bottom: 2px solid red;
  padding: 15px 20px;
  text-align: center;
  position: sticky;
  top: 0;
  z-index: 999;
}

/* Navigation Links */
.nav-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
  gap: 10px;
  font-size: 15pt;
}

.nav-links li {
  display: flex;
  align-items: center;
  font-family: 'Roboto', sans-serif;
  font-weight: 300;
}

.nav-links li:not(:last-child)::after {
  content: '|';
  color: red;
  margin: 0 10px;
  font-size: 1em;
  line-height: 1;
  transform: translateY(1px);
}

/* Link Styles */
.nav-links li a {
  color: red;
  text-decoration: none;
  font-weight: 300;
  transition: color 0.3s ease;
}

.nav-links li a:hover {
  color: grey;
}

.nav-links li a:visited {
  color: red;
}




@media (max-width: 600px) {
  .nav-links {
    flex-direction: column;
    gap: 15px;
  }
}


/* Logo */
.logo-container {
  text-align: center;
  margin-top: 10px;
}

.logo {
  width: 100%;
  max-width: 1000px;
  height: auto;
}

/* Main */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  text-align: center;
}

.band-image {
  width: 90%;
  max-width: 800px;
  height: auto;
  margin: 40px auto;
  display: block;
}

.band-members {
  margin-bottom: 40px;
	  font-size: 15px;
}

.cover-row {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  margin: 40px 0;
}

.cover-row img {
  width: 200px;
  height: auto;
  border: 2px solid red;
}

.song-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
  gap: 40px;
  padding: 40px 0;
}

.song img {
  width: 200px;
  max-width: 100%;
  height: auto;
  border: 0px solid red;
  margin-bottom: 10px;
}

.song a {
  display: block;
  margin: 0px 0;
  color: red;
  text-decoration: none;
}

.song a:hover {
  color: grey;
}

/* Footer */
.footer {
  background-color: #111;
  color: #aa0000;
  text-align: center;
  padding: 40px 20px;
  border-top: 2px solid red;
  font-size: 16pt;
}

.footer a {
  color: red;
  text-decoration: none;
}

.footer a:hover {
  color: grey;
}

.insta-icon {
  width: 40px;
  height: auto;
  margin-top: 10px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.gallery-item {
  text-align: center;
}

.gallery-item img {
  width: 200px;
  height: auto;
  border: 0px solid red;
}

.gallery-item p {
  margin-top: 10px;
  font-size: 14pt;
  color: #aaaaaa;
}

/* Modal Styles */
.image-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.8);
  position: fixed;
  z-index: 1001;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.image-modal img.modal-content {
  max-width: 80%;
  max-height: 80%;
  border: 0px solid red;
}

.close-btn {
  position: absolute;
  top: 30px;
  right: 50px;
  color: red;
  font-size: 40px;
  font-weight: lighter;
  cursor: pointer;
  z-index: 1002;
}

.prev-btn, .next-btn {
  position: absolute;
  top: 50%;
  font-size: 40px;
  color: red;
  font-weight: lighter;
  cursor: pointer;
  user-select: none;
  z-index: 1002;
  transform: translateY(-50%);
}

.prev-btn {
  left: 30px;
}

.next-btn {
  right: 30px;
}

/* Auf Mobil: Modal deaktivieren */
@media (max-width: 600px) {
  .gallery-item img {
    pointer-events: none;
  }

  .image-modal {
    display: none !important;
  }
}



/* Responsive Anpassungen */
@media (max-width: 600px) {
  h1 {
    font-size: 20pt;
  }

  .nav-links {
    flex-direction: row;
	 
    gap: 10px;
	    font-size: 15pt;
  }

  .logo {
    width: 90%;
  }

  .band-image {
    width: 90%;
  }
.song-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    align-items: center;
  }

  .song img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
}

