/* Simplified Flexoki SCSS */
:root {
  --color-bg: #FFFCF0;
  --color-ui: #E6E4D9;
  --color-text: #100F0F;
  --color-text-2: #6F6E69;
  --color-accent: #AF3029;
  --color-nav-border: #E6E4D9;
}

body {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--bg);
  color: var(--color-text);
  font-family: "et-book", Palatino, "Palatino Linotype", Georgia, serif;
  line-height: 1.7;
}

.spotify-embed {
  margin: 1.5rem 0;
}

.site-nav {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-nav-border);
  padding: 1rem 0;
  text-align: right;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-nav li {
  display: inline-block;
  margin-left: 1.5rem;
}

.site-nav a {
  color: var(--color-text);
  text-decoration: none;
  font-weight: 500;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s;
}

.site-nav a:hover {
  background: var(--color-accent);
  color: #fff;
}

.hero {
  text-align: left;
  padding: 3rem 2rem;
}

.site-title {
  font-size: 3rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
}

.site-description {
  font-size: 1.3rem;
  color: var(--color-text-2);
  margin-bottom: 2rem;
}

.home-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  background: var(--color-ui);
  border-radius: 12px;
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
}

.intro h2,
.recent-posts h2,
.projects h2 {
  font-size: 1.5rem;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.recent-posts ul,
.projects ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recent-posts li,
.projects li {
  margin-bottom: 0.7rem;
}

.recent-posts a,
.projects a {
  color: var(--color-accent);
  text-decoration: none;
  padding: 0.2rem 0.4rem;
  border-radius: 3px;
}

.recent-posts a:hover,
.projects a:hover {
  text-decoration: underline;
}

.post-content img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 1rem 0;
}

.home-photo {
  max-width: 240px;
  border-radius: 50%;
  display: block;
  margin: 1rem auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.logo-thumb {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
  vertical-align: middle;
}

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