body {
  margin: 0;
  min-height: 100vh;
  font-family: Georgia, "Times New Roman", serif;
  background: linear-gradient(135deg, #1b1325, #2d1f3f, #3c2f5c);
  color: #f5efe7;
}

main {
  min-height: 100vh;
  max-width: 850px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

h1 {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #d4af37;
  text-shadow: 0 0 12px rgba(212, 175, 55, 0.45);
}

p {
  max-width: 650px;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 2rem;
}

nav {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

nav a {
  color: #d4af37;
  text-decoration: none;
  border: 1px solid #d4af37;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: bold;
}

nav a:hover {
  background: #d4af37;
  color: #1b1325;
}
.project-list {
  display: grid;
  gap: 0.5rem;
  margin: 2.5rem 0;
  width: 100%;
}

.project-card {
  padding: 1.5rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(212, 175, 55, 0.35);
  text-align: left;
}

.project-card:last-child {
  border-bottom: none;
}

.project-card h2 {
  color: #d4af37;
  margin-top: 0;
}
.project-link {
  display: inline-block;
  margin-top: 1rem;
  color: #d4af37;
  text-decoration: none;
  border: 1px solid #d4af37;
  padding: 0.6rem 1rem;
  border-radius: 999px;
  font-weight: bold;
}

.project-link:hover {
  background: #d4af37;
  color: #1b1325;
}
.site-header {
  width: 100%;
  padding: 1rem 2rem;
  box-sizing: border-box;

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;

  position: fixed;
  top: 0;
  left: 0;

  background: rgba(27, 19, 37, 0.85);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
}

.site-logo {
  color: #d4af37;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
}

.top-nav {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0;
}

.top-nav a {
  color: #f5efe7;
  text-decoration: none;
  font-weight: bold;
}

.top-nav a:hover {
  color: #d4af37;
}

main {
  padding-top: 110px;
}
