/* GOONJ 26' Shared Stylesheet */

html { scroll-behavior: smooth; }
body {
  background-color: #000;
  color: #fff;
  font-family: 'Inter', sans-serif;
  overflow-x: hidden;
}

:root {
  --red: #dc2626;
  --white: #ffffff;
  --gray: #9ca3af;
}

/* Navbar */
header {
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid #1f2937;
}

/* Footer */
footer {
  border-top: 1px solid #1f2937;
  color: var(--gray);
  text-align: center;
}

/* Hover / Transition */
a, button { transition: all 0.3s ease; }
a:hover { color: var(--red); transform: scale(1.03); }
button:hover { transform: scale(1.08); }

/* Animations */
@keyframes fadeUp {
  0% { opacity: 0; transform: translateY(40px); }
  100% { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp 1.2s ease-out forwards; }

@keyframes pulseGlow {
  0%,100% { box-shadow: 0 0 10px rgba(255,0,0,0.8); }
  50% { box-shadow: 0 0 25px rgba(255,0,0,1); }
}
.animate-pulse-glow { animation: pulseGlow 1.5s infinite ease-in-out; }

.img-hover { transition: transform 0.4s ease; }
.img-hover:hover { transform: scale(1.05); }
