body {
  margin: 0;
  font-family: Helvetica, sans-serif;
  background: none;
  padding-bottom: 100px;
}

.carousel {
  position: relative;
  overflow: hidden;
  width: 100vw;
  height: 60vh;
  margin-top: 10vh;
  margin-bottom: 0;
  padding: 0;
}

.carousel-track {
  display: flex;
  animation: scroll 25s linear infinite;
  height: 100%;
}

.carousel-slide {
  min-width: 100vw;
  height: 100%;
  transition: transform 1s ease-in-out;
}

.carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

@keyframes scroll {
  0% { transform: translateX(0); }
  16.66% { transform: translateX(-100vw); }
  33.33% { transform: translateX(-200vw); }
  50% { transform: translateX(-300vw); }
  66.66% { transform: translateX(-400vw); }
  83.33% { transform: translateX(-500vw); }
  100% { transform: translateX(0); }
}



/* Fixierter Header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: white;
  text-align: center;
  padding: 5px 20px;
  transition: all 0.3s ease;
  border-bottom: 1px solid black;

}

/* Standard Header */
header h1 {
  font-family: 'Playwrite DK Loopet', serif;
  font-size: 40px;
  font-style: italic;
  text-transform: uppercase;
  letter-spacing: 0.5em;
  line-height: 1em;
  color: black;
  margin: 10px auto;
  transition: all 0.3s ease;
  text-align: center;
}

/* Verkleinertes Logo beim Scrollen */
header.small h1 {
  font-size: 30px; /* Standard verkleinert auf Desktop */
}

/* Mobile & Tablet Anpassung */
@media (max-width: 768px) {
  header h1 {
    font-size: 60px; /* Logo groß auf Handy/Tablet */
  }

  header.small h1 {
    font-size: 20pt; /* 20pt beim Scrollen auf Handy/Tablet */
  }
}



.accordion-section {
  width: 100%;
  max-width: 100%;
  margin: 10 auto;
  font-family: Helvetica, sans-serif;
  font-size: 22pt;
  text-align: left;
  padding-top: 0;
}

.accordion {
  border-top: 1px solid black;
  width: 100%;
  font-family: Helvetica, sans-serif;
  font-size: 22pt;
  text-align: left;
}

.accordion-header {
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 1rem;
  font-size: 22pt;
  display: flex;
  justify-content: space-between;
  align-items: left;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.3s;
}

.accordion-header:hover {
  background-color: #f2f2f2;
}

.accordion .icon {
  font-size: 1.5rem;
  transition: transform 0.3s;
}

.accordion-content {
  max-width: 1000px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.4s ease;
  padding: 0 1rem;
  background-color: white;
}

.accordion-content p {
  margin: 1rem 0;
}

.accordion.active .accordion-content {
  max-height: 400px;
  padding: 1rem;
}

.accordion.active .icon {
  content: "-";
  transform: rotate(45deg);
}

.accordion a {
  color: black;
  text-decoration: underline;
}

.accordion a:hover {
  text-decoration: none;
}

.intro-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 80px 40px;
  max-width: 1200px;
  margin: auto;
  gap: 40px;
}

.intro-text {
  flex: 1 1 400px;
  max-width: 800px;
  font-size: 22pt;
  text-align: left;
}

.intro-text a {
  color: black;
  text-decoration: underline;
}

.intro-text a:hover {
  text-decoration: none;
}

.releases {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 40px 5%;
  gap: 40px 3%;
  box-sizing: border-box;
}

.release {
  flex: 0 1 30%;
  background: white;
  padding: 10px 0;
  box-sizing: border-box;
}

.release-title {
  font-size: 16pt;
  margin-bottom: 10px;
}

.release-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin-bottom: 10px;
}

.release-text {
  font-size: 14pt;
}

.release-meta {
  margin-top: 15px;
  font-size: 13pt;
}

.meta-block {
  margin-bottom: 10px;
}

.release-meta hr {
  border: none;
  border-top: 1px solid #333;
  margin: 10px 0;
  width: 100%;
}

/* Format-KÃ¤stchen als Link */
.format-tag {
  display: inline-block;
  padding: 4px 12px;
  border: 1px solid black;
  border-radius: 8px;
  color: black;
  text-decoration: none;
  font-size: 13pt;
  margin-bottom: 10px;
  transition: background-color 0.3s;
}

.format-tag:hover {
  background-color: #ddd;
}

/* Standard-Links in Meta und Footer */
.release-meta a:not(.format-tag),
.footer-content a {
  color: #555;
  background-color: #f4f4f4;
  text-decoration: none;
  padding: 2px 4px;
  transition: background-color 0.3s;
}

.release-meta a:not(.format-tag):hover,
.footer-content a:hover {
  background-color: lightgrey;
}

/* Footer */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: white;
  color: black;
  font-size: 14pt;
}

.footer-line {
  border-top: 2px solid black;
  max-width: 100%;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 25px;
  box-sizing: border-box;
}

.footer-content a {
  color: black;
  background-color: white;
  text-decoration: none;
  font-size: 14pt;
}

@media (max-width: 900px) {
  .releases {
    flex-direction: column;
    align-items: center;
  }

  .release {
    flex: 1 1 100%;
    max-width: 90%;
  }

  header h1 {
    font-size: 36px;
    letter-spacing: 0.1em;
  }

  .intro-text {
    text-align: left;
    font-size: 14pt;
    flex: 1 1;
  }

  .intro-section {
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 20px 20px;
  }

  .intro-text + .intro-text {
    margin-top: 0;
  }

  .release-title {
    font-size: 14pt;
  }

  .release-text {
    font-size: 12pt;
  }

  .footer-content {
    flex-direction: column;
    gap: 5px;
    text-align: center;
    font-size: 12pt;
    padding: 10px 20px;
  }


.accordion-section {

  padding-top: 0;
   }

  /* << HIER eingefügt */
  .accordion-header,
  .accordion-content,
  .accordion-content p {
    font-size: 14pt;
  }
}

@media (max-width: 900px) {
  footer {
    font-size: 12pt;
  }

  .footer-content {
    font-size: 12pt;
    padding: 10px 20px;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 0;
    text-align: left;
  }
}
