/* ====== Global Styles ====== */
body {
  margin: 0;
  font-family: 'Lora', serif;
  background: #f9f6f2;
  color: #2c2c2c;
  line-height: 1.6;
}

header, footer {
  background: #6b4f37;
  color: white;
  padding: 1rem 2rem;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-family: 'Special Elite', cursive;
  margin: 0;
}

nav a {
  color: white;
  margin-left: 1rem;
  text-decoration: none;
}

nav a:hover {
  text-decoration: underline;
}

main {
  padding: 3rem 2rem;
  max-width: 900px;
  margin: auto;
}

footer {
  text-align: center;
  margin-top: 2rem;
}

/* ====== Blog Post Styles ====== */
article h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.meta {
  font-size: 0.9rem;
  color: #666;
  margin-bottom: 1rem;
}

article p {
  margin-bottom: 1.5rem;
}

article img {
  max-width: 100%;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* ====== Blog Archive Cards ====== */
.post-preview {
  background: white;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
  border-radius: 8px;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.post-preview h3 {
  margin-top: 0;
}

.post-preview a {
  color: #6b4f37;
  text-decoration: none;
  font-weight: bold;
}

.pinned {
  border: 2px solid #6b4f37;
  background: #f4ebe1;
  padding: 1.5rem;
  border-radius: 8px;
}

/* ====== Tags ====== */
.tags {
  margin: 1rem 0;
}

.tag {
  display: inline-block;
  background: #e0d4c0;
  color: #6b4f37;
  padding: 0.3rem 0.6rem;
  border-radius: 5px;
  margin-right: 0.5rem;
  font-size: 0.85rem;
}

.tag a {
  color: #6b4f37;
  text-decoration: none;
}

.tag a:hover {
  text-decoration: underline;
}

/* ====== Contact Form ====== */
form {
  display: flex;
  flex-direction: column;
}

input, textarea {
  padding: 0.8rem;
  margin-bottom: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-family: 'Lora', serif;
}

button {
  background: #6b4f37;
  color: white;
  padding: 0.8rem;
  border: none;
  border-radius: 6px;
  cursor: pointer;
}

button:hover {
  background: #523a28;
}
