@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&display=swap');

@font-face {
  font-family: 'UCityPro';
  src: url('fonts/UCityProWeb-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'UCityPro';
  src: url('fonts/UCityProWeb-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --bg: #e6f1eb;
  --text: #1c1d1d;
  --accent: #007aff;
  --meta: #555;
  --header-bg: #e6f1eb;
  --footer-bg: #e6f1eb;
  --border: #d0ded6;
}
body {
  font-family: 'Inter', 'UCityPro', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  margin: 0;
  padding: 0;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}
.container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 1.5rem;
}
.nav-container {
  padding-top: 2rem;
  text-align: left;
}
.site-header {
  background: var(--header-bg);
  border: none;
  margin-bottom: 3rem;
}
.site-nav {
  display: flex;
  gap: 2.5rem;
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a {
  color: var(--text);
  text-decoration: none;
  transition: opacity 0.2s;
  opacity: 0.6;
}
.site-nav a.active {
  opacity: 1;
}
.site-nav a:hover {
  opacity: 1;
}
.intro {
  margin-bottom: 3rem;
  text-align: left;
}
.name {
  font-size: 1.2rem;
  font-weight: 700;
  margin: 0 0 1rem 0;
}
.section-heading {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 3rem 0 1.5rem 0;
  color: var(--meta);
  text-align: left;
}
.link-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.8rem;
}
.link-row {
  display: flex;
  align-items: baseline;
  transition: all 0.2s ease;
}
.link-row:hover .desc em {
  text-decoration: underline;
}
.link-row:hover .right-link {
  text-decoration: underline;
}
.desc {
  flex: 1;
  position: relative;
  padding-right: 1rem;
}
.desc::after {
  display: none;
}
.right-link {
  text-decoration: none;
  font-size: 0.9rem;
  white-space: nowrap;
  color: var(--text);
  transition: all 0.2s ease;
}
.projects {
  text-align: left;
}
.project-pill {
  display: inline-block;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  color: var(--text);
  transition: background 0.2s;
}
.project-pill:hover {
  background: rgba(0,0,0,0.05);
}
.site-footer {
  text-align: center;
  padding-top: 4rem;
  padding-bottom: 4rem;
  background: var(--footer-bg);
  color: var(--meta);
  font-size: 0.9rem;
  border-top: none;
}
.search-container {
  margin: 2rem 0;
}
.search-input {
  width: 100%;
  padding: 0.8rem;
  font-size: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 4px;
  background: transparent;
  color: var(--text);
  font-family: inherit;
}
.search-input:focus {
  outline: none;
  border-color: var(--meta);
}
.search-input::placeholder {
  color: var(--meta);
}
@media (max-width: 600px) {
  .nav-container {
    padding-top: 1.2rem;
  }
  .site-nav {
    gap: 1.5rem;
  }
} 