/* Boring Arms – Static Site Stylesheet */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.6;
  color: #333;
  background: #f0f0f0;
}

/* ── Header ── */
header {
  background: #2a2e35;
  color: #fff;
  padding: 0;
  border-bottom: 3px solid #c5a028;
}
.header-inner {
  max-width: 1060px;
  margin: 0 auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.logo {
  text-decoration: none;
  display: block;
  line-height: 0;
}
.logo img {
  height: 52px;
  width: auto;
  display: block;
}

/* ── Navigation ── */
nav ul {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
nav ul li a {
  display: block;
  padding: 8px 14px;
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 3px;
  transition: background 0.15s, color 0.15s;
}
nav ul li a:hover,
nav ul li a.active {
  background: rgba(197,160,40,0.18);
  color: #c5a028;
}

/* ── Main content wrapper ── */
main {
  max-width: 1060px;
  margin: 24px auto;
  padding: 0 20px;
  display: flex;
  gap: 24px;
  align-items: flex-start;
}
.main-content {
  flex: 1 1 0;
  min-width: 0;
}
.sidebar {
  width: 240px;
  flex-shrink: 0;
}
@media (max-width: 720px) {
  main { flex-direction: column; }
  .sidebar { width: 100%; }
}

.content {
  background: #fff;
  padding: 28px 32px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
}

/* ── Typography ── */
h1 { font-size: 1.75em; margin-bottom: 14px; color: #2a2e35; }
h2 { font-size: 1.35em; margin: 22px 0 10px; color: #2a2e35; }
h3 { font-size: 1.1em; margin: 16px 0 8px; color: #3a3e45; }
h4 { font-size: 1em; margin: 12px 0 6px; color: #3a3e45; }

p { margin-bottom: 12px; }
a { color: #8a6e10; text-decoration: none; }
a:hover { text-decoration: underline; color: #c5a028; }
ul, ol { padding-left: 24px; margin-bottom: 12px; }
li { margin-bottom: 4px; }

/* ── Breadcrumb ── */
.breadcrumb {
  font-size: 13px;
  color: #888;
  margin-bottom: 18px;
}
.breadcrumb a { color: #8a6e10; }
.breadcrumb span { margin: 0 6px; }

/* ── Post list (homepage) ── */
.post-list { list-style: none; padding: 0; }
.post-item {
  border-bottom: 1px solid #e8e8e8;
  padding: 20px 0;
}
.post-item:last-child { border-bottom: none; }
.post-meta {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}
.post-item h2 {
  font-size: 1.2em;
  margin: 0 0 8px;
}
.post-item h2 a {
  color: #2a2e35;
  text-decoration: none;
}
.post-item h2 a:hover { color: #c5a028; text-decoration: none; }
.post-excerpt { color: #555; margin-bottom: 8px; }
.read-more {
  font-size: 13px;
  color: #8a6e10;
  font-weight: 600;
}

/* ── Blog post single ── */
.post-header { margin-bottom: 20px; }
.post-date { font-size: 13px; color: #888; margin-bottom: 4px; }
.post-body img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 14px 0;
  border-radius: 3px;
}
.post-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 10px;
  margin: 14px 0;
}
.post-gallery img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
  margin: 0;
}

/* ── FAQ ── */
.faq-item { margin-bottom: 22px; }
.faq-item h3 {
  font-size: 1em;
  font-weight: 700;
  color: #2a2e35;
  margin-bottom: 6px;
}

/* ── Sidebar ── */
.sidebar-box {
  background: #fff;
  padding: 18px 20px;
  border-radius: 4px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.08);
  margin-bottom: 18px;
}
.sidebar-box h4 {
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #888;
  border-bottom: 1px solid #e8e8e8;
  padding-bottom: 8px;
  margin-bottom: 12px;
}
.sidebar-box ul {
  list-style: none;
  padding: 0;
}
.sidebar-box ul li {
  margin-bottom: 6px;
  font-size: 14px;
}
.sidebar-box ul li a { color: #8a6e10; }

/* ── Footer ── */
footer {
  background: #2a2e35;
  color: #aaa;
  margin-top: 40px;
  padding: 30px 20px 0;
  border-top: 3px solid #c5a028;
}
.footer-inner {
  max-width: 1060px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  padding-bottom: 24px;
}
.footer-col h4 {
  color: #c5a028;
  font-size: 0.85em;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 10px;
}
.footer-col p, .footer-col a {
  font-size: 13px;
  color: #aaa;
  line-height: 1.8;
}
.footer-col a:hover { color: #c5a028; text-decoration: none; }
.footer-bottom {
  max-width: 1060px;
  margin: 0 auto;
  padding: 12px 0;
  border-top: 1px solid #3a3e45;
  font-size: 12px;
  color: #666;
}
