/* =========================
   RESET + GLOBAL
========================= */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html { scroll-behavior: smooth; }

body {
  background: #000;
  font-family: Arial, sans-serif;
  color: #fff;
  padding-top: 90px;
}

/* =========================
   INTRO — NAME + LOGO
========================= */
.intro {
  text-align: center;
  padding: 80px 20px;
  opacity: 0;
  transform: translateY(20px);
  animation: introFade 0.7s ease-out forwards;
}

@keyframes introFade {
  to { opacity: 1; transform: translateY(0); }
}

.dj-name {
  position: relative;
  display: inline-block;
  font-size: 4.6rem;
  color: #ff0099;
  cursor: pointer;
  transition: 0.3s ease;
  -webkit-text-stroke: 1px #000;
  text-shadow: 0 0 15px #ff0099;
}

.dj-name.logo-visible {
  animation: neonPulse 1.4s infinite alternate ease-in-out;
}

@keyframes neonPulse {
  0% {
    text-shadow:
      0 0 20px #ff0099,
      0 0 40px #ff0099,
      0 0 60px #ff33cc;
  }
  100% {
    text-shadow:
      0 0 35px #ff33cc,
      0 0 70px #ff0099,
      0 0 90px #ff33cc;
  }
}

.hover-logo {
  position: absolute;
  width: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  z-index: -1;
  pointer-events: none;
  mix-blend-mode: screen;
  transition: opacity 0.3s ease;
}

.dj-name.logo-visible .hover-logo {
  opacity: 1;
}

.location {
  font-size: 2rem;
  margin-top: 6px;
  color: #ddd;
}

.description {
  font-size: 1.6rem;
  margin-top: 10px;
}

/* =========================
   BUTTON UNDER CONSTRUCTION
========================= */
.btn-under-construction {
  display: inline-block;
  margin-top: 40px;
  padding: 15px 40px;
  font-size: 1.2rem;
  color: #fff;
  background: #ff0099;
  border-radius: 40px;
  text-decoration: none;
  box-shadow: 0 0 20px #ff0099;
  transition: 0.3s ease;
}

.btn-under-construction:hover {
  animation: pulseBtn 1.2s infinite alternate ease-in-out;
}

@keyframes pulseBtn {
  0% { box-shadow: 0 0 20px #ff0099; transform: scale(1); }
  100% { box-shadow: 0 0 40px #ff0099; transform: scale(1.03); }
}

/* =========================
   HERO SECTION — Wave
========================= */
.hero {
  position: relative;
  height: 40vh;
  background: radial-gradient(
    circle at 15% 0%,
    #ffe1f7 0%,
    #ff9be3 20%,
    #ff4bc9 40%,
    #77244d 60%,
    #000 100%
  );
  background-size: 220% 220%;
  animation: heroWave 8s infinite ease-in-out;

  /* NEU: Text wirklich mittig */
  display: flex;
  align-items: center;    /* vertikal zentrieren */
  justify-content: center;/* horizontal zentrieren */
}

@keyframes heroWave {
  0%   { background-position: 0% 40%; }
  30%  { background-position: 50% 60%; }
  55%  { background-position: 100% 50%; }
  80%  { background-position: 50% 40%; }
  100% { background-position: 0% 40%; }
}

/* =========================
   WAVE TEXT — PERFECT CENTER
========================= */
.quote-section {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}

.hero-quote {
  font-size: 2.6rem;
  color: #000;
  opacity: 0;
  transform: translateY(20px);

  /* NEU: wirklich mittig + nicht abgeschnitten */
  text-align: center;
  max-width: 90%;
  margin: 0 auto;

  /* 3D effect */
  -webkit-text-stroke: 0.8px rgba(255,255,255,0.1);
  text-shadow:
    1px 1px 2px rgba(0,0,0,0.9),
    0px 0px 4px rgba(0,0,0,0.7);

  animation: textReveal 8s infinite ease-in-out;
}

/* Timing synchron zur Welle */
@keyframes textReveal {
  0%   { opacity: 0; transform: translateY(20px); }
  12%  { opacity: 1; transform: translateY(0); }
  38%  { opacity: 1; transform: translateY(0); }
  52%  { opacity: 0; transform: translateY(-10px); }
  100% { opacity: 0; transform: translateY(-10px); }
}

/* =========================
   FOOTER
========================= */
footer {
  text-align: center;
  padding: 18px 20px 28px;
  opacity: 0.45;
  font-size: 0.9rem;
  letter-spacing: 1px;
}

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

.footer-social a {
  color: #fff;
  font-size: 1.4rem;
  transition: 0.2s;
}

.footer-social a:hover {
  transform: translateY(-1px);
  text-shadow: 0 0 10px currentColor;
}

/* =========================
   MOBILE VERSION
========================= */
@media (max-width: 768px) {

  .dj-name { font-size: 3.2rem; }
  .location { font-size: 1.7rem; }
  .description { font-size: 1.3rem; }
  .hover-logo { width: 140px; }

  .quote-section { top: 58%; }

  .hero-quote {
    font-size: 1.5rem;
    line-height: 1.4;
    white-space: normal;
    max-width: 90%;
    margin: 0 auto;
  }

  .navbar a { font-size: 1.1rem; }
  .nav-center { gap: 20px; }
}

