@import url('https://fonts.cdnfonts.com/css/chicago-2');

body {
  font-family: 'Chicago', sans-serif;
  background-color: #f8f5e7;
  color: #3b2f2f;
  margin: 0;
  padding: 0;
  line-height: 1.6;
}

header {
  background-color: #d4b48c;
  padding: 1.5rem 0;
  text-align: center;
  font-size: 1.5rem;
  font-weight: bold;
}

nav a {
  margin: 0 15px;
  text-decoration: none;
  color: #3b2f2f;
  font-weight: 600;
}

main {
  max-width: 800px;
  margin: 2rem auto;
  background-color: #fffaf1;
  padding: 2rem;
  border-radius: 15px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

footer {
  text-align: center;
  padding: 1rem 0;
  background-color: #f1e3c6;
  color: #3b2f2f;
  margin-top: 2rem;
  font-size: 0.9rem;
}

button, .delete-btn {
  background-color: #b68b4c;
  color: white;
  border: none;
  padding: 8px 15px;
  border-radius: 5px;
  cursor: pointer;
  transition: 0.2s;
}

button:hover, .delete-btn:hover {
  background-color: #a37a3c;
}

/* --- New Post Form Styling --- */
.post-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 600px;
  margin: 2rem auto;
  background: #fffdf8;
  padding: 2rem;
  border-radius: 1.25rem;
  box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.post-form label {
  font-weight: 600;
  color: #4a3b2c;
}

.post-form input,
.post-form textarea {
  border: 1px solid #d6c5a9;
  border-radius: 8px;
  padding: 0.75rem;
  font-family: 'ChicagoFLF', sans-serif;
  background: #fffaf2;
  resize: vertical;
}

.post-form button {
  align-self: flex-start;
  background: #b08968;
  color: #fffaf2;
  border: none;
  border-radius: 8px;
  padding: 0.75rem 1.25rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s ease;
}

.post-form button:hover {
  background: #8c6a52;
}

.timestamp {
  color: #7c6c5a;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  font-style: italic;
}
