body {
  font-family: "Lato", sans-serif;
}
img {
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
.mySlides {
  display: none;
}
.myLink-color {
  color: #030303;
}
.myLink-color:hover {
  color: #005999;
}
div.scroll-container {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
  padding: 10px;
}
div.scroll-container img {
  padding: 10px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  height: 400px;
}
.social-icon {
  transition: transform 0.3s ease, color 0.3s ease;
  margin: 0 15px;
  color: #555; /* Grundfarbe */
}
.social-icon:hover {
  transform: scale(1.3);
}
.fa-instagram:hover {
  color: #e1306c;
}
.fa-youtube:hover {
  color: #ff0000;
}
.fa-tiktok:hover {
  color: #2af0ea;
}
.fa-spotify:hover {
  color: #1db954;
}
footer a {
  text-decoration: none;
}
.release-date {
  width: 33%;
}
#release img {
  max-width: 100%; /* Bildbreite darf die Containerbreite nicht überschreiten */
  height: auto; /* Höhe wird proportional angepasst */
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#release .w3-container {
  max-width: 100%;
  padding: 16px; /* Optional: Abstand für kleinere Bildschirme */
}

#menueLogo {
  width: 40px;
}
/*Modalfenster
 The Modal (background) */
/* Modal Hintergrund */
.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.4);
}

/* Modal Box */
.modal-content {
  background-color: #fefefe;
  margin: 8% auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
  max-width: 900px;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
}

/* Schließen-Button */
.close {
  color: #aaa;
  float: right;
  font-size: 28px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

.close:hover,
.close:focus {
  color: black;
  text-decoration: none;
}

/* Modal Flex Layout */
.modal-flex-container {
  display: flex;
  flex-direction: row;
  align-items: stretch; /* Beide Spalten gleich hoch */
  height: 100%; /* Container nimmt volle Höhe ein */
  gap: 2vw;
  padding: 2vw;
  box-sizing: border-box;
}

.modal-image {
  flex: 1.3 1 350px;
  display: flex;
  justify-content: center;
  align-items: stretch;
}

.modal-image img {
  height: 100%; /* Bild nimmt volle Höhe des Containers ein */
  width: auto;
  max-width: 100%;
  object-fit: cover; /* Bild füllt den Bereich, kann ggf. beschnitten werden */
  display: block;
  margin: auto;
  border-radius: 6px;
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}

.modal-text {
  flex: 1 1 300px;
  min-width: 200px;
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* Überschrift oben, Button unten */
  font-family: Georgia, serif;
  font-size: 0.9vw;
  color: #555;
  height: 100%;
}
/* Responsive Anpassung für kleine Bildschirme */
@media (max-width: 700px) {
  .modal-flex-container {
    flex-direction: column;
    align-items: stretch;
    gap: 2vw;
    padding: 2vw 0;
    height: auto;
  }
  .modal-image {
    flex: none;
    height: auto;
    min-height: 0;
  }
  .modal-image img {
    width: 100%;
    max-width: 90vw;
    height: auto;
    object-fit: contain;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
  .modal-text {
    flex: none;
    min-width: 0;
    font-size: 3vw;
    height: auto;
    margin-top: 2vw;
  }
}

@media screen and (max-width: 600px) {
  .release-container {
    flex-direction: column !important;
    gap: 2rem !important;
  }

  .release-container img,
  .release-container > div {
    width: 100% !important;
    box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
  }
}

/*Collage*/

.row {
  display: flex;
  flex-wrap: wrap;
  padding: 0 4px;
}

/* Create two equal columns that sits next to each other */
.column {
  flex: 50%;
  padding: 0 4px;
}

.column img {
  margin-top: 8px;
  vertical-align: middle;
  width: 100px;
  height: auto;
}

/* Smaller images on mobile screens */
@media screen and (max-width: 600px) {
  .row .column img {
    width: 60px;
    margin: 6px auto;
    display: block;
  }

  /* Zeige mobil nur die ersten 7 Bilder pro Spalte */
  .row .column img:nth-child(n + 8) {
    display: none;
  }
}
