@font-face {
  font-family: 'NeuethingSans';
  src: url('../neuething-sans/web/woff/NeuethingSans-Bold.woff') format('woff');
  font-weight: 700; /* Bold */
  font-style: normal;
}

/* RESET */
* { margin: 0; padding: 0; box-sizing: border-box; }
html, body {
  height: 100%;
  font-family: 'Inter', sans-serif;
  background: #000;
  overflow: hidden;
}

h1 {
    font-family: 'NeuethingSans', sans-serif;
    font-weight: 700;
}

/* 🎥 Hintergrundvideo */
#bg-video { position: fixed; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; }


/* 🌿 Hero Content */
.hero {
  position: relative;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
  animation: fadeIn 1.6s ease;
}

.hero h1 {
  font-size: 3.2rem;
  font-weight: 600;
  color: #eaffea;
  text-shadow: 0 4px 18px rgba(0,0,0,0.6);
  margin-bottom: 18px;
  animation: float 6s ease-in-out infinite;
}

.hero p {
  max-width: 640px;
  font-size: 1.25rem;
  line-height: 1.7;
  color: #dff5e4;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(10px);
  padding: 16px 24px;
  border-radius: 18px;
  box-shadow: 0 8px 28px rgba(0,0,0,0.35);
  animation: fadeUp 1.8s ease;
}

/* 🎵 Musik Button */
.music-control {
  position: fixed;
  bottom: 32px; left: 50%;
  transform: translateX(-50%);
}

.music-control button {
  background: rgba(255,255,255,0.15);
  border: 2px solid rgba(163,255,211,0.6);
  border-radius: 50%;
  width: 74px; height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #a3ffd3;
  font-size: 2.4rem;
  cursor: pointer;
  backdrop-filter: blur(16px);
  transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.4s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,0.55);
}

.music-control button:hover {
  background: rgba(163,255,211,0.25);
  transform: scale(1.12);
}

.music-control button.active {
  color: #fff;
  background: rgba(163,255,211,0.35);
  animation: pulse 2.8s infinite;
}

/* ✅ Icons via Klassenwechsel (nicht via Unicode) */
.music-control button i {
  pointer-events: none;
}

/* ✨ Ripple Effekt */
.click-effect {
  position: fixed;
  width: 60px; height: 60px;
  border-radius: 50%;
  background: rgba(163,255,211,0.35);
  pointer-events: none;
  transform: scale(0);
  opacity: 0.9;
  transition: transform 0.6s ease, opacity 0.6s ease;
}
.click-effect.active {
  transform: scale(2.8);
  opacity: 0;
}

/* 🔙 Back Button */
.back-button {
  position: fixed;
  top: 24px;
  left: 24px;
  z-index: 100;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  border-radius: 50%;
  padding: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.4);
}

.back-button a {
  color: #fff;
  font-size: 1.6rem;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, color 0.3s ease;
}

.back-button a:hover {
  transform: scale(1.15);
  color: #a3ffd3;
}


/* ✨ Animations */
@keyframes fadeIn { from { opacity:0 } to { opacity:1 } }
@keyframes fadeUp { from { transform:translateY(30px); opacity:0 } to { transform:translateY(0); opacity:1 } }
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(163,255,211,0.45); }
  70%  { box-shadow: 0 0 0 24px rgba(163,255,211,0); }
  100% { box-shadow: 0 0 0 0 rgba(163,255,211,0); }
}
