/* === DUMP STATION DIGEST — SHARED STYLES === */
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&family=Courier+Prime:ital,wght@0,400;0,700;1,400&family=DM+Sans:wght@400;500;600;700&display=swap');

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

:root {
  --bg-dark: #1a1611;
  --bg-card: #221e18;
  --bg-card-hover: #2a2520;
  --surface: #2d2822;
  --border: #3d362e;
  --border-light: #4d443a;
  --text-primary: #e8dfd4;
  --text-secondary: #a89a8a;
  --text-muted: #7a6e60;
  --accent-coffee: #c8923e;
  --accent-coffee-light: #dba654;
  --accent-diesel: #8fb339;
  --accent-diesel-dark: #6d8a2a;
  --accent-rust: #b85c38;
  --accent-rust-light: #d47040;
  --accent-hot: #e04040;
  --font-display: 'Archivo Black', sans-serif;
  --font-body: 'DM Sans', sans-serif;
  --font-mono: 'Courier Prime', monospace;
}

html { scroll-behavior: smooth; }

body {
  background: var(--bg-dark);
  color: var(--text-primary);
  font-family: var(--font-body);
  line-height: 1.6;
  overflow-x: hidden;
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
}

a { color: var(--accent-coffee); text-decoration: none; }
a:hover { color: var(--accent-coffee-light); }

/* === ARTICLE HEADER BAR === */
.article-header-bar {
  background: linear-gradient(180deg, #0f0d0a 0%, var(--bg-dark) 100%);
  border-bottom: 3px solid var(--accent-coffee);
  padding: 1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.article-header-bar::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: repeating-linear-gradient(90deg, var(--accent-coffee) 0px, var(--accent-coffee) 20px, transparent 20px, transparent 24px);
}

.header-logo a {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  text-decoration: none;
  text-transform: uppercase;
}

.header-logo .highlight { color: var(--accent-coffee); }

.header-nav {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.header-nav a {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  transition: color 0.2s;
}

.header-nav a:hover { color: var(--accent-coffee); }

/* === ARTICLE LAYOUT === */
.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 2.5rem 2rem 4rem;
}

.article-breadcrumb {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.article-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
}

.article-breadcrumb a:hover { color: var(--accent-coffee); }

.article-category {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.75rem;
  border-radius: 3px;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.cat-problems { background: rgba(184, 92, 56, 0.2); color: var(--accent-rust-light); }
.cat-gear { background: rgba(143, 179, 57, 0.2); color: var(--accent-diesel); }
.cat-campgrounds { background: rgba(200, 146, 62, 0.2); color: var(--accent-coffee-light); }
.cat-rvlife { background: rgba(100, 140, 200, 0.2); color: #8ab4e8; }
.cat-ratings { background: rgba(224, 64, 64, 0.15); color: #e87070; }

.article-title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  line-height: 1.15;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.article-meta {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.article-meta .author { color: var(--accent-coffee); }

.article-body {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-secondary);
}

.article-body p {
  margin-bottom: 1.25rem;
}

.article-body h2 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
  text-transform: uppercase;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 2px solid var(--accent-coffee);
  display: inline-block;
}

.article-body h2::after {
  content: '';
  display: block;
}

.article-body strong {
  color: var(--text-primary);
  font-weight: 600;
}

.article-body blockquote {
  border-left: 3px solid var(--accent-coffee);
  padding: 1rem 1.5rem;
  margin: 1.5rem 0;
  background: rgba(200, 146, 62, 0.05);
  border-radius: 0 4px 4px 0;
  font-style: italic;
  color: var(--text-secondary);
}

.article-body ul, .article-body ol {
  margin: 1rem 0 1.25rem 1.5rem;
  color: var(--text-secondary);
}

.article-body li {
  margin-bottom: 0.5rem;
}

/* INFO BOX */
.info-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid var(--accent-diesel);
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.info-box h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent-diesel);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.info-box p, .info-box ul {
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
}

/* RATING BOX */
.rating-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.rating-score {
  font-family: var(--font-display);
  font-size: 3rem;
  color: var(--accent-coffee);
  line-height: 1;
}

.rating-label {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.3rem;
}

.rating-breakdown {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 1rem;
  margin-top: 1rem;
  text-align: center;
}

.rating-item-score {
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--text-primary);
}

.rating-item-label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

/* ARTICLE FOOTER */
.article-footer {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.article-tags {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.tag {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  background: rgba(255,255,255,0.04);
  padding: 0.2rem 0.6rem;
  border-radius: 2px;
}

.article-cta {
  background: linear-gradient(135deg, #2a2210, #1f1a10);
  border: 1px solid var(--border);
  border-radius: 6px;
  padding: 1.5rem;
  text-align: center;
}

.article-cta h3 {
  font-family: var(--font-display);
  font-size: 1rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.article-cta p {
  font-size: 0.9rem;
  color: var(--text-secondary);
  margin-bottom: 1rem;
}

.btn-cta {
  display: inline-block;
  background: var(--accent-diesel);
  color: #111;
  border: none;
  padding: 0.6rem 2rem;
  font-family: var(--font-display);
  font-size: 0.85rem;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.2s;
}

.btn-cta:hover {
  background: #9cc33f;
  color: #111;
  transform: translateY(-1px);
}

/* FACEBOOK CALLOUT */
.fb-callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 4px solid #1877f2;
  border-radius: 0 6px 6px 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
}

.fb-callout h3 {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: #5b9bf5;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.fb-callout a {
  color: #5b9bf5;
  border-bottom: 1px dashed #5b9bf5;
}

.fb-callout a:hover { border-bottom-style: solid; }

/* SITE FOOTER */
.site-footer {
  background: #0f0d0a;
  border-top: 1px solid var(--border);
  padding: 2rem;
  text-align: center;
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1rem;
  color: var(--text-muted);
  text-transform: uppercase;
}

.footer-brand .highlight { color: var(--accent-coffee); }

.footer-links {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-links a {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.footer-links a:hover { color: var(--accent-coffee); }

.footer-copy {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  opacity: 0.6;
}

/* RESPONSIVE */
@media (max-width: 600px) {
  .article-header-bar { padding: 0.75rem 1rem; flex-wrap: wrap; gap: 0.5rem; }
  .header-nav { gap: 0.75rem; }
  .article-container { padding: 1.5rem 1rem 3rem; }
  .article-meta { font-size: 0.75rem; }
  .rating-breakdown { grid-template-columns: 1fr 1fr; }
}
