/* Navigation */
.site-header {
  padding: 2rem 0;
  border-bottom: 1px solid #f0ede6;
  margin-bottom: 3rem;
}

.site-title {
  font-family: 'Crimson Text', 'Times New Roman', serif;
  font-size: 2.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 0.5rem;
}

.site-title a {
  color: inherit;
  text-decoration: none;
}

.site-tagline {
  text-align: center;
  color: #6b6356;
  font-style: italic;
  font-size: 1.125rem;
}

.nav-menu {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 1.5rem;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
}

.nav-menu a {
  color: #2c2824;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

/* Footer */
.site-footer {
  margin-top: 4rem;
  padding: 3rem 0 2rem;
  border-top: 1px solid #f0ede6;
  text-align: center;
  color: #6b6356;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  font-size: 0.9rem;
}

/* Home Page Components */
.home-intro {
  text-align: center;
  margin-bottom: 3rem;
}

.home-intro h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.home-intro .lead {
  font-size: 1.25rem;
  color: #6b6356;
  line-height: 1.6;
}

/* Newsletter Signup */
.newsletter-signup {
  text-align: center;
  margin: 3rem 0;
}

.newsletter-signup h2 {
  margin-bottom: 1rem;
  color: #2c2824;
}

/* Tags */
.post-tags {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid #f0ede6;
}

.post-tags h4 {
  margin-bottom: 1rem;
  color: #6b6356;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
}

.tag {
  display: inline-block;
  background-color: #f9f6f0;
  color: #8b4513;
  padding: 0.25rem 0.75rem;
  margin: 0.25rem 0.5rem 0.25rem 0;
  border-radius: 15px;
  font-size: 0.85rem;
  text-decoration: none;
  font-family: 'Source Sans Pro', system-ui, sans-serif;
  transition: background-color 0.2s ease;
}

.tag:hover {
  background-color: #8b4513;
  color: #fefcf8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .nav-menu {
    flex-wrap: wrap;
    gap: 1rem;
  }
  
  .home-intro h1 {
    font-size: 2rem;
  }
  
  .home-intro .lead {
    font-size: 1.125rem;
  }
}