/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f4f9;
    color: #333;
    line-height: 1.6;
}

/* Logo */
.logo {
    display: inline-block; /* Damit das Logo wie ein Inline-Element funktioniert */
    text-decoration: none; /* Entfernt den Text-Link-Stil */
    padding-left: 10%;
  }
  
  .logo img {
    width: 130px; /* Passe die Breite des Logos an */
    height: auto; /* Behält das Seitenverhältnis des Bildes bei */
    display: block; /* Entfernt mögliche Abstände durch Inline-Darstellung */
    border-radius: 5px; /* Optional: abgerundete Ecken */
    transform: rotate(+10deg); /* Rotiert das Logo */
  }

/* Header */
.header {
    background-color: #1e1e2f;
    color: #fff;
    padding: 10px 20px;
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Fügt eine Linie ein */
.underline{
  border-bottom: 3px solid #e63946;
  width: 100%;
  margin: 10px auto;
}

.navbar a{
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
/* Zentrierte Links */
.nav-links {
    display: flex;
    list-style: none;
    gap: 30px; /* Abstand zwischen den Links */
    margin: 0 auto; /* Zentriert die Links */
    padding: 0;
  }
.nav-links li {
    margin: 0 10px;
}
.nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
}
.nav-links a:hover {
    text-decoration: underline;
    text-decoration-color: red; /* Unterstrich rot färben */
    text-decoration-thickness: 3px; /* Unterstrich dicker machen */
}

/* Icons Container */
.navbar .icon {
    font-size: 2rem; /* Icon-Größe */
    color: #fff; /* Standardfarbe der Icons */
    text-decoration: none;
    margin-left: 10px; /* Abstand zwischen den Icons */
    transition: color 0.3s ease, transform 0.3s ease;
  }
  
  /* Instagram Hover-Farbe */
  .navbar .icon.instagram:hover {
    color: #E1306C; /* Instagram-Farbe */
  }
  
  /* YouTube Hover-Farbe */
  .navbar .icon.youtube:hover {
    color: #FF0000; /* YouTube-Farbe */
  }

  /* Abstand der Icons vom Rand */
.navbar > .icon {
    margin-right: 20px; /* Abstand vom rechten Rand */
  }


/* Trailer-Video section */
.trailer-video-conten {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: auto;
    margin-top: 25px;
    padding-bottom: 50px;
}

.trailer-video-conten video {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
}


/* Hero Section */
.hero {
    padding: 0 100px; /* 100px Abstand links und rechts */
    height: 10vh;
    padding-bottom: 70px;
    padding-top: 70px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    text-align: center;
}
.hero-content {
    max-width: 800px;
}

.hero-content .adjektive{
  word-spacing: 10px; /* Erhöhe den Abstand zwischen den Wörtern */
  font-weight: bold; /* Optional: Fett für mehr Wirkung */
}

.cta-button {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 20px;
    background-color: #e63946;
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    border-radius: 5px;
}
.cta-button:hover {
    background-color: #d62828;
}

/* About Section */

/* Grundlayout */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background-color: #121212;
    color: #fff;
  }
  
  /* About-Me-Container */
  .about-me {
    display: flex;
    flex-direction: row;
    justify-content: center; /* Zentriert Inhalt vertikal */
    padding: 50px;
    gap: 30px;
  }
  

  /* Bildbereich */
  .image-section img {
    width: 400px;
    border-radius: 10px;
    margin-top: 20px; /* Abstand zwischen den Bildern */
    display: block; /* Bilder werden als Block-Elemente angezeigt */
    margin-left: auto; /* Zentriert die Bilder horizontal */
    margin-right: auto; /* Zentriert die Bilder horizontal */
  }
  
  /* Textbereich */
  .text-section {
    max-width: 600px;
  }
  
  .text-section h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: #ff4d4d;
  }
  
  .text-section h2 {
    font-size: 1.8rem;
    margin-top: 20px;
    color: #ffcc00;
  }
  
  .text-section p {
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 10px;
    color: #d1d1d1;
  }

/* Shows Section */
.shows {
    padding: 40px 20px;
    text-align: center;
}
.video-gallery {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
}
.video iframe {
    width: 300px;
    height: 200px;
    border: none;
}

/* Contact Section */

.contact h2 {
  font-size: 2.5rem;
  font-weight: bold;
  color: #ffcc00; /* Gelb für gute Sichtbarkeit */
  text-align: center;
  margin-bottom: 20px;
  position: relative;
}

