/* /css/hero.css */
/* Hero Section - Cyberpunk Landing */

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

/* Animated Background Grid */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(rgba(0, 240, 255, 0.1) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 240, 255, 0.1) 1px, transparent 1px);
  background-size: 50px 50px;
  animation: gridMove 20s linear infinite;
  opacity: 0.3;
  pointer-events: none;
}

@keyframes gridMove {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(50px, 50px);
  }
}

/* Floating Orbs */
.hero::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 10%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(0, 240, 255, 0.2), transparent 70%);
  border-radius: 50%;
  animation: floatOrb 15s ease-in-out infinite;
  pointer-events: none;
}

@keyframes floatOrb {
  0%, 100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(-100px, 50px) scale(1.1);
  }
  66% {
    transform: translate(100px, -50px) scale(0.9);
  }
}

.hero-content {
  text-align: center;
  position: relative;
  z-index: 10;
  max-width: 900px;
  animation: fadeIn 1s ease;
}

/* 3D Logo Effect */
.hero-logo {
  font-size: clamp(4rem, 8vw, 8rem);
  margin-bottom: var(--spacing-md);
  position: relative;
  display: inline-block;
  animation: pulse 3s ease-in-out infinite;
}

.hero-logo::before {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-magenta));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: blur(20px);
  opacity: 0.5;
}

.hero-title {
  margin-bottom: var(--spacing-sm);
  animation: slideInLeft 1s ease 0.2s both;
}

.hero-subtitle {
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  color: var(--text-secondary);
  margin-bottom: var(--spacing-lg);
  animation: slideInRight 1s ease 0.4s both;
}

/* CTA Buttons */
.hero-cta {
  display: flex;
  gap: var(--spacing-md);
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeIn 1s ease 0.6s both;
}

.hero-cta .btn {
  min-width: 200px;
}

/* Holographic Effect */
.hero-hologram {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  background: 
    radial-gradient(circle at 30% 30%, rgba(0, 240, 255, 0.15), transparent 40%),
    radial-gradient(circle at 70% 70%, rgba(255, 0, 110, 0.15), transparent 40%);
  border-radius: 50%;
  animation: rotateHologram 20s linear infinite;
  pointer-events: none;
  z-index: 1;
}

@keyframes rotateHologram {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

/* Particles */
.hero-particles {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  pointer-events: none;
}

.particle {
  position: absolute;
  width: 4px;
  height: 4px;
  background: var(--neon-cyan);
  border-radius: 50%;
  box-shadow: 0 0 10px var(--neon-cyan);
  animation: floatParticle 10s ease-in-out infinite;
}

.particle:nth-child(2n) {
  background: var(--neon-magenta);
  box-shadow: 0 0 10px var(--neon-magenta);
  animation-delay: -5s;
}

.particle:nth-child(3n) {
  animation-delay: -3s;
}

@keyframes floatParticle {
  0% {
    transform: translateY(100vh) translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-100px) translateX(100px);
    opacity: 0;
  }
}

/* Scroll Indicator */
.hero-scroll {
  position: absolute;
  bottom: var(--spacing-lg);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  color: var(--text-muted);
  font-size: 0.9rem;
  animation: bounce 2s ease-in-out infinite;
  cursor: pointer;
  transition: all 0.3s ease;
}

.hero-scroll:hover {
  color: var(--neon-cyan);
  text-shadow: var(--shadow-glow-cyan);
}

.hero-scroll-icon {
  width: 24px;
  height: 36px;
  border: 2px solid currentColor;
  border-radius: 12px;
  position: relative;
}

.hero-scroll-icon::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 8px;
  background: currentColor;
  border-radius: 2px;
  animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollDot {
  0%, 100% {
    top: 6px;
    opacity: 1;
  }
  50% {
    top: 18px;
    opacity: 0.3;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-10px);
  }
}

/* ==================== RESPONSIVE ==================== */

@media (max-width: 768px) {
  .hero {
    padding-top: 100px;
  }
  
  .hero-hologram {
    width: 400px;
    height: 400px;
  }
  
  .hero::after {
    width: 250px;
    height: 250px;
  }
  
  .hero-cta {
    flex-direction: column;
  }
  
  .hero-cta .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-hologram {
    width: 300px;
    height: 300px;
  }
  
  .hero::after {
    width: 150px;
    height: 150px;
  }
}
