/* GoobStation — style.css */
/* Simple, clean, early-web feel. */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #fdf6e3;
  color: #2d2d2d;
  font-family: Georgia, 'Times New Roman', serif;
  line-height: 1.7;
  padding: 1.5rem;
  text-align: center;
}

header {
  padding-bottom: 1rem;
  border-bottom: 1px solid #d4c9b8;
  margin-bottom: 2rem;
}

header h1 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  font-weight: bold;
}

nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.25rem 1rem;
}

nav a {
  color: #b58900;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: 'Courier New', monospace;
}

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

main {
  max-width: 600px;
  margin: 0 auto;
  text-align: left;
}

main h2 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
  border-bottom: 1px solid #d4c9b8;
  padding-bottom: 0.25rem;
}

main h3 {
  font-size: 1.05rem;
  margin-bottom: 0.5rem;
  color: #4a5568;
}

main p {
  margin-bottom: 0.75rem;
}

footer {
  margin-top: 3rem;
  padding-top: 1rem;
  border-top: 1px solid #d4c9b8;
  color: #93a1a1;
  font-size: 0.8rem;
  font-family: 'Courier New', monospace;
}

/* Blog */
.post {
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid #e0d6c2;
}

.post:last-child {
  border-bottom: none;
}

.post time {
  display: block;
  color: #93a1a1;
  font-size: 0.8rem;
  margin-bottom: 0.25rem;
  font-family: 'Courier New', monospace;
}

.post h3 {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.post p {
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
}

.signature {
  text-align: right;
  color: #93a1a1;
  font-style: italic;
  margin-top: 0.75rem;
  font-size: 0.85rem;
}

/* Guestbook */
.guestbook-form {
  margin-bottom: 2rem;
}

.form-row {
  margin-bottom: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.85rem;
  color: #657b83;
  margin-bottom: 0.25rem;
  font-family: 'Courier New', monospace;
}

.form-row input,
.form-row textarea {
  width: 100%;
  padding: 0.5rem;
  border: 1px solid #d4c9b8;
  border-radius: 3px;
  font-family: Georgia, serif;
  font-size: 0.9rem;
  background: #fff;
}

.form-row input:focus,
.form-row textarea:focus {
  outline: none;
  border-color: #b58900;
}

.guestbook-form button {
  background: #b58900;
  color: #fff;
  border: none;
  border-radius: 3px;
  padding: 0.5rem 1.25rem;
  font-family: 'Courier New', monospace;
  font-size: 0.85rem;
  cursor: pointer;
}

.guestbook-form button:hover {
  background: #cb4b16;
}

.guestbook-entries {
  margin-top: 2rem;
}

.guestbook-entry {
  padding: 0.75rem 0;
  border-bottom: 1px solid #e0d6c2;
}

.entry-meta {
  font-size: 0.8rem;
  color: #93a1a1;
  font-family: 'Courier New', monospace;
  margin-bottom: 0.25rem;
}

.entry-message {
  font-size: 0.9rem;
}

/* Links */
.links-section {
  margin-bottom: 1.5rem;
}

.links-section h3 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  border-bottom: 1px solid #e0d6c2;
  padding-bottom: 0.25rem;
}

.links-section ul {
  list-style: none;
  padding: 0;
}

.links-section li {
  padding: 0.35rem 0;
  font-size: 0.9rem;
}

.links-section li a {
  color: #b58900;
  text-decoration: none;
  font-weight: bold;
}

.links-section li a:hover {
  color: #cb4b16;
  text-decoration: underline;
}

/* Projects */
.project-card {
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e0d6c2;
}

.project-card h3 {
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.project-card p {
  font-size: 0.9rem;
  color: #657b83;
}

/* Misc */
.section-desc {
  color: #93a1a1;
  font-size: 0.85rem;
  margin-bottom: 1.5rem;
  font-style: italic;
}

.divider {
  text-align: center;
  color: #d4c9b8;
  margin: 1.5rem 0;
  font-family: 'Courier New', monospace;
  font-size: 0.8rem;
  letter-spacing: 0.5em;
}

@media (max-width: 500px) {
  body {
    padding: 1rem;
  }

  header h1 {
    font-size: 1.25rem;
  }

  nav {
    gap: 0.15rem 0.75rem;
  }

  nav a {
    font-size: 0.8rem;
  }
}