.contact-form {
  max-width: 500px;
  margin: 20px auto;
  padding: 20px;
  background: #1e1e2f; /* Gleiches Design wie Contact Section */
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
  text-align: left;
}

.contact-form label {
  display: block;
  font-weight: bold;
  margin-top: 10px;
  color: #ffcc00;
}

.contact-form input,
.contact-form textarea {
  width: calc(100% - 20px); /* Breite minus 20px für Abstand */
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #f4f4f9;
  color: #333;
}

.contact-form textarea {
  height: 120px;
}

.contact-form .cta-button {
  width: 100%;
  margin-top: 15px;
  padding: 12px;
  background-color: #e63946;
  color: #fff;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  transition: background 0.3s;
}

.contact-form .cta-button:hover {
  background-color: #d62828;
}



/* Footer */
.footer, .footer .dat-imp{
    text-align: center;
    padding: 10px 20px;
    background-color: #1e1e2f;
    color: #fff;
}

.footer .dat-imp:hover {
  color: #d62828; /* Farbe beim Hover */
  text-decoration: underline; /* Unterstrich beim Hover */
}

/* Styling für den DDC-Link */
.footer a.ddc {
  color: #ffffff; /* Farbe für den Link */
  text-decoration: none; /* Entfernt den Unterstrich */
  transition: color 0.3s ease; /* Sanfter Übergang bei Hover */
}

.footer a.ddc:hover {
  color: #d62828; /* Farbe beim Hover */
  text-decoration: underline; /* Unterstrich beim Hover */
}


/* Mobile-Friendly Anpassungen */
@media (max-width: 768px) {
  /* Navigation */
  .navbar {
    flex-direction: column; /* Navigationselemente untereinander */
    align-items: center;
  }

  .nav-links {
    flex-direction: column; /* Links untereinander */
    gap: 10px; /* Reduziere den Abstand zwischen den Links */
  }

  .nav-links li {
    margin: 0; /* Entfernt zusätzliche Abstände */
  }

  /* Hero Section */
  .hero {
    padding: 20px; /* Reduziere den Abstand */
    height: auto;
  }

  .hero-content {
    max-width: 100%; /* Nutze die volle Breite */
    text-align: center; /* Zentriere den Text */
  }

  /* About Section */
  .about-me {
    flex-direction: column; /* Inhalte untereinander */
    padding: 20px;
    gap: 20px;
  }

  .image-section img {
    width: 100%; /* Bilder passen sich der Breite an */
    max-width: 400px; /* Maximalbreite für größere Bilder */
  }

  .text-section {
    max-width: 100%; /* Nutze die volle Breite */
    text-align: center; /* Zentriere den Text */
  }

  /* Columns */
  .columns {
    flex-direction: column; /* Spalten untereinander */
    gap: 10px;
  }

  /* Shows Section */
  .video-gallery {
    flex-direction: column; /* Videos untereinander */
    gap: 10px; /* Reduzierter Abstand */
  }

  .video iframe {
    width: 100%; /* Videos nutzen die volle Breite */
    height: auto;
  }

  /* Contact Section */
  .contact {
    padding: 20px;
  }

  .email-link {
    width: 100%; /* Knopf füllt die volle Breite */
    text-align: center;
  }
}

@media (max-width: 480px) {
  .navbar {
    display: flex;
    align-items: center; /* Vertikale Ausrichtung */
    justify-content: space-between; /* Elemente gleichmäßig verteilen */
    flex-wrap: wrap; /* Falls Platz zu wenig ist, Elemente umbrechen */
    padding: 10px 15px; /* Optional mehr Platz */
  }

  .nav-links {
    display: flex;
    flex-direction: row; /* Horizontal statt vertikal */
    gap: 10px; /* Abstand zwischen den Links */
  }

  .nav-links li {
    list-style: none;
  }

  .nav-links a {
    text-decoration: none;
    color: #fff;
    font-weight: bold;
    font-size: 16px;
  }

  /* Falls das Logo oder Icons nicht richtig platziert sind */
  .logo {
    margin-right: auto; /* Logo bleibt links */
  }

  .logo img {
    width: 100px; /* Verkleinert das Logo */
    height: auto;
  }

  .icon {
    display: flex;
    gap: 10px;
  }
}
