:root {
  --bg-color: #FFFAFA;
  --text-color: #212427;
  --text-secondary: #586069;
  --border-color: #2c3136;
  --underline-color: #212427;
}

body.dark-mode,
html.dark-mode body {
  --bg-color: #212427;
  --text-color: #FFFAFA;
  --text-secondary: #9da5b4;
  --border-color: #FFFAFA;
  --underline-color: #FFFAFA;
}

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

body {
  font-family: "Space Mono", monospace;
  background-color: var(--bg-color);
  color: var(--text-color);
  line-height: 1.6;
  font-size: 16px;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.outer-border {
  min-height: 100vh;
  padding: 1.5rem;
  margin: 1rem;
  transition: border-color 0.3s ease;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 1rem;
}

.site-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1.5rem 0 1rem 0;
  border-bottom: 2px dotted var(--border-color);
  flex-wrap: wrap;
}

.navigation {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.nav-link {
  color: var(--text-color);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s ease;
}
.nav-link:hover {
  color: var(--text-secondary);
}
.nav-link.active {
  font-weight: 600;
  color: var(--text-color);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.theme-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--text-color);
  border: 1px dotted transparent;
}
.theme-toggle:hover {
  background-color: var(--border-color);
  transform: scale(1.1);
  border-color: var(--border-color);
}
.theme-toggle:active {
  transform: scale(0.95);
}
.theme-toggle:focus {
  outline: none;
  box-shadow: 0 0 0 2px var(--text-secondary);
}

.theme-icon {
  transition: all 0.3s ease;
}
.theme-icon.hidden {
  opacity: 0;
  transform: rotate(180deg);
  display: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-link {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s ease;
}
.social-link:hover {
  color: var(--text-color);
}

.content {
  margin-bottom: 2rem;
}

.hero {
  text-align: center;
  padding: 4rem 0;
}

.hero-greeting {
  font-size: 4rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: var(--text-color);
}

.underline {
  text-decoration: underline;
  text-decoration-color: var(--underline-color);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}

h1 {
  font-size: 2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--text-color);
}

h2 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  margin-top: 2rem;
  color: var(--text-color);
}

h3 {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

p {
  margin-bottom: 1rem;
  color: var(--text-color);
}

ul {
  margin-bottom: 1rem;
  padding-left: 1.5rem;
}

li {
  margin-bottom: 0.5rem;
  color: var(--text-color);
}

a {
  color: var(--text-color);
  text-decoration: underline;
}
a:hover {
  color: var(--text-secondary);
}

.coming-soon {
  font-style: italic;
  color: var(--text-secondary);
  margin-top: 1rem;
}

.intro {
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.experience-section {
  margin-top: 2rem;
}

.experience-item {
  border: 2px dotted var(--border-color);
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
}
.experience-item:hover {
  border-style: dashed;
  border-color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.experience-item h2 {
  margin-bottom: 0.5rem;
  margin-top: 0;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--text-color);
}
.experience-item .duration {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: 1rem;
  margin-top: 0;
  font-weight: normal;
}

.role-info {
  font-size: 1rem;
}
.role-info p {
  margin-bottom: 0.75rem;
  line-height: 1.5;
}
.role-info p:last-child {
  margin-bottom: 0;
}
.role-info .role, .role-info .duration {
  font-size: 0.95rem;
  color: var(--text-secondary);
}
.role-info .description {
  font-size: 1rem;
  color: var(--text-color);
  margin-top: 0.5rem;
  font-style: italic;
}

body.dark-mode .experience-item:hover,
html.dark-mode body .experience-item:hover {
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.08);
}

.projects-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.project-card {
  border: 2px dotted var(--border-color);
  padding: 1.5rem;
  border-radius: 6px;
  margin-bottom: 2rem;
  background-color: var(--bg-color);
  transition: all 0.3s ease;
}
.project-card:hover {
  border-style: dashed;
  border-color: var(--text-secondary);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.project-card h3 {
  margin-bottom: 1rem;
  margin-top: 0;
}
.project-card p {
  margin-bottom: 0;
  color: var(--text-secondary);
}

body.dark-mode .project-card:hover,
html.dark-mode body .project-card:hover {
  box-shadow: 0 2px 8px rgba(255, 255, 255, 0.08);
}

@media (max-width: 768px) {
  .site-header {
    flex-direction: column;
    gap: 1rem;
    align-items: flex-start;
  }
  .navigation {
    width: 100%;
    order: 1;
  }
  .header-actions {
    width: 100%;
    justify-content: space-between;
    order: 2;
  }
  .social-links {
    flex: 1;
  }
  .theme-toggle {
    margin-left: auto;
  }
}

/*# sourceMappingURL=styles.css.map */