/* Grundlegendes Styling */
body {
  margin: 0;
  font-family: "Roboto", sans-serif;
  background-color: #111;
  color: #fff;
  margin-top: 20px;
  text-shadow: 0 0 3px #e60000, 0 0 6px #e60000;

  overflow-x: hidden;
}

/* Styling für die Navigationsleiste */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 2px 2px;
  background-color: rgba(0, 0, 0, 0.9);
  z-index: 1000;
  flex-wrap: wrap;
}

.navbar .left-icons,
.navbar .right-icons {
  display: flex;
  flex-direction: column;
}

.navbar .icon-row {
  display: flex;
  justify-content: center;
}

.navbar .icon-row a img {
  width: 40px;
  height: 40px;
  margin: 5px;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.navbar .icon-row a img:hover {
  transform: scale(1.1);
}

.navbar .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.navbar .nav-link {
  color: #fff;
  text-shadow: 0 0 3px #e60000, 0 0 6px #e60000;
  text-decoration: none;
  margin: 0 15px;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  padding: 10px 20px;
  border: 2px solid #e60000;
  border-radius: 30px;
  background-color: transparent;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.75);
}

.navbar .nav-link:hover {
  background-color: #e60000;
  color: #fff;
  box-shadow: 0 6px 20px rgba(230, 0, 0, 1);
}

/* Anpassung für kleinere Bildschirme */
@media screen and (max-width: 768px) {
  .navbar {
    flex-direction: column;
  }

  .navbar .left-icons,
  .navbar .right-icons {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .navbar .icon-row {
    flex-wrap: wrap;
  }
}

/* Hero-Bereich */
.hero-section {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

#bg-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding-top: 30vh;
}

.hero-section h1 {
  font-size: 4em;
  color: #fff; /* Weißer Text */
  margin: 0;
  text-shadow: 0 0 2px #e60000, 0 0 4px #e60000; /* Roter Glow-Effekt */
}

.hero-section p {
  font-size: 1.5em;
  margin: 10px 0;
}

/* Styling für die Buttons */
#toggle-sound,
.nav-link,
.read-license,
.send-message-button {
  background-color: transparent;
  color: #e60000;
  padding: 15px 30px;
  border: 2px solid #e60000;
  border-radius: 30px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
  display: inline-block;
  text-align: center;
  box-shadow: 0 4px 15px rgba(230, 0, 0, 0.75);
  margin: 0 10px;
}

#toggle-sound:hover,
.nav-link:hover,
.read-license:hover,
.send-message-button:hover {
  background-color: #e60000;
  color: #fff;
  box-shadow: 0 6px 20px rgba(230, 0, 0, 1);
}

/* Musikplayer Sektion */
.section {
  padding: 60px 20px;
  text-align: center;
  position: relative;
}

.beatstars-player iframe {
  max-width: 100%;
  border: none;
}

/* Lizenzkarten */
.licensing-info {
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  padding: 40px 20px;
  text-align: center;
}

.licensing-info h2 {
  font-size: 2.5em;
  color: #fff;
  margin-bottom: 30px;
  font-weight: bold;
  text-shadow: 0 0 5px #e60000, 0 0 10px #e60000;
}

.license-card {
  background-color: #1a1a1a;
  color: #fff;
  padding: 20px;
  margin: 20px;
  border-radius: 10px;
  display: inline-block;
  vertical-align: top;
  width: 18%;
  text-align: center;
  font-weight: bold;
  font-size: 1.1em;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  position: relative;
}

.license-card.popular {
  border: 2px solid #e60000;
}

.license-card h3,
.license-card h4 {
  margin-bottom: 10px;
  font-size: 1.8em;
  text-shadow: 0 0 3px #e60000, 0 0 6px #e60000;
}

.license-card h4 {
  font-size: 2.2em;
}

.license-card p,
.license-card ul {
  margin: 5px 0;
  font-size: 1em;
  font-weight: normal;
  text-shadow: 0 0 2px #e60000, 0 0 4px #e60000;
}

.license-card ul {
  list-style-type: none;
  padding: 0;
}

.license-card ul li {
  margin: 5px 0;
}

/* Responsive Anpassungen für Lizenzkarten */
@media screen and (max-width: 1200px) {
  .license-card {
    width: 45%;
    margin: 10px auto;
  }
}

@media screen and (max-width: 768px) {
  .license-card {
    width: 90%;
    margin: 10px auto;
  }
}

/* Lizenz-Modal */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.8);
}

.modal-content {
  background-color: rgba(26, 26, 26, 0.95);
  color: #fff;
  margin: 10% auto;
  padding: 20px;
  border: 2px solid #e60000;
  width: 80%;
  border-radius: 10px;
  position: relative;
}

.modal-content h2 {
  color: #fff;
  text-shadow: 0 0 3px #e60000, 0 0 6px #e60000;
}

.modal-content p {
  color: #fff;
  text-shadow: 0 0 2px #e60000, 0 0 4px #e60000;
}

.close {
  color: #e60000;
  float: right;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
}

.close:hover {
  color: #ff3333;
}

