/* ================================================
   NOVAWEB.STUDIO INSPIRED HERO
   Ultra-premium dark hero with blend modes
   ================================================ */

/* Hero wrapper - Full viewport dark background */
.hero-nova {
  position: relative;
  min-height: 100vh;
  background: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 0 1.5rem;
}

/* Gradient overlay - NovaWeb style */
.hero-nova::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 40%;
  background: linear-gradient(to bottom, transparent 0%, #0c0c0c 100%);
  z-index: 1;
  pointer-events: none;
}

/* Hero content container */
.hero-nova__content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  text-align: center;
  width: 100%;
}

/* Main headline - NovaWeb style */
.hero-nova__title {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: clamp(2.5rem, 8vw, 7rem);
  font-weight: 900;
  color: #ffffff;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin: 0 0 1.5rem;
  mix-blend-mode: difference;
  position: relative;
}

/* Animated text reveal */
.hero-nova__title span {
  display: inline-block;
  opacity: 0;
  transform: translateY(30px);
  animation: heroReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.hero-nova__title span:nth-child(1) { animation-delay: 0.1s; }
.hero-nova__title span:nth-child(2) { animation-delay: 0.2s; }
.hero-nova__title span:nth-child(3) { animation-delay: 0.3s; }

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

/* Subtitle - NovaWeb style */
.hero-nova__subtitle {
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  font-weight: 400;
  color: #888888;
  line-height: 1.6;
  max-width: 700px;
  margin: 0 auto 3rem;
  opacity: 0;
  animation: fadeIn 1s ease-out 0.4s forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

/* CTA Button - Premium style */
.hero-nova__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1.25rem 2.5rem;
  background: #ffffff;
  color: #0c0c0c;
  font-family: 'Inter', 'DM Sans', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.3s cubic-bezier(0.22, 1, 0.36, 1);
  opacity: 0;
  animation: fadeIn 1s ease-out 0.6s forwards;
}

.hero-nova__cta:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(255, 255, 255, 0.15);
}

/* Arrow icon */
.hero-nova__cta svg {
  width: 20px;
  height: 20px;
  transition: transform 0.3s ease;
}

.hero-nova__cta:hover svg {
  transform: translateX(4px);
}

/* Decorative grid pattern - NovaWeb style */
.hero-nova__grid {
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  z-index: 0;
  opacity: 0.4;
}

/* Floating elements - NovaWeb style */
.hero-nova__float {
  position: absolute;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 70%);
  filter: blur(60px);
  z-index: 0;
  animation: float 20s infinite ease-in-out;
}

.hero-nova__float:nth-child(1) {
  top: 20%;
  left: 10%;
  animation-delay: 0s;
}

.hero-nova__float:nth-child(2) {
  top: 60%;
  right: 10%;
  animation-delay: -10s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0); }
  25% { transform: translate(30px, -30px); }
  50% { transform: translate(-20px, 20px); }
  75% { transform: translate(20px, 30px); }
}

/* Scroll indicator - NovaWeb style */
.hero-nova__scroll {
  position: absolute;
  bottom: 3rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  opacity: 0;
  animation: fadeIn 1s ease-out 1s forwards, bounce 2s infinite 1s;
}

.hero-nova__scroll svg {
  width: 24px;
  height: 24px;
  color: rgba(255, 255, 255, 0.5);
}

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

/* Responsive adjustments */
@media (max-width: 768px) {
  .hero-nova {
    min-height: 80vh;
    padding: 4rem 1rem;
  }
  
  .hero-nova__title {
    font-size: clamp(2rem, 10vw, 3.5rem);
  }
  
  .hero-nova__float {
    width: 200px;
    height: 200px;
  }
}
