/* === VENYU - Neon Website Style === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;600&display=swap');

body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  color: #fff;
  text-align: center;
  background: linear-gradient(135deg, #10002b, #240046, #3c096c, #5a189a);
  background-size: 400% 400%;
  animation: gradientFlow 10s ease infinite;
  overflow-x: hidden;
}

/* === Header mit großem, leuchtenden Logo === */
.main-header {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 20px; /* 🔥 kleiner gemacht */
  margin-bottom: 10px; /* 🔥 fast kein Abstand mehr */
}

.venyu-logo {
  width: 340px; /* leicht größer für besseren Look */
  height: auto;
  filter: drop-shadow(0 0 20px #ff00aa) brightness(1.1);
  animation: glowPulse 3s ease-in-out infinite;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.venyu-logo:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px #a100ff) brightness(1.3);
}

@keyframes glowPulse {
  0%,
  100% {
    filter: drop-shadow(0 0 15px #a100ff) brightness(1.1);
  }
  50% {
    filter: drop-shadow(0 0 30px #ff00aa) brightness(1.3);
  }
}

/* === Sektionen === */
main {
  padding: 0 10vw;
}

section {
  margin: 100px 0;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 0 20px rgba(162, 0, 255, 0.2);
  backdrop-filter: blur(8px);
  animation: fadeInUp 1.2s ease forwards;
}

h2 {
  font-size: 2.5rem;
  margin-bottom: 20px;
  color: #a0c4ff;
  text-shadow: 0 0 10px #5f0fff;
}

p {
  font-size: 1.2rem;
  line-height: 1.6;
  color: #e0e0e0;
}

/* === Team === */
.team ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.team li {
  font-size: 1.3rem;
  margin: 8px 0;
  transition: all 0.3s ease;
}

.team li:hover {
  color: #9d4edd;
  text-shadow: 0 0 10px #9d4edd;
  transform: scale(1.05);
}

.betreuer {
  margin-top: 20px;
  color: #a0a0ff;
  font-style: italic;
}

/* === Footer === */
footer {
  position: relative;
  padding: 60px 0 100px;
  font-size: 0.9rem;
  color: #bbb;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.3);
}

footer p {
  margin: 0;
}

.htl-logo {
  position: fixed;
  bottom: 20px;
  right: 20px;
  width: 100px;
  opacity: 0.9;
  filter: drop-shadow(0 0 10px #ff006e);
  transition: transform 0.3s ease;
}

.htl-logo:hover {
  transform: scale(1.1);
}

/* === Animationen === */
@keyframes gradientFlow {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

@keyframes pulse {
  0%,
  100% {
    text-shadow: 0 0 20px #9d4edd, 0 0 40px #5a189a;
  }
  50% {
    text-shadow: 0 0 30px #00bfff, 0 0 70px #a100ff;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* === Responsiv === */
@media (max-width: 600px) {
  .logo-text {
    font-size: 3.5rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  p,
  .team li {
    font-size: 1rem;
  }
  .htl-logo {
    width: 70px;
  }
}

/* === Vinyl-Schallplatten-Hintergrund === */
.vinyl-wrapper {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.35;
}

.vinyl {
  width: 750px;
  height: 750px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: radial-gradient(
      circle at center,
      #ff00aa 0%,
      #ff4ddb 10%,
      #a100ff 20%,
      rgba(0, 0, 0, 0.85) 22%,
      transparent 23%
    ),
    repeating-radial-gradient(
      circle at center,
      rgba(0, 0, 0, 0.4) 0px,
      rgba(0, 0, 0, 0.4) 2px,
      rgba(255, 255, 255, 0.05) 3px,
      rgba(0, 0, 0, 0.4) 4px
    ),
    radial-gradient(circle at center, #0a001a 0%, #1a0033 50%, #3c096c 70%, #5a189a 100%);
  box-shadow: 0 0 80px rgba(255, 0, 180, 0.3), inset 0 0 60px rgba(0, 0, 0, 0.9),
    inset 0 0 120px rgba(162, 0, 255, 0.2);
  animation: spinVinyl 18s linear infinite;
}

.vinyl-text {
  font-family: 'Poppins', sans-serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  text-transform: lowercase;
  text-shadow: 0 0 10px #ff00aa, 0 0 25px #a100ff;
  pointer-events: none;
}

@keyframes spinVinyl {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* === Fortschrittsanzeige === */
.progress-section {
  margin: 100px auto 60px;
  width: 80%;
  max-width: 600px;
  text-align: center;
  position: relative;
  z-index: 2;
}

.progress-section h2 {
  font-size: 1.8rem;
  color: #a0c4ff;
  text-shadow: 0 0 10px #5f0fff;
  margin-bottom: 25px;
}

.progress-bar {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  overflow: hidden;
  height: 25px;
  box-shadow: 0 0 15px rgba(162, 0, 255, 0.4);
  position: relative;
}

.progress-fill {
  height: 100%;
  width: 0;
  background: linear-gradient(90deg, #00bfff, #a100ff, #ff00aa);
  box-shadow: 0 0 20px #a100ff, 0 0 40px #00bfff;
  border-radius: 30px;
  animation: fillProgress 2.5s ease-out forwards;
}

.progress-text {
  margin-top: 12px;
  color: #d0d0ff;
  font-weight: 600;
  text-shadow: 0 0 10px #5f0fff;
}

@keyframes fillProgress {
  from {
    width: 0;
  }
  to {
    width: var(--progress, 75%);
  }
}
