/* Import custom font */
@font-face {
  font-family: 'PleaseDontLeaveNBP';
  src: url('/fonts/PleaseDontLeaveNBP.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

/* Base look: gritty vintage with background image */
body {
  background: url('images/gritty-bg.jpg') no-repeat center center fixed;
  background-size: cover;
  color: #d6d6d6;
  font-family: "Courier New", monospace;
  margin: 0;
  padding: 0;
}

/* Wrapper keeps content centered */
.wrapper {
  width: 760px;
  margin: auto;
  padding: 20px;
  background: rgba(10, 10, 10, 0.95);
  border: 1px solid #333;
  box-shadow: 0 0 25px rgba(0,0,0,0.7);
}

/* Header */
header {
  text-align: center;
  border-bottom: 1px dashed #444;
  padding-bottom: 12px;
  margin-bottom: 25px;
}

header h1 {
  font-family: 'PleaseDontLeaveNBP', "Courier New", monospace;
  font-size: 2.6em;
  margin: 0;
  color: #b2a98f;
  text-shadow: 0 0 4px #000;
}

.tagline {
  font-style: italic;
  font-size: 0.9em;
  color: #888;
  margin-top: 6px;
}

/* Navigation */
nav {
  margin-top: 10px;
}

nav a {
  color: #bbb;
  text-decoration: none;
  margin: 0 8px;
  font-weight: bold;
}

nav a:hover {
  color: #b2a98f;
  text-decoration: underline;
}

/* Posts */
article {
  margin-bottom: 40px;
  border: 1px solid #333;
  padding: 15px;
  background: rgba(20,20,20,0.85);
}

article h2 a {
  color: #e0e0e0;
  text-decoration: none;
  font-family: "Courier New", monospace;
}

article h2 a:hover {
  color: #b2a98f;
}

.date {
  font-size: 0.8em;
  color: #777;
  margin-bottom: 6px;
  font-family: monospace;
}

/* Tags */
.tags {
  margin: 0 0 10px 0; /* directly under date */
}

.tag {
  display: inline-block;
  color: #ddd;
  text-decoration: none;
  padding: 4px 8px;
  border: 1px solid rgba(255,255,255,0.3);
  margin: 0 4px 6px 0;
  font-size: 0.85em;
  transition: all 0.2s ease;
}

.tag:hover {
  background-color: rgba(255,255,255,0.1);
  color: #fff;
}

/* Read more button (matches prev/next links) */
.read-more {
  color: #ddd;
  text-decoration: none;
  font-size: 0.9em;
  font-weight: bold;
  margin-top: 8px;
  display: inline-block;
  transition: color 0.2s ease;
}

.read-more:hover {
  color: #b2a98f;
  text-decoration: underline;
  background: none;
  border: none;
}

/* Poem area */
.poem {
  font-family: "Times New Roman", serif;
  font-size: 1.1em;
  line-height: 1.7em;
  margin: 18px 0;
  color: #ddd;
}

/* Footer */
footer {
  text-align: center;
  font-size: 0.8em;
  border-top: 1px dashed #444;
  margin-top: 30px;
  padding-top: 10px;
  color: #777;
}

footer a {
  color: #999;
}

footer a:hover {
  color: #b2a98f;
}

/* Font credit for compliance */
footer .font-credit {
  font-size: 0.7em;
  margin-top: 5px;
  color: #666;
}

/* About section gallery */
.about-gallery {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.about-gallery img {
  width: 30%;
  height: auto;
  display: block;
}
