/**
 * HERO.CSS
 * Hero-Sektion - Beide Elemente sind unabhängig positionierbar
 * 
 * SO POSITIONIEREN SIE DIE ELEMENTE:
 * 
 * .hero-robot     → top, left, right, bottom
 * .hero-text     → top, left, right, bottom
 * 
 * Beispiel:
 * .hero-robot { top: 40%; left: 50%; }
 * .hero-text  { top: 70%; left: 50%; }
 */

/* Hero Container */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: var(--color-white);
  overflow: hidden;
}

/* Glow Effects */
.hero-glow {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-glow-1 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80vw;
  height: 80vw;
  background: radial-gradient(circle, rgba(125, 196, 232, 0.4) 0%, rgba(125, 196, 232, 0.2) 40%, transparent 70%);
  filter: blur(80px);
}

.hero-glow-2 {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  height: 60vw;
  background: radial-gradient(circle, rgba(0, 217, 192, 0.25) 0%, rgba(0, 217, 192, 0.1) 40%, transparent 70%);
  filter: blur(60px);
}

/* ============================================
   ROBOTER BILD - POSITIONIERBAR
   Ändern Sie top/left/bottom/right nach Bedarf!
   ============================================ */
.hero-robot {
  position: absolute;
  z-index: 10;
  
  /* Mobile Position */
  width: 65%;
  max-width: 500px;
  top: 30%;
  left: 50%;
  transform: translateX(-50%);
  
  /* Animation: fährt von rechts oben in die Mitte */
  opacity: 0;
  animation: robotDriveIn 1.5s ease-out 0.3s forwards;
}

@media (min-width: 768px) {
  .hero-robot {
    width: 70%;
    top: 25%;
  }
}

@keyframes robotDriveIn {
  from {
    opacity: 0;
    transform: translateX(calc(-50% + 18vw)) translateY(-50vh);
  }
  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0);
  }
}

/* ============================================
   LOGO + TAGLINE - POSITIONIERBAR
   Ändern Sie top/left/bottom/right nach Bedarf!
   ============================================ */
.hero-text {
  position: absolute;
  z-index: 20;
  text-align: center;
  width: 100%;
  padding: 0 1rem;
  
  /* Mobile Position */
  top: 65%;
  left: 0;
  
  /* Animation: fährt von unten rein */
  opacity: 0;
  animation: textSlideUp 0.6s ease-out 1.5s forwards;
}

@media (min-width: 768px) {
  .hero-text {
    top: 70%;
  }
}

@keyframes textSlideUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo */
.hero-logo {
  height: 2rem;
  margin: 0.5rem auto 0.5rem;
}

@media (min-width: 768px) {
  .hero-logo {
    height: 3rem;
  }
}

@media (min-width: 1024px) {
  .hero-logo {
    height: 3rem;
  }
}

/* Tagline */
.hero-tagline {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 600;
  margin-top: 1rem;
  color: var(--color-navy);
}

@media (min-width: 768px) {
  .hero-tagline {
    font-size: 1.25rem;
  }
}

@media (min-width: 1024px) {
  .hero-tagline {
    font-size: 1.25rem;
  }
}