/* Kontaktkarten */
.contact-card {
  background-color: rgba(26, 26, 26, 0.95);
  color: #fff;
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  cursor: pointer;
  transition: background-color 0.3s ease, box-shadow 0.3s ease;
  text-decoration: none;
}

.contact-card:hover {
  background-color: #e60000;
  box-shadow: 0 6px 20px rgba(230, 0, 0, 1);
}

.contact-card p {
  margin: 0;
  font-size: 1.2em;
}

.contact-card a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-card a:hover {
  color: #fff;
}

/* Icon Styling */
.contact-icon {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 10px;
}

/* Kontaktformular */
.contact-form {
  background-color: rgba(26, 26, 26, 0.8);
  padding: 20px;
  margin: 20px auto;
  border-radius: 10px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  color: #fff;
}

.contact-form input,
.contact-form textarea {
  width: 90%;
  padding: 10px;
  margin: 10px 0;
  border: 1px solid #e60000;
  border-radius: 5px;
  background-color: #111;
  color: #fff;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #888;
}

.send-message-button {
  padding: 10px 20px;
  margin-top: 10px;
}

/* Google Maps */
.map-container iframe {
  width: 100%;
  height: 400px;
  border: 0;
  border-radius: 10px;
}

/* Info-Karussell */
.info-carousel {
  width: 100%;
  max-width: 800px;
  margin: 40px auto;
  position: relative;
  padding: 20px;
}

.carousel-container {
  position: relative;
  overflow: hidden;
}

.carousel-content {
  display: flex;
  transition: transform 0.5s ease-in-out;
  flex-direction: row;
}

.carousel-item {
  font-size: 1.5em;
  color: #fff;

  margin-top: 20px;
  text-shadow: 0 0 3px #e60000, 0 0 6px #e60000;

  min-width: 100%;
  box-sizing: border-box;
  padding: 20px;
  flex-shrink: 0;
  background-color: rgba(26, 26, 26, 0.8);
  position: relative;
}

.carousel-item h3 {
  font-size: 2em;
  color: #fff;
  text-shadow: 0 0 4px #e60000, 0 0 8px #e60000;
  margin-bottom: 20px;
}

.carousel-item h4 {
  font-size: 1.5em;
  color: #fff;

  margin-top: 20px;
  text-shadow: 0 0 3px #e60000, 0 0 6px #e60000;
}

.carousel-item p,
.carousel-item ul {
  font-size: 1.2em;
  line-height: 1.5;
  color: #fff;
  text-shadow: 0 0 2px #e60000, 0 0 4px #e60000;
}

/* Karussell-Items */
.carousel-item ul {
  list-style-type: none; /* Entfernt die Aufzählungszeichen */
  padding: 0; /* Entfernt die Einrückung links */
  margin: 5px 0;
  list-style-type: disc;
  margin-left: 20px;
}

/* 1. Karussell-Navigation z-index erhöhen */
.carousel-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 3em;
  color: #e60000;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 10px;
  cursor: pointer;
  user-select: none;
  border-radius: 50%;
  z-index: 2000; /* Erhöht, um über anderen Elementen zu liegen */
}

/* 3. Hover-Effekt beim Google Maps Block entfernen */
.map-container.contact-card:hover {
  background-color: rgba(26, 26, 26, 0.8);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* 4. Gemeinsames Styling für Überschriften */
.common-heading {
  font-size: 2.2em; /* Gleiche Größe wie "MAKE AN OFFER" */
  color: #fff;
  text-shadow: 0 0 3px #e60000, 0 0 6px #e60000;
  margin-bottom: 20px;
  font-weight: bold;
}

/* Spezifisches Styling für die Hero-Überschrift */
.hero-section .common-heading {
  font-size: 4em; /* Beibehaltung der ursprünglichen Größe */
}

/* Weitere Anpassungen bleiben unverändert */
.left-nav {
  left: 10px;
}

.right-nav {
  right: 10px;
}

.carousel-nav:hover {
  background-color: #e60000;
  color: #fff;
}

/* Indikatoren unter dem Karussell */
.carousel-indicators {
  text-align: center;
  margin-top: 10px;
}

.carousel-indicators .indicator {
  display: inline-block;
  width: 15px;
  height: 15px;
  background-color: #e60000;
  border-radius: 50%;
  margin: 5px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.carousel-indicators .indicator.active {
  background-color: #fff;
}

/* Verhindert Überlappungen */
.carousel-item {
  flex: 0 0 100%;
}

/* Responsive Anpassungen für das Karussell */
@media screen and (max-width: 768px) {
  .carousel-nav {
    font-size: 2em;
  }
}

/* YouTube-Kanäle Sektion */
.youtube-section {
  background-color: rgba(0, 0, 0, 0.7);
  position: relative;
}

.youtube-section h2 {
  color: #fff; /* Weißer Text */
  margin-bottom: 20px;
  text-shadow: 0 0 2px #e60000, 0 0 4px #e60000; /* Roter Glow-Effekt */
  font-size: 3.4em;
  font-weight: bold;
}

/* Gemeinsames Styling für Kanalbeschreibungen und spezifische Texte */
.channel-description {
  font-size: 2.4em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  text-shadow: 0 0 2px #e60000, 0 0 4px #e60000;
  position: relative;
  z-index: 2;
}

/* YouTube Icons */
.youtube-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 20px 0;
}

.youtube-icons a {
  margin: 10px;
  transition: transform 0.3s ease;
}

.youtube-icons a:hover {
  transform: scale(1.1);
}

.youtube-icons img {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  /* Entferne dunkleres Bild */
  filter: none;
}

/* Kanal-Sektionen */
.channel-section {
  padding: 60px 20px;
  text-align: center;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  color: #fff;
  position: relative;
}

.channel-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7); /* Hintergrund dunkler machen */
  z-index: 1;
}

