@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700&amp;family=Uncial+Antiqua&amp;display=swap');

.hero {
  position: relative;

  background-image: url("https://www.halloweenuccle.eu/wp-content/uploads/2026/03/slider1.png");
  background-size: cover;
  background-position: center;

  padding: 150px 20px;
  text-align: center;

  font-family: "Uncial Antiqua", cursive;
  color: #fff;

  text-shadow:
    0 0 5px #ff6a00,
    0 0 10px #ff6a00,
    0 0 20px #ff0000;

  overflow: hidden;

  animation: glowPulse 3s infinite ease-in-out;
}

.hero-content {
  font-size: 24px;
  line-height: 1.5;
}

/* Glowing animation */

@keyframes glowPulse {
  0% {
    text-shadow:
      0 0 5px #ff6a00,
      0 0 10px #ff6a00,
      0 0 20px #ff0000;
  }

  50% {
    text-shadow:
      0 0 10px #ffb347,
      0 0 20px #ff6a00,
      0 0 35px #ff0000;
  }

  100% {
    text-shadow:
      0 0 5px #ff6a00,
      0 0 10px #ff6a00,
      0 0 20px #ff0000;
  }
}

/* Fog overlay */

.hero::before {
  content: "";

  position: absolute;
  top: 0;
  left: 0;

  width: 200%;
  height: 200%;

  background: url("https://www.transparenttextures.com/patterns/foggy-birds.png");

  opacity: 0.15;

  animation: fogMove 60s linear infinite;

  pointer-events: none;
}

@keyframes fogMove {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Keep text above fog */

.hero > * {
  position: relative;
  z-index: 2;
}