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

body {
  font-family: 'Inter', sans-serif;
  background: #0a0a0a;
  color: white;
}

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

.logo {
  font-weight: 600;
}

.nav a {
  margin-left: 20px;
  text-decoration: none;
  color: white;
  opacity: 0.7;
}

.nav a:hover {
  opacity: 1;
}

/* HERO */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  padding: 0 80px;
}

.hero h1 {
  font-size: 64px;
  line-height: 1.1;
}

.highlight {
  color: #7b61ff;
}

.hero p {
  margin-top: 20px;
  opacity: 0.7;
}

/* WORK */
.work {
  padding: 120px 80px;
}

.projects {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.project {
  height: 300px;
  background: #111;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.project-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 0;
  transition: 0.4s;
}

.project:hover .project-overlay {
  opacity: 1;
}

/* FOOTER */
.footer {
  padding: 40px;
  text-align: center;
  opacity: 0.5;
}
