:root {
  --bg-color: #ffffff;
  --text-color: #222222;
  --accent: #2f6f9f;
}

body.dark {
  --bg-color: #121212;
  --text-color: #f0f0f0;
}

body {
  font-family: 'Inter', sans-serif;
  margin: 0;
  background: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
}


.site-header {
  border-bottom: 1px solid #ddd;
  padding: 1.5rem 0;
  background: #faf9f7;
}

.nav-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-title a {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  text-decoration: none;
  color: #222;
}

.site-subtitle {
  font-size: 0.85rem;
  color: #777;
  margin-top: 4px;
}

.main-nav a {
  margin-left: 20px;
  text-decoration: none;
  font-size: 0.95rem;
  color: #444;
}

.main-nav a:hover {
  border-bottom: 1px solid #444;
}





header {
  text-align: center;
  padding: 2rem;
  background: var(--accent);
  color: white;
}

header a {
  color: white;
  margin: 0 10px;
  text-decoration: none;
}

section {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}

h2 {
  border-bottom: 2px solid var(--accent);
  padding-bottom: 0.5rem;
}

.skills-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1rem;
}

.job {
  margin-bottom: 1.5rem;
}

.date {
  font-size: 0.9rem;
  color: gray;
}

.project {
  border: 1px solid #ddd;
  padding: 1rem;
  margin: 1rem 0;
  border-radius: 6px;
}

.filter-buttons button {
  margin-right: 10px;
  padding: 5px 10px;
  cursor: pointer;
}

#tag-filters {
  margin-bottom: 1.5rem;
}

#tag-filters button {
  margin-right: 8px;
  margin-bottom: 8px;
  padding: 6px 12px;
  border: 1px solid #ccc;
  background: white;
  cursor: pointer;
  font-size: 0.85rem;
}

#tag-filters button:hover {
  background: #f2f2f2;
}

footer {
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
}
