/* Allgemeine Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-color: #7200a7;
  --secondary-color: #d1346e;
  --bg-color: #000;
  --text-color: #fff;
  --accent-color: #1c1c1c;
  --border-radius: 4px;
  --font-family: Arial, sans-serif;
}

body {
  font-family: var(--font-family);
  color: var(--text-color);
  position: relative;
  z-index: 0;
  overflow-x: hidden;
}

/* Nur Hintergrund weichgezeichnet & animiert */
body::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 200%;
  height: 100%;
  background: url('/img/bg5.jpg') repeat-x;
  background-size: cover;
  animation: scrollBackground 80s linear infinite;
  filter: blur(8px); /* Weichzeichner */
  z-index: -1;
  pointer-events: none;
}

@keyframes scrollBackground {
  from {
    background-position: 0 0;
  }
  to {
    background-position: -1000px 0;
  }
}

/* Header */
header {
  display: flex;
  align-items: center;
  justify-content: flex-start; /* Korrigiert die Ausrichtung */
  padding: 15px 20px;
  background-color: var(--bg-color);
  position: relative;
  z-index: 2;
}

.accordion {
  margin-top: 20px;
}

.accordion-btn {
  background-color: #7200a7;
  color: white;
  padding: 10px 20px;
  width: auto;
  max-width: 200px;
  text-align: left;
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 5px;
  transition: background-color 0.3s ease;
  margin: 0 auto;
}

.accordion-btn:hover {
  background-color: #4e0061;
}

.accordion-btn i {
  margin-right: 10px;
}

.accordion-content {
  padding: 10px 20px;
  display: none;
  background-color: transparent;
  margin-top: 10px;
  border-radius: 5px;
}

.accordion-content ul {
  list-style-type: none;
  padding: 0;
}

.accordion-content li {
  padding: 10px 0;
}

.accordion-content i {
  margin-right: 10px;
}

.logo img {
  width: 75px;
  height: auto;
  cursor: pointer;
}

/* Navigation */
nav {
  display: flex;
  align-items: center;
}

nav ul {
  display: flex;
  list-style: none;
  gap: 20px;
  margin-left: 18px;
}

nav ul li a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 18px;
  padding: 10px;
  transition: background-color 0.3s, transform 0.3s;
}

nav ul li a:hover,
nav ul li.active a {
  background-color: var(--primary-color);
  border-radius: var(--border-radius);
  transform: scale(1.05);
}

/* Burger-Menü */
#menu-button {
  display: none;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 24px;
  cursor: pointer;
}

/* Hero Section */
.hero {
  position: relative;
  text-align: center;
  padding: 50px 20px 150px;
  overflow: hidden;
  z-index: 1;
}

#background-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
  filter: grayscale(80%) blur(2px);
}

.hero img {
  max-width: 120px;
  border-radius: 50%;
  transform: translateY(-20px) scale(1.1);
  transition: 0.3s;
}

.hero img:hover {
  transform: translateY(-20px) scale(1.2);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.hero h1 {
  font-size: 42px;
}

.hero p {
  font-size: 20px;
  margin-top: 15px;
}

.cta-button {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-color);
  text-decoration: none;
  border-radius: var(--border-radius);
  transition: background-color 0.3s;
}

.cta-button:hover {
  background-color: var(--secondary-color);
}

/* Biografie */
.biography {
  max-width: 800px;
  text-align: center;
  margin: 20px auto;
  padding: 30px;
  background-color: #111;
  border-radius: 8px;
}

.biography h2 {
  font-size: 28px;
  margin-bottom: 15px;
}

.biography p {
  font-size: 18px;
  line-height: 1.6;
}

/* Instagram & YouTube Einbettung */
.instagram-container {
  background-color: var(--accent-color);
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  max-width: 600px;
  margin: 20px auto;
}

.youtube-embed {
  text-align: center;
  margin-top: 40px;
}

/* Spotify Buttons */
.spotify-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 20px;
}

