/* ================== CENTRALNY NAPIS ================== */

.center-title {
  position: fixed;
  top: 30%;
  left: 48%;
  transform: translate(-50%, -50%);
  z-index: 2000;

  font-family: "Playfair Display", serif;
  font-size: clamp(28px, 5vw, 52px);
  font-weight: 600;
  letter-spacing: 1px;
  text-align: center;

  color: snow;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.6),
    0 0 16px rgba(255, 255, 255, 0.4);

  opacity: 0;

  /* DWIE ANIMACJE */
  animation:
    fadeInDown 1.2s ease forwards,
    pulseGlow 3s ease-in-out 1.2s infinite;
}

/* FADE IN DOWN */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate(-50%, -65%);
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

/* PULSE GLOW */
@keyframes pulseGlow {
  0% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.5),
      0 0 16px rgba(255, 255, 255, 0.3);
  }
  50% {
    text-shadow:
      0 0 14px rgba(255, 255, 255, 0.9),
      0 0 30px rgba(220, 235, 255, 0.7);
  }
  100% {
    text-shadow:
      0 0 8px rgba(255, 255, 255, 0.5),
      0 0 16px rgba(255, 255, 255, 0.3);
  }
}
