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

body {
  background: #111;
  color: #f5f5f5;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

header nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
}
header nav .logo { color: #f5f5f5; text-decoration: none; font-weight: bold; letter-spacing: 1px; }
header nav ul { list-style: none; display: flex; flex-wrap: wrap; gap: 1rem 2rem; }
header nav ul a { color: #ccc; text-decoration: none; }
header nav ul a:hover { color: #fff; }

.hero {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  min-height: 80vh;
  padding: 2rem;
  flex-wrap: wrap;
}
.hero-image {
  width: 280px;
  max-width: 80vw;
  height: 360px;
  object-fit: cover;
  border-radius: 4px;
}
.hero-text h1 { font-size: 3rem; letter-spacing: 2px; margin-bottom: 0.5rem; }
.hero-text p { color: #aaa; font-size: 1.1rem; letter-spacing: 1px; }

.in-progress {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}
.in-progress-tag {
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #888;
  font-size: 0.85rem;
  margin-bottom: 1rem;
}
.in-progress h1 {
  font-size: 2.5rem;
  font-style: italic;
  margin-bottom: 1rem;
}
.in-progress p {
  color: #aaa;
  max-width: 420px;
  margin-bottom: 2rem;
}
.back-link {
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid #555;
  padding-bottom: 2px;
}
.back-link:hover { border-color: #f5f5f5; }

.about, .projects {
  max-width: 700px;
  margin: 0 auto;
  padding: 4rem 2rem;
}
.projects { max-width: 900px; }
.about h1 { font-size: 2.2rem; margin-bottom: 1.5rem; }
.about p { color: #ccc; line-height: 1.6; margin-bottom: 1.5rem; }
.social-links { display: flex; gap: 1.5rem; }
.social-links a {
  color: #f5f5f5;
  text-decoration: none;
  border-bottom: 1px solid #555;
  padding-bottom: 2px;
}
.social-links a:hover { border-color: #f5f5f5; }

.projects h2 { font-size: 1.6rem; margin-bottom: 2rem; }

.project-card {
  display: flex;
  gap: 2rem;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 1.5rem;
  flex-wrap: wrap;
}
.project-image.placeholder {
  width: 180px;
  max-width: 80vw;
  height: 130px;
  background: #2a2a2a;
  border-radius: 4px;
  flex-shrink: 0;
}
.project-info { flex: 1 1 300px; }
.project-info h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.project-info p { color: #aaa; margin-bottom: 1rem; }
.tech-tags { display: block; color: #777; font-size: 0.85rem; margin-bottom: 1.2rem; }

.project-ctas { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.cta-btn {
  display: inline-block;
  padding: 0.5rem 0.8rem;
  background: #f5f5f5;
  color: #111;
  text-decoration: none;
  border-radius: 4px;
  font-size: 0.82rem;
  font-weight: bold;
  white-space: nowrap;
}
.cta-btn.secondary {
  background: transparent;
  color: #f5f5f5;
  border: 1px solid #555;
}

.teasers {
  display: flex;
  gap: 2rem;
  max-width: 900px;
  margin: 0 auto;
  padding: 2rem 2rem 4rem;
  flex-wrap: wrap;
}
.teaser-card {
  flex: 1 1 220px;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 6px;
  padding: 1.5rem;
}
.teaser-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; }
.teaser-card p { color: #aaa; font-size: 0.9rem; margin-bottom: 1rem; }
.teaser-link { color: #f5f5f5; text-decoration: none; border-bottom: 1px solid #555; padding-bottom: 2px; font-size: 0.9rem; }
.teaser-link:hover { border-color: #f5f5f5; }

footer {
  text-align: center;
  padding: 2rem;
  color: #777;
  font-size: 0.85rem;
  border-top: 1px solid #222;
}
footer a { color: #aaa; text-decoration: none; border-bottom: 1px solid #444; }
footer a:hover { color: #f5f5f5; }
