* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  font-family: Inter;
  background: white;
  color: #111;
  line-height: 1.6;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: nowrap;
  padding: 24px 10%;
  position: sticky;
  top: 0;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #eee;
  z-index: 1000;
}
.nav nav {
  display: flex;
  gap: 2vw;
}
.nav a {
  margin-left: 30px;
  text-decoration: none;
  color: #666;
  font-size: 15px;
  white-space: nowrap;
  flex-shrink: 1;
}
.nav a.active {
  color: black;
  font-weight: 600;
  border-bottom: 2px solid black;
}
.nav a:hover {
  color: #000;
}

.logo {
  font-weight: 600;
}

.hero {
  padding: 140px 10%;
  max-width: 900px;
}
.hero-links {
  margin-top: 30px;
  display: flex;
  gap: 24px;
}

.hero-links a {
  text-decoration: none;
  color: #444;
  font-weight: 500;
  border-bottom: 1px solid #ddd;
  padding-bottom: 3px;
  transition: 0.2s;
}

.hero-links a:hover {
  color: #000;
  border-color: #000;
}
.hero h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 1.1;
  margin-bottom: 20px;
  max-width: 800px;
}

.hero p {
  font-size: 20px;
  color: #666;
  max-width: 520px;
}

.section {
  padding: 120px 10%;
  border-top: 1px solid #eee;
}

.section h2 {
  font-size: 28px;
  margin-bottom: 50px;
}

.project {
  margin-bottom: 60px;
  max-width: 600px;
}
.project {
  transition: all 0.3s ease;
}
.project a {
  text-decoration: none;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #ddd;
  padding-bottom: 2px;
}

.project a:hover {
  color: #000;
  border-color: #000;
}

.project:hover {
  transform: translateY(-4px);
}

.project h3 {
  font-size: 22px;
  margin-bottom: 10px;
}

.project p {
  color: #666;
  margin-bottom: 10px;
}

.project span {
  font-size: 14px;
  color: #999;
}
.project-links {
  margin-top: 15px;
  display: flex;
  gap: 16px;
}

.project-links a {
  text-decoration: none;
  font-size: 14px;
  color: #444;
  border-bottom: 1px solid #ddd;
  padding-bottom: 3px;
  transition: 0.2s;
}

.project-links a:hover {
  color: black;
  border-color: black;
}

.project-image {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 16px;
  border: 1px solid #eee;
}

.tech {
  display: block;
  margin-top: 8px;
  font-size: 14px;
  color: #777;
}

.about {
  max-width: 600px;
  color: #666;
  font-size: 18px;
}

.email {
  display: inline-block;
  margin-top: 20px;
  font-size: 20px;
  text-decoration: none;
  border-bottom: 1px solid #ccc;
  color: #000;
  padding-bottom: 4px;
}

.email:hover {
  border-color: black;
}

footer {
  padding: 80px 10%;
  color: #888;
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}
