 body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(to bottom, #f4f4f9 0%, #e1e1e8 40%, #d0d0da 80%, #bebed1 100%);
  color: #2e2e3e;
  overscroll-behavior: none;
  min-height: 100dvh;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(90deg, #686a9d, #5f788a);
  color: white;
  padding: 1rem 2rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  display: flex;
  justify-content: flex-start; gap: 4rem;
  align-items: center;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: white;
  text-decoration: none;
  font-weight: bold;
  transition: opacity 0.2s;
}

.nav-links a:hover {
  opacity: 0.8;
}

main {
    max-width: 800px;
    margin: 2rem auto;
    padding: 3rem 1rem 2rem 1rem;
}

.project-card {
  display: flex;
  align-items: flex-start;
  background-color: #f8f8fc;
  border-radius: 15px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  padding: 2rem;
  margin-bottom: 2rem;
  transition: transform 0.3s, box-shadow 0.3s;
  border-left: 6px solid #6c63ff;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  gap: 1.5rem;
}

.project-card:nth-child(2) {
  animation-delay: 0.2s;
}

.project-card:nth-child(3) {
  animation-delay: 0.4s;
}

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

.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.project-content {
  flex: 2;
}

.project-image {
  flex: 1;
  max-width: 150px;
}

.project-image img {
  width: 100%;
  border-radius: 10px;
  object-fit: cover;
}

.project-title {
  margin-top: 0;
  color: #4a4e69;
  font-size: 1.5rem;
}

.project-description {
  margin-bottom: 0;
  line-height: 1.6;
  color: #444;
}
  .project-link {
  color: inherit;
  text-decoration: none;
}

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

section {
  margin-bottom: 3rem;
}

h2 {
  color: #4a4e69;
  margin-bottom: 0.5rem;
}

p {
  line-height: 1.6;
  color: #444;
}