/* Animated Portfolio Styling */
body {
  background: linear-gradient(135deg, #0f0f0f, #1a1a1a);
  color: #00ffee;
  font-family: 'Courier New', monospace;
  margin: 0;
  padding: 0;
}

h1.typewriter {
  overflow: hidden;
  border-right: 2px solid #00ffee;
  white-space: nowrap;
  margin: 2rem auto;
  letter-spacing: 2px;
  animation: typing 3s steps(40, end), blink-caret 0.75s step-end infinite;
  width: fit-content;
}

@keyframes typing {
  from { width: 0; }
  to { width: 100%; }
}

@keyframes blink-caret {
  from, to { border-color: transparent; }
  50% { border-color: #00ffee; }
}

.fade-in {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1s ease-out forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

section {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
  text-align: center;
}

.parallax-bg {
  background: url('assets/galaxy.jpg') no-repeat center center fixed;
  background-size: cover;
  height: 300px;
  position: relative;
}

button.cta {
  background: #000;
  border: 2px solid #00ffee;
  color: #00ffee;
  padding: 0.8em 1.5em;
  font-size: 1em;
  font-weight: bold;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
}

button.cta:hover {
  background: #00ffee;
  color: #000;
}