/* Folge Jelizza auf - Bereich */
.social-links {
  max-width: 800px;
  margin: 20px auto;
  padding: 30px;
  background-color: #111;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0px 4px 10px rgba(255, 255, 255, 0.1);
}

.social-links h2 {
  font-size: 26px;
  color: #ffffff;
  margin-bottom: 20px;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.social-icons a {
  font-size: 28px;
  color: #ffffff;
  text-decoration: none;
  transition: 0.3s ease-in-out;
}

.social-icons a:hover {
  color: #7200a7;
  transform: scale(1.2);
}

/* Kontakt */
.contact {
  max-width: 800px;
  padding: 50px 20px;
  margin: 25px auto;
  background-color: #111;
  border-radius: 8px;
  text-align: center;
}

.contact h2 {
  font-size: 32px;
  margin-bottom: 15px;
  text-align: center;
  display: block; /* Macht sicher, dass es als Block-Element behandelt wird */
  width: 100%; /* Verhindert, dass es eine falsche Breite bekommt */
}

.contact form {
  max-width: 300px;
  margin: 20px auto;
}

.contact form input,
.contact form textarea {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border-radius: 5px;
  border: none;
  background-color: #fff;
  color: #000;
}

.contact form button {
  padding: 12px 24px;
  background-color: var(--primary-color);
  color: var(--text-color);
  border: none;
  cursor: pointer;
  border-radius: 10px;
  transition: background-color 0.3s;
}

.contact form button:hover {
  background-color: var(--secondary-color);
}

/* Nachricht-Box */
.message-box {
  max-width: 300px;
  margin: 15px auto;
  padding: 12px;
  border-radius: 5px;
  text-align: center;
  display: none;
}

.success {
  background-color: #28a745;
  color: #fff;
}

.error {
  background-color: #dc3545;
  color: #fff;
}

/* Footer */
footer {
  background-color: var(--bg-color);
  text-align: center;
  padding: 15px 0;
}

footer .social-media {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  list-style: none;
  padding: 0;
  margin: 0;
}

footer .social-media a {
  color: var(--text-color);
  font-size: 22px;
  transition: color 0.3s;
}

footer .social-media a:hover {
  color: var(--primary-color);
}

footer .social-media li {
  display: inline-block;
}

footer .impressum {
  margin-top: 10px;
}

footer .impressum a {
  color: var(--text-color);
  text-decoration: none;
  font-size: 14px;
}

footer .impressum a:hover {
  text-decoration: underline;
}


@media (max-width: 768px) {
  header {
      justify-content: space-between; /* Für mobile Geräte */
  }

  header h1 {
      font-size: 2em;
  }

  .content h3 {
    font-size: 1.8em;
  }

  .content p {
    font-size: 1em;
  }

  #menu-button {
    display: block;
  }

  nav {
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    display: none;
    flex-direction: column;
    padding: 10px 0;
    overflow: hidden;
  }

  nav.open {
    display: block;
  }

  nav ul {
    flex-direction: column;
    width: 100%;
    text-align: center;
    margin: 0;
    padding: 0;
  }

  nav ul li {
    width: 100%;
  }

  nav ul li a {
    display: block;
    padding: 12px;
    font-size: 16px;
  }

  .hero {
    padding: 100px 20px;
  }

  .hero h1 {
    font-size: 32px;
  }

  .hero p {
    font-size: 18px;
  }

  .hero img {
    max-width: 80px;
  }

  .biography {
    padding: 20px;
    max-width: 90%;
  }

  .biography h2 {
    font-size: 24px;
  }

  .biography p {
    font-size: 16px;
  }

  .instagram-container {
    max-width: 100%;
    padding: 15px;
  }

  .youtube-embed {
    margin-top: 30px;
  }

  .contact h2 {
    font-size: 32px;
    margin-bottom: 15px;
    text-align: center;
    display: block; /* Macht sicher, dass es als Block-Element behandelt wird */
    width: 100%; /* Verhindert, dass es eine falsche Breite bekommt */
  }
  

  .contact form input,
  .contact form textarea {
    padding: 10px;
  }
}
