/* Reset and Base */
body {
  font-family: 'Georgia', serif;
  margin: 0;
  padding: 0;
  background: #f4f1ea; /* soft neutral background */
  color: #2d3926;
  line-height: 1.6;
}
body {
  background: url('images/homepage-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  background-attachment: fixed;
  font-family: Georgia, serif;
  margin: 0;
  padding: 0;
  color: #2d3926;
  line-height: 1.6;
}/* Layout Wrapper */
main {
  background: rgba(255, 253, 249, 0.9); /* transparent light beige */
  border-radius: 8px;
  padding: 2rem;
  max-width: 960px;
  margin: 2rem auto;
}/* Header Styling */
header {
  background: linear-gradient(to right, #cfe5c2, #e9f5dc);
  text-align: center;
  padding: 2rem 1rem;
  border-bottom: 1px solid #d7e7c9;
}

header h1 {
  margin: 0;
  font-size: 2.2rem;
  color: #2f4f2f;
}

header p {
  margin-top: 0.5rem;
  font-style: italic;
  color: #3d5e38;
}

nav {
  margin-top: 1rem;
}

nav a {
  margin: 0 1rem;
  text-decoration: none;
  color: #3b6b47;
  font-weight: bold;
}

nav a.active {
  text-decoration: underline;
}

/* Blog Content */
.blog-post h2 {
  font-size: 1.8rem;
  margin-top: 0;
  color: #3e5336;
}

.blog-post h3 {
  color: #4b5d3b;
  margin-top: 1.5rem;
}

.blog-post img {
  display: block;
  margin: 1.5rem auto;
  max-width: 100%;
  height: auto;
  border-radius: 6px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.blog-post ul {
  padding-left: 1.5rem;
  list-style-type: disc;
}

.blog-post li {
  margin-bottom: 0.5rem;
}

/* Date Styling */
.date {
  font-size: 0.9rem;
  color: #777;
  margin-bottom: 1rem;
}

/* Footer */
footer {
  text-align: center;
  margin-top: 4rem;
  padding: 1.5rem;
  background: #eef5e4;
  color: #5a6e57;
  font-size: 0.85rem;
  border-top: 1px solid #cfe5c2;

  .article-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  margin-bottom: 2rem;
}
  .article-list a {
  color: #5d7b4c;
  font-weight: bold;
  text-decoration: none;
}

.article-list a:hover {
  text-decoration: underline;
}
.article-list article {
  background: #fdf9f4; /* soft pastel beige */
  padding: 1rem 1.5rem;
  border-left: 4px solid #c6ddb1;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.05);
}
.article-list h3 {
  margin-top: 0;
  margin-bottom: 0.5rem;
  color: #3e5336;
}

.article-list p {
  margin: 0;
  color: #444;
}a.button {
  display: inline-block;
  background-color: #c6ddb1;
  color: #2d3926;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  border-radius: 6px;
  font-weight: bold;
  margin-top: 1rem;
}  

.pinterest-button {
  display: inline-block;
  background-color: #bd8cbf;
  color: white;
  padding: 0.6rem 1.2rem;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  margin-top: 1rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}}
