
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600&family=Playfair+Display:wght@700&display=swap');

:root {
  --accent-color: #d8a39d; /* dusty rose */
  --neutral-light: #fdfaf6;
  --neutral-dark: #a1866f; /* tan */
  --background: #fffaf7;
  --text-color: #444;
  --heading-font: 'Playfair Display', serif;
  --body-font: 'Inter', sans-serif;
}

body {
  margin: 0;
  font-family: var(--body-font);
  background: var(--neutral-light);
  color: var(--text-color);
  line-height: 1.6;
}

header, footer {
  background-color: var(--background);
  padding: 20px;
  text-align: center;
}

a {
  color: var(--accent-color);
  text-decoration: none;
}

nav a {
  margin: 0 12px;
  font-weight: 600;
  color: #555;
}

h1, h2, h3 {
  font-family: var(--heading-font);
  color: #222;
}

.container {
  max-width: 900px;
  margin: 0 auto;
  padding: 40px 20px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}

.blog-header {
  text-align: center;
  margin-bottom: 40px;
}

.blog-header img {
  max-width: 100%;
  border-radius: 10px;
  margin-bottom: 20px;
}

.blog-content {
  font-size: 17px;
}

.blog-content img {
  max-width: 100%;
  margin: 20px 0;
  border-radius: 8px;
}

.blog-content ul {
  padding-left: 20px;
  list-style-type: disc;
}

.blog-content a {
  font-weight: bold;
}

.pinit {
  text-align: right;
  margin-top: -10px;
}

.pinit a {
  font-size: 14px;
  background: var(--accent-color);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
}

.tag-bar {
  margin-top: 40px;
  font-size: 14px;
  text-align: center;
}

.tag-bar span {
  background: var(--neutral-dark);
  color: white;
  padding: 6px 10px;
  border-radius: 12px;
  margin: 0 6px;
}

.related-posts {
  margin-top: 60px;
}

.related-posts h3 {
  margin-bottom: 20px;
}

.related-posts a {
  display: block;
  margin-bottom: 10px;
  font-weight: 600;
}

footer small {
  display: block;
  margin-top: 10px;
  font-size: 12px;
  color: #777;
}

@media (max-width: 768px) {
  .container {
    padding: 20px 16px;
  }

  .pinit {
    text-align: center;
    margin-top: 20px;
  }
}
