@import url("https://fonts.googleapis.com/css2?family=Merriweather:wght@400;700;900&family=Rubik:wght@400;500;600;700&display=swap");

:root {
  --spruce: #2d6a4f;
  --spruce-dark: #1b4332;
  --spruce-light: #40916c;
}

body {
  font-family: 'Rubik', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #334155;
  line-height: 1.75;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Merriweather', Georgia, serif;
  color: #1e293b;
  font-weight: 700;
  line-height: 1.3;
}

a { color: var(--spruce); }
a:hover { color: var(--spruce-dark); }

.navbar-brand span { color: var(--spruce-light) !important; }

.btn-primary {
  background-color: var(--spruce);
  border-color: var(--spruce);
}
.btn-primary:hover {
  background-color: var(--spruce-dark);
  border-color: var(--spruce-dark);
}

.btn-outline-primary {
  color: var(--spruce);
  border-color: var(--spruce);
}
.btn-outline-primary:hover {
  background-color: var(--spruce);
  border-color: var(--spruce);
  color: #fff;
}

.card { border: 1px solid #e2e8f0; transition: box-shadow 0.2s; }
.card:hover { box-shadow: 0 4px 12px rgba(0,0,0,0.08); }

.card-img-top { height: 200px; object-fit: cover; }

.sidebar-box {
  background: #f8f9fa;
  border: 1px solid #e2e8f0;
  border-radius: 0.375rem;
  padding: 1.25rem;
  margin-bottom: 1.25rem;
}
.sidebar-box h4 {
  font-family: 'Rubik', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #1e293b;
  margin-bottom: 0.75rem;
}
.sidebar-box ul { list-style: none; padding: 0; margin: 0; }
.sidebar-box li { padding: 0.35rem 0; border-bottom: 1px solid #e2e8f0; font-size: 0.88rem; }
.sidebar-box li:last-child { border-bottom: none; }
.sidebar-box li a { color: #475569; text-decoration: none; }
.sidebar-box li a:hover { color: var(--spruce); }

.hero-section {
  background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
  color: #fff;
  padding: 4rem 0;
}
.hero-section h1 { color: #fff; }
.hero-section .lead { color: rgba(255,255,255,0.8); }

.article-meta {
  font-size: 0.85rem;
  color: #94a3b8;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
  border-bottom: 1px solid #e2e8f0;
}

.breadcrumb { font-size: 0.85rem; }

.faq-item { margin-bottom: 1.5rem; }
.faq-item h3 { font-size: 1.1rem; margin-bottom: 0.4rem; }

.text-spruce { color: var(--spruce) !important; }
.bg-spruce { background-color: var(--spruce) !important; }

img.rounded { border-radius: 0.5rem !important; }

footer a:hover { color: #fff !important; }
