/* ═══════════════════════════════════════════════════════════
   Jagderfolg Landing Page — Custom Styles
   ═══════════════════════════════════════════════════════════ */

/* Noise texture overlay */
.noise-overlay {
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='1'/%3E%3C/svg%3E");
  background-repeat: repeat;
  background-size: 256px 256px;
  pointer-events: none;
}

/* ── Animations ──────────────────────────────────────────── */

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes bounce-slow {
  0%, 100% {
    transform: translateY(0);
    opacity: 0.6;
  }
  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.animate-fade-up {
  opacity: 0;
  animation: fade-up 0.8s ease-out forwards;
}

.animate-bounce-slow {
  animation: bounce-slow 2.5s ease-in-out infinite;
}

/* ── Feature section scroll reveal ───────────────────────── */

.feature-section .feature-visual {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease-out, transform 0.7s ease-out;
}

.feature-section.is-visible .feature-visual {
  opacity: 1;
  transform: translateY(0);
}

/* ── Form states ─────────────────────────────────────────── */

#waitlist-form button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* ── Selection color ─────────────────────────────────────── */

::selection {
  background-color: rgba(212, 160, 60, 0.3);
  color: inherit;
}
