body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background-color: #121212;
  color: #e0e0e0;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  transition: background-color 0.4s ease;
}

header {
  background-color: #1f1f1f;
  color: white;
  padding: 2rem 1rem;
  text-align: center;
}

nav {
  background-color: #222;
  text-align: center;
  padding: 1rem;
}

nav a {
  display: inline-block;
  color: white;
  margin: 0 0.75rem;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

nav a:hover {
  color: #80cbc4;
}

.resume-btn {
  background-color: #80cbc4;
  color: #121212;
  padding: 0.5rem 1rem;
  border-radius: 5px;
  text-decoration: none;
  margin-left: 1rem;
  font-weight: bold;
  transition: background-color 0.3s;
}

.resume-btn:hover {
  background-color: #4db6ac;
}

section {
  padding: 2rem;
  max-width: 1000px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

section.visible {
  opacity: 1;
  transform: translateY(0);
}

h2 {
  color: #80cbc4;
  margin-bottom: 1rem;
}

.project {
  background-color: #1e1e1e;
  border: 1px solid #333;
  border-radius: 6px;
  padding: 1rem;
  margin-bottom: 1.5rem;
  transition: transform 0.3s, box-shadow 0.3s;
}

.project:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 15px rgba(128, 203, 196, 0.3);
}

.contact-link {
  color: #80cbc4;
  text-decoration: none;
}

.contact-link:hover {
  text-decoration: underline;
}

footer {
  background-color: #1f1f1f;
  color: #aaa;
  text-align: center;
  padding: 1rem;
}

/* Intro Splash */
#intro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #121212;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 2rem;
  z-index: 9999;
  animation: fadeOut 2s ease 2.5s forwards;
}

#intro h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  opacity: 0;
  animation: slideIn 1s ease forwards;
}

#intro p {
  font-size: 1.5rem;
  opacity: 0;
  animation: slideIn 1s ease 0.5s forwards;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
  }
}
