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

:root {
  --bg: #f0eee6;
  --text: #23272f;
  --accent: #3a3f4b;
  --link: #2d5a88;
  --section-bg: #fff;
  --border: #e5e7eb;
}
html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  background: var(--bg);
  color: var(--text);
  font-family: 'Manrope', sans-serif;
  font-size: 18px;
  line-height: 1.6;
  min-height: 100vh;
}
body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  min-height: 100vh;
}
.container {
  width: 100%;
  max-width: 700px;
  margin: 40px 0 0 0;
  padding: 32px 24px;
}
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 0 0 0.2em 0;
  color: var(--accent);
}
h2 {
  font-size: 1.2rem;
  font-weight: 500;
  margin: 0 0 1.2em 0;
  color: var(--text);
  opacity: 0.8;
}
nav {
  margin: 1.5em 0 2em 0;
  display: flex;
  gap: 1.5em;
}
nav a {
  color: var(--link);
  text-decoration: none;
  font-weight: 500;
  transition: color 0.15s;
}
nav a:hover {
  color: var(--accent);
  text-decoration: underline;
}
section {
  margin-bottom: 2.5em;
}
section:last-child {
  margin-bottom: 0;
}
.section-title {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 0.7em;
  color: var(--accent);
  letter-spacing: 0.01em;
}
ul, ol {
  margin: 0;
  padding-left: 1.2em;
}
.projects-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.projects-list li, .skills-list li {
  margin-bottom: 0.5em;
}
.skills-list {
  list-style: none;
  padding-left: 0;
  margin: 0;
}
.resume-link {
  display: inline-block;
  margin-top: 0.5em;
  color: var(--link);
  text-decoration: none;
  border-bottom: 1px dotted var(--link);
  transition: color 0.15s, border-color 0.15s;
}
.resume-link:hover {
  color: var(--accent);
  border-color: var(--accent);
}
@media (max-width: 600px) {
  .container {
    padding: 18px 6px;
  }
  h1 {
    font-size: 1.5rem;
  }
} 