/* v20250805-hero – animowany header + kursor + particles.js */

.cursor {
  display: inline-block;
  color: #4064C3;
  margin-left: 4px;
  animation: blink 0.7s steps(1) infinite;
}

@keyframes blink {
  0%, 100% { opacity: 1; }
  50% { opacity: 0; }
}

.fx-hero-fullscreen {
  position: relative;
  height: 400px;
  background-color: #111;
  color: #fff;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 0 2rem;
  font-family: "Rajdhani", sans-serif;
  z-index: 1;
}

#particles-js {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.fx-hero-inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
  text-align: center;
}

.fx-hero-typing {
  font-size: clamp(2rem, 5vw, 4rem);
  line-height: 1.2;
  font-weight: 500;
  color: #fff;
}

.block {
  display: block;
}

.highlight {
  color: #4064C3;
}

@media (max-width: 768px) {
  .fx-hero-fullscreen {
    height: auto;
    min-height: 280px;
    padding: 40px 1.5rem;
  }
}
