/*
Theme Name: Astra WebHNB Hypertheme
Template: astra
Version: 1.0
Author: webhnb.eu
Description: Motyw potomny Astra z animacjami GSAP i stylem glitch + parallax.
*/

:root {
  --bg: #0a0a0a;
  --white: #f0f0f0;
  --neon-blue: #3e8fff;
  --neon-pink: #ff7eb9;
  --neon-violet: #ae7eff;
}

body {
  background: var(--bg);
  color: var(--white);
  font-family: 'Inter', sans-serif;
}

h1, h2, h3 {
  text-shadow: 0 0 5px var(--neon-blue), 0 0 10px var(--neon-pink);
}

a {
  color: var(--neon-blue);
}

a:hover {
  color: var(--neon-pink);
}

/* Animacje */
.animate-fade-in {
  opacity: 0;
  transform: translateY(50px);
}

.parallax-bg {
  background-attachment: fixed;
  background-size: cover;
}

.glitch-text {
  position: relative;
  color: white;
  font-weight: bold;
  display: inline-block;
}

.glitch-text span {
  position: absolute;
  top: 0;
  left: 0;
}

.glitch-text .r { color: red; transform: translateX(-1px); opacity: 0.6; }
.glitch-text .g { color: lime; transform: translateX(1px); opacity: 0.6; }
.glitch-text .b { color: blue; transform: translateY(-1px); opacity: 0.6; }
