:root {
  --black: #000000;
  --navy: #020617;
  --card: #020617;
  --text: #e5e7eb;
  --muted: #94a3b8;
  --accent: #38bdf8;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, system-ui, sans-serif;
  background: var(--navy);
  color: var(--text);
}

/* NAV */
nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(10px);
  z-index: 10;
}

.logo {
  font-weight: 700;
  letter-spacing: 2px;
}

.nav-links a {
  margin-left: 20px;
  text-decoration: none;
  color: var(--muted);
}

.nav-links a:hover {
  color: var(--accent);
}

/* HERO */
.hero {
  min-height: 100vh;
  background: var(--black);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 0 20px;
}

.name {
  font-size: 16px;
  letter-spacing: 6px;
  color: var(--muted);
  margin-bottom: 12px;
}

.hero h1 {
  font-size: 56px;
  margin: 0;
}

.hero p {
  margin-top: 12px;
  color: var(--muted);
}

.buttons {
  margin-top: 32px;
}

.buttons a {
  padding: 12px 26px;
  border-radius: 8px;
  text-decoration: none;
  margin: 0 8px;
  font-weight: 500;
}

.primary {
  background: var(--accent);
  color: var(--black);
}

.secondary {
  border: 1px solid var(--accent);
  color: var(--accent);
}

/* SECTIONS */
section {
  max-width: 900px;
  margin: 120px auto;
  padding: 0 20px;
}

section h2 {
  margin-bottom: 20px;
}

/* PROJECTS */
.project {
  background: var(--card);
  padding: 28px;
  border-radius: 12px;
  margin-bottom: 20px;
  border: 1px solid #1e293b;
  transition: transform 0.25s ease;
}

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

.project span {
  font-size: 14px;
  color: var(--muted);
}

/* CONTACT */
.contact-links a {
  margin-right: 20px;
  color: var(--accent);
  text-decoration: none;
}

/* FOOTER */
footer {
  text-align: center;
  padding: 40px;
  color: var(--muted);
}