/* Mystical Spaces — nature / yogi / meditation feel */

:root {
  --color-bg: #f6f2e9;
  --color-bg-soft: #efe8d8;
  --color-text: #3b3226;
  --color-text-muted: #6b6152;
  --color-moss: #6b7d5b;
  --color-moss-dark: #4f5e42;
  --color-clay: #c1785a;
  --color-clay-dark: #a25f45;
  --color-border: #ded3ba;

  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Nunito Sans", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  --max-width: 42rem;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.7;
}

img {
  max-width: 100%;
  height: auto;
  border-radius: 0.5rem;
}

a {
  color: var(--color-clay-dark);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

a:hover {
  border-bottom-color: currentColor;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--color-moss-dark);
  line-height: 1.25;
  margin-top: 2em;
  margin-bottom: 0.5em;
}

h1 {
  font-size: 2.25rem;
  letter-spacing: 0.01em;
}

h2 {
  font-size: 1.5rem;
}

h3 {
  font-size: 1.15rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-clay-dark);
}

p {
  margin: 0 0 1.2em;
}

/* Header / nav */

.site-header {
  border-bottom: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.site-title {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--color-moss-dark);
  border-bottom: none;
}

.site-title:hover {
  color: var(--color-clay-dark);
}

.nav-list {
  list-style: none;
  display: flex;
  gap: 1.5rem;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.nav-list a {
  color: var(--color-text);
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}

.nav-list a:hover {
  color: var(--color-moss-dark);
  border-bottom-color: var(--color-moss);
}

/* Main content */

.site-main {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 2.5rem 1.5rem 4rem;
}

.post-list {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
}

.post-list li {
  border-left: 2px solid var(--color-border);
  padding: 0.5rem 0 0.5rem 1rem;
  margin-bottom: 0.35rem;
  transition: border-color 0.2s ease;
}

.post-list li:hover {
  border-left-color: var(--color-clay);
}

.post-list a {
  color: var(--color-text);
  font-family: var(--font-display);
  font-size: 1.05rem;
  border-bottom: none;
}

.post-list a:hover {
  color: var(--color-clay-dark);
}

/* Footer */

.site-footer {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg-soft);
}

.footer-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 1.5rem;
  text-align: center;
  color: var(--color-text-muted);
  font-size: 0.85rem;
}

.footer-inner p {
  margin: 0;
}

@media (max-width: 30rem) {
  .header-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
