/* Allgemeine Styles */
body {
  font-family: 'PlayfairDisplay', sans-serif;
  background-color: very-light-grey;
  font-display: swap;
}

header {
  background-color: #f8f8f8;
  padding: 10px;
}

.container {
  display: flex;
  justify-content: center;
}

.left-column,
.right-column {
  flex: 0 0 20%;
}

.middle-column {
  flex: 0 0 60%;
}

.logo {
  font-family: 'Logo';
  font-size: 4em;
  padding-left: 0.2em;
  font-display: swap;
  ;
}

.menu {
  display: flex;
  list-style: none;
  padding: 0;
}

.menu ul {
  width: 100%;
}


.menu li {
  margin-right: 0;
  float: left;
  width: 18%;
}

.menu li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}

.mobile-menu {
  display: none;
  list-style: none;

}

.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  grid-gap: 20px;
}

.image {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* Vertikal zentrieren */
  position: relative;
  overflow: hidden;
}

.image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  transition: transform 0.3s;
  border-radius: 1%;
}

.image:hover img {
  transform: scale(1.1);
}

.caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.8);
  color: white;
  font-size: 14px;
  font-family: 'FiraSans', sans-serif;
}

.caption p {
  margin: 5px 0;
}


.artist-info {
  display: flex;
  align-items: center;
  margin: 1em;
  margin-top: 5em;
  margin-bottom: 5em;
}

.image-container {
  flex: 0 0 30%;
  margin-right: 20px;
  max-width: 30%;
}

.image-container img {
  max-width: 100%;
  height: auto;
  border-radius: 20%;
}

.text-container {
  flex: 1 1 auto;
}

.text-container h2 {
  font-size: 24px;
  margin-bottom: 10px;
}

.text-container p {
  margin-bottom: 10px;
}

  /* Dreieck-Styling */
  .triangle {
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-bottom: 10px solid black;
  }

  /* Link-Styling */
  .scroll-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    cursor: pointer;
    z-index: 9999;
  }

  .scroll-to-top a {
    text-decoration: none;
    color: black;
    font-size: 14px;
    margin-right: 5px;
  }

 .footer-content{
    text-align: center;
 }


/* Lightbox-Overlay */
#lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 9999;
  text-align: center;
}

#lightbox-image {
  max-width: 90%;
  max-height: 80%;
  margin-top: 5%;
  cursor: auto;
}

#caption {
  color: white;
  font-size: 16px;
  margin-top: 10px;
}

.close-btn {
  color: white;
  font-size: 30px;
  font-weight: bold;
  position: absolute;
  top: 10px;
  right: 20px;
  cursor: pointer;
}

/* Media Query für mobile Geräte */

@media only screen and (max-width: 768px) {
  .desktop-menu {
    display: none;
  }

  .mobile-menu {
    display: block;
  }

  #burger-menu {
    display: block;
    cursor: pointer;
  }

  .burger-line {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 5px 0;
  }

  #menu-items {
    display: none;
    list-style: none;
  }

  #menu-items.show {
    display: block;
  }

  #menu-items li {
    margin: 10px 0;
  }

  #menu-items li a {
    text-decoration: none;
    /* Entfernt die Unterstreichung */
    color: black;
    /* Setzt die Schriftfarbe auf Schwarz */
    font-size: 18px;
    /* Anpassen der Schriftgröße (optional) */
  }


  .menu {
    display: none;
    flex-direction: column;
    padding-left: 0;
    justify-content: space-between;
  }



  .container {
    display: block;
  }

  .left-column,
  .right-column {
    display: none;
  }

  .middle-column {
    width: 100%;
  }

  .artist-info {
    flex-direction: column;
    /* Elemente in einer Spalte anordnen */
    margin-top: auto;
  }

  .text-container,
  .image-container {
    flex: 1 1 100%;
    /* Füllt den gesamten verfügbaren Platz in der mobilen Ansicht */
    max-width: 90%;
  }

  .image-container .image {
    max-width: 60%;
    margin-left: 20%;
  }
}

/* Media Query für Desktop-Geräte */

@media only screen and (min-width: 769px) {

  .mobile-menu {
    display: none;
  }

  .menu.expanded {
    display: block !important;
  }

  .menu li {
    list-style: none;
  }
}