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

:root {
  --ghibli-bg: #f7f2e7;
  --ghibli-text: #3a5743;
  --ghibli-sub: #9bb5a0;
  --ghibli-accent: #c25b56;
  --ghibli-warm-white: #faf8f2;
}

body {
  font-family: 'Nunito', system-ui, sans-serif;
  margin: 0;
  padding: 0;
  color: var(--ghibli-text);
  background: var(--ghibli-bg);
}

.nav {
  position: fixed;
  top: 0;
  width: 100%;
  padding: 1rem 2rem;
  z-index: 1000;
  background: rgba(247, 242, 231, 0.95);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(58, 87, 67, 0.06);
}

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

.nav-logo {
  display: flex;
  align-items: center;
  color: var(--ghibli-text);
}

main {
  max-width: 700px;
  margin: 6rem auto 2rem;
  padding: 0 1rem;
  line-height: 1.6;
}

h1 {
  font-family: 'Quicksand', sans-serif;
  text-align: center;
  margin-bottom: 2rem;
  font-weight: 700;
  color: var(--ghibli-text);
}

ul { list-style: none; padding: 0; }
li { margin: 1rem 0; }
a {
  font-size: 1.2rem;
  font-weight: 500;
  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--ghibli-accent);
  text-decoration: underline;
}

footer {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 10px;
  font-family: 'Nunito', sans-serif;
  color: var(--ghibli-sub);
  font-size: 1rem;
  margin-top: 3em;
}

.writing-entry {
  display: flex;
  align-items: center;
  margin-bottom: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.writing-entry:hover {
  background: rgba(155, 181, 160, 0.1);
}

.writing-entry a {
  font-weight: 500;
  color: inherit;
  text-decoration: none;
}

.writing-entry a:hover {
  color: var(--ghibli-accent);
  text-decoration: underline;
}

.writing-date {
  margin-left: 1rem;
  color: var(--ghibli-sub);
  font-size: 0.9rem;
}
