
body {
  margin: 0;
  font-family: 'Space Grotesk', sans-serif;
  background: #0a0a0a;
  color: #f0f0f0;
  scroll-behavior: smooth;
}

#hero {
  position: relative;
  text-align: center;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.hero-bg {
  background: url('../assets/images/hero-bg.jpg') center/cover no-repeat;
  position: absolute;
  width: 100%;
  height: 100%;
  filter: brightness(0.4);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #0ff;
}

.subtitle {
  font-size: 0.95rem;
  margin-bottom: 1rem;
  color: #ffffff;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  color: #ff2eff;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-shadow: 0 0 5px #ff2eff, 0 0 10px #ff2eff;
}

main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

section {
  margin: 4rem 0;
}

h2 {
  color: #ff2eff;
  font-size: 2rem; /* Larger section headings */
}

h3 {
  color: #0ff; 
  font-size: 1rem; /* Smaller project subtitles */
}

a {
  color: #0ff;
} 

.plain-email {
  color: #ffffff;
}

footer {
  text-align: center;
  padding: 2rem;
  background: #111;
  color: #888;
}

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

.fade-in.visible {
  opacity: 1;
  transform: none;
}