.channel-section a img {
  width: 300px;
  height: 300px;
  border-radius: 10px;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  /* Entferne dunkleres Bild */
  filter: none;
}

/* Kanalüberschriften */
.channel-section h3 {
  font-size: 6em; /* Doppelt so groß */
  color: #fff; /* Weißer Text */
  margin-bottom: 20px;
  text-shadow: 0 0 2px #e60000, 0 0 4px #e60000; /* Roter Glow-Effekt */
  position: relative;
  z-index: 2;
}

/* Kanalbeschreibungen */
.channel-section p {
  font-size: 2.2em;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.5;
  text-shadow: 0 0 2px #e60000, 0 0 4px #e60000;
  position: relative;
  z-index: 2;
}

/* Footer */
.footer {
  background-color: #111;
  padding: 20px;
  text-align: center;
  color: #fff;
}
/* Hintergrundbilder für die Sektionen */
.beatstars-section {
  background-image: url("Background Images/1.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.licensing-info {
  background-image: url("Background Images/2.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.contact-section {
  background-image: url("Background Images/3.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

.youtube-section {
  background-image: url("Background Images/4.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.info-carousel {
  background-image: url("Background Images/4.png");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Sicherstellen, dass Links und Bilder nicht beeinflusst werden */
.channel-section a,
.channel-section a img {
  position: relative;
  z-index: 2;
}

/* Entferne dunklen Filter von Icons */
.navbar .icon-row a img,
.youtube-icons img {
  filter: none;
}

/* Hamburger Menu Styles */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-around;
  width: 30px;
  height: 25px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1100;
}

.hamburger span {
  width: 100%;
  height: 3px;
  background-color: #fff;
  border-radius: 5px;
  transition: transform 0.3s ease, background-color 0.3s ease;
}

.web-menu {
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center;
}

@media (max-width: 500px) {
  .navbar {
    padding: 10px;
    width: -webkit-fill-available;
  }
  .navbar .left-icons,
  .navbar .right-icons {
    flex-direction: row;
    justify-content: center;
    margin-bottom: 10px;
  }

  .navbar .icon-row {
    flex-wrap: wrap;
    gap: 10px;
  }

  .web-menu {
    display: none;
  }
  .web-menu.active {
    display: flex;
    flex-direction: column;
  }

  .navbar .nav-link {
    margin: 10px 0;
    font-size: 14px;
    padding: 8px 15px;
    width: 80%;
  }

  .navbar .icon-row a img {
    width: 30px;
    height: 30px;
  }

  .nav-links {
    flex-direction: column;
    margin-top: 10px;
    padding: 10px 0;
  }

  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 25px;
    background: transparent;
    border: none;
    cursor: pointer;
    margin: 10px;
  }

  .hamburger span {
    width: 100%;
    height: 3px;
    background-color: #fff;
    border-radius: 5px;
    transition: transform 0.3s ease, background-color 0.3s ease;
  }

  .hero-section {
    display: flex;
    align-items: center;
  }

  .hero-section h1 {
    font-size: 2em;
  }
  .hero-section p {
    font-size: 1em;
  }
  #toggle-sound,
  .nav-link,
  .read-license,
  .send-message-button {
    font-size: 14px;
    padding: 12px 24px;
  }
  .hero-content {
    padding: 10px;
  }
  .section {
    padding: 40px 10px;
  }
  .licensing-info {
    padding: 40px 10px;
  }
  .licensing-info h2,
  .youtube-section h2 {
    font-size: 1.8em;
  }
  .license-card {
    width: 85%;
  }
  .license-card h3,
  .license-card h4 {
    font-size: 1.4em;
  }
  .license-card p,
  .license-card ul {
    font-size: 0.8em;
    padding: 10px;
  }
  .contact-card p {
    font-size: 0.8em;
  }
  .contact-card {
    flex-direction: column;
  }
  .carousel-item {
    margin-top: 0px;
  }
  .carousel-item h3 {
    font-size: 1em;
  }
  .carousel-item p,
  .carousel-item ul {
    font-size: 0.6em;
  }
  .info-carousel {
    padding: 0px;
  }
  .youtube-icons img {
    width: 120px;
    height: 120px;
  }
  .channel-section h3 {
    font-size: 2em;
  }
  .channel-section p {
    font-size: 1.2em;
  }
  .channel-section a img {
    width: 200px;
    height: 200px;
    margin-bottom: 0px;
  }
}
