/* Basis-Styles */
body {
    font-family: 'Courier New', sans-serif; /* Schriftart */
    line-height: 1.6; /* Zeilenhöhe */
    margin: 0; /* Kein Standardabstand */
    padding: 0; /* Kein Standardabstand */
}

header {
    text-align: center; /* Header-Inhalte zentrieren */
    margin-bottom: 20px; /* Abstand nach unten */
}

.responsive-image {
    width: 100%; /* Volle Breite */
    height: auto; /* Automatische Höhe */
}
h1 {
    color: #2c3e50; /* Dunkle Schriftfarbe */
}

h2 {
    color: #34495e; /* Hellere Schriftfarbe */
    text-align: center; /* Zentrales H2-Element */
}

/* Sektionen */
section {
    margin: 20px; /* Abstand für Sektionen */
    padding: 20px; /* Innenabstand */
    border: 1px solid #ccc; /* Rahmen */
    border-radius: 8px; /* Abgerundete Ecken */
    background-color: #f9f9f9; /* Hintergrundfarbe */
    text-align: center; /* Zentriert den Text in allen Sektionen */
}

/* Referenzen-Slideshow */
.slideshow-section {
    margin: 50px auto;
    text-align: center;
}

.slideshow-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border: 2px solid #ddd;
    border-radius: 10px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.slide {
    display: none;
    padding: 20px;
    text-align: center;
    font-size: 1.2rem;
    color: #333;
}

.slide.active {
    display: block;
}

.prev, .next {
    cursor: pointer;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: auto;
    padding: 10px;
    color: white;
    font-weight: bold;
    font-size: 18px;
    border: none;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    user-select: none;
}

.prev {
    left: 10px;
}

.next {
    right: 10px;
}

.prev:hover, .next:hover {
    background: rgba(0, 0, 0, 0.8);
}

.dot-container {
    margin-top: 10px;
}

.dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 5px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
}

.dot.active {
    background-color: #717171;
}

/* Medien-Sektion */
/* Stellt den Container des Videos responsiv ein */
.responsive-video {
    position: relative; 
    padding-bottom: 56.25%; /* 16:9 Aspect Ratio */
    padding-top: 25px; 
    height: 0;
}

/* Stellt das iframe des Videos so ein, dass es den Container voll ausfüllt */
.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Moderner Audio-Player */
.custom-audio-player {
  max-width: 600px;
  margin: 0 auto;
  background: #f2f2f2;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.custom-audio-player audio {
  width: 100%;
  margin-bottom: 20px;
  border-radius: 10px;
}

.custom-playlist {
  list-style: none;
  padding: 0;
  margin: 0;
}

.custom-playlist li {
  padding: 10px 15px;
  margin-bottom: 8px;
  background-color: #fff;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  border: 1px solid #ccc;
}

.custom-playlist li:hover {
  background-color: #e6e6e6;
}

.custom-playlist li.active {
  background-color: #d6eaff;
  font-weight: bold;
  border-color: #2a8dd2;
}

/* Galerie */
.gallery {
    margin: 20px 0; /* Abstand nach oben und unten */
}

.gallery-images {
    display: flex; /* Flexbox für die Galerie */
    flex-wrap: wrap; /* Zeilenumbruch */
    justify-content: center; /* Zentrierung */
}

.gallery-image {
    width: 150px; /* Breite der Galerie-Bilder */
    height: 150px; /* Höhe der Galerie-Bilder */
    object-fit: cover; /* Verhindert Verzerrung der Bilder */
    margin: 10px; /* Abstand zwischen den Bildern */
    cursor: pointer; /* Zeigt, dass die Bilder klickbar sind */
    border-radius: 8px; /* Abgerundete Ecken */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Schatten für 3D-Effekt */
}

/* Modal für große Bilder */
.modal {
    display: none; /* Standardmäßig ausblenden */
    position: fixed; /* Fixiert in der oberen Ecke */
    z-index: 1; /* Über anderen Elementen anzeigen */
    left: 0;
    top: 0;
    width: 100%; /* Volle Breite */
    height: 100%; /* Volle Höhe */
    overflow: auto; /* Scrollen bei Bedarf */
    background-color: rgba(0, 0, 0, 0.8); /* Dunkler Hintergrund */
}

