/* style.css */
body {
  font-family: system-ui, sans-serif;
  background-color: #fafafa;
  color: #333;
  margin: 0;
  padding: 0;
}

header {
  background-image: url("trees.jpg"); /* your uploaded image */
  background-size: cover;                 /* or 'contain', depending on look */
  background-position: center;
  height: 250px;                          /* controls the height of the bar */
  color: white;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}


nav a {
  margin: 0 10px;
  color: white;
  text-decoration: none;
  font-weight: bold;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 60px;
  max-width: 800px;
  margin: auto;
}

footer {
  background-color: #eee;
  color: #555;
  text-align: center;
  padding: 10px;
  position: relative;
  bottom: 0;
  width: 100%;
  margin-top: 40px;
}

.content-container {
  background-color: white; /* or any color you want */
  padding: 20px;
  max-width: 800px;
  margin: 30px auto;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.blog-posts article {
  background-color: #ffffff;
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s;
}

.blog-posts article:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.blog-posts article h3 a {
  color: #0080ff;
  text-decoration: none;
}

.blog-posts article h3 a:hover {
  text-decoration: underline;
}

.post-date {
  font-size: 0.9em;
  color: #888;
  margin-bottom: 10px;
}
body::before {
  content: "";
  position: fixed;
  top: 0; left: 0; width: 100%; height: 100%;
  background: url('noise.jpg') repeat;
  opacity: 0.08;
  pointer-events: none;
  z-index: 1000;
}