.modal-content {
    margin: auto; /* Zentriert das Bild */
    display: block; /* Bild anzeigen */
    width: 80%; /* Bildbreite */
    max-width: 700px; /* Maximale Breite des Bildes */
}

.close {
    position: absolute; /* Fixiert in der oberen Ecke */
    top: 15px;
    right: 35px;
    color: #fff; /* Weiße Farbe für den Schließen-Button */
    font-size: 40px; /* Größe des Schließen-Buttons */
    font-weight: bold; /* Fett gedruckt */
    transition: 0.3s; /* Weicher Übergang */
}

.close:hover,
.close:focus {
    color: #bbb; /* Farbänderung beim Hover */
    text-decoration: none; /* Kein Unterstrich */
    cursor: pointer; /* Zeigt, dass es klickbar ist */
}

/* Kontakt-Sektion */
form {
    display: flex; /* Flexbox für das Formular */
    flex-direction: column; /* Spaltenanordnung */
    align-items: center; /* Zentriert die Formularelemente */
}

form input, form textarea {
    width: 80%; /* Breite der Formularelemente */
    max-width: 500px; /* Maximale Breite */
    padding: 10px; /* Innenabstand */
    margin: 10px 0; /* Abstand zwischen den Elementen */
    border: 1px solid #ccc; /* Rahmen */
    border-radius: 4px; /* Abgerundete Ecken */
}

/* Footer */
footer {
    text-align: center; /* Zentriert den Footer */
    margin: 20px 0; /* Abstand nach oben und unten */
}
/* Testimonials Styling */
.container {
  border: 2px solid #ccc;
  background-color: #eee;
  border-radius: 5px;
  padding: 16px;
  margin: 16px 0;
}

.container::after {
  content: "";
  clear: both;
  display: table;
}

.container img {
  float: left;
  margin-right: 20px;
  border-radius: 50%;
}

.container span {
  font-size: 20px;
  margin-right: 15px;
}

@media (max-width: 500px) {
  .container {
    text-align: center;
  }

  .container img {
    margin: auto;
    float: none;
    display: block;
  }
}

.client-slider {
  background: #fafafa;
  padding: 3rem 1rem;
  text-align: center;
}

.client-slider h2 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
  color: #333;
}

.slider {
  overflow: hidden;
  position: relative;
  width: 100%;
}

.slide-track {
  display: flex;
  animation: scroll 30s linear infinite;
  width: max-content;
}

.slide {
  flex: 0 0 auto;
  width: clamp(120px, 20vw, 250px);
  height: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: filter 0.3s ease, transform 0.3s ease;
}

.slide img {
  max-height: 80px;
  max-width: 90%;
  object-fit: contain;
  padding: 0 1rem;

}

@keyframes scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.kontakt {
  background: #f9f9f9;
  padding: 4rem 2rem;
  text-align: center;
}

.kontakt-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  align-items: center;
}

.kontakt-info i {
  margin-right: 0.5rem;
  color: #8b0000;
}

.kontakt-button {
  display: inline-block;
  padding: 1rem 2rem;
  background: #8b0000;
  color: #fff;
  text-decoration: none;
  border-radius: 30px;
  transition: background 0.3s ease;
}

.kontakt-button:hover {
  background: #a30000;
}
.startbild-wrapper {
  display: flex;
  justify-content: center;
  padding: 3rem 1rem;
  background-color: #f8f8f8;
}

.startbild-container {
  max-width: 1000px;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
  background-color: #fff;
}

.startbild-img {
  width: 100%;
  display: block;
  filter: grayscale(5%) contrast(105%);
}

.startbild-caption {
  padding: 1.5rem;
  text-align: center;
  background-color: #fff;
}

.startbild-caption h1 {
  margin: 0;
  font-size: 2.5rem;
  color: #111;
}

.startbild-caption p {
  margin: 0.5rem 0 0;
  font-size: 1.2rem;
  color: #666;
}
.epk-download {
  text-align: center;
  margin: 3rem 0;
}

.download-button {
  background-color: #222;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  transition: background-color 0.3s ease;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.download-button:hover {
  background-color: #444;
}
.cta-button {
  background-color: #c0392b;
  color: white;
  padding: 1rem 2rem;
  font-size: 1.1rem;
  border: none;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.cta-button:hover {
  background-color: #a93226;
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}
