/* VignetteGuide Pro — main.css */
:root {
  --color-primary: #1B6B4A;
  --color-accent: #F39C12;
  --color-bg: #f8f9fa;
  --color-text: #212529;
  --font-main: 'Segoe UI', system-ui, sans-serif;
}
body {
  font-family: var(--font-main);
  background: var(--color-bg);
  color: var(--color-text);
  line-height: 1.7;
}
.site-navbar {
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}
.hero-section {
  background: linear-gradient(135deg, #1B6B4A 0%, #F39C12 100%);
  color: #fff;
  padding: 80px 0 60px;
}
.hero-section h1 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
}
.section-title {
  color: #1B6B4A;
  border-left: 4px solid #F39C12;
  padding-left: 12px;
  margin-bottom: 1.5rem;
}
.card-service {
  border-top: 3px solid #F39C12;
  transition: box-shadow 0.2s;
}
.card-service:hover {
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}
.site-footer {
  background: #1B6B4A;
  color: #e0e0e0;
}
.site-footer a {
  color: #f0c060;
  text-decoration: none;
}
.site-footer a:hover {
  color: #fff;
  text-decoration: underline;
}
.badge-accent {
  background: #F39C12;
  color: #fff;
}
.timeline-step {
  border-left: 3px solid #F39C12;
  padding-left: 20px;
  margin-bottom: 2rem;
  position: relative;
}
.timeline-step::before {
  content: attr(data-step);
  position: absolute;
  left: -18px;
  top: 0;
  background: #F39C12;
  color: #fff;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
}
.fact-panel {
  background: #fff;
  border: 1px solid #dee2e6;
  border-radius: 8px;
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
.fact-panel h4 {
  color: #1B6B4A;
}
.toc-box {
  background: #fff;
  border: 1px solid #F39C12;
  border-radius: 6px;
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}
.toc-box h5 {
  color: #1B6B4A;
}
.related-links {
  background: #fff3cd;
  border-left: 4px solid #F39C12;
  padding: 1rem 1.5rem;
  border-radius: 0 6px 6px 0;
  margin-top: 2rem;
}
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #1B6B4A;
  color: #fff;
  padding: 1rem 2rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.cookie-banner.hidden {
  display: none;
}
.btn-primary-custom {
  background: #F39C12;
  border-color: #F39C12;
  color: #fff;
}
.btn-primary-custom:hover {
  background: #1B6B4A;
  border-color: #1B6B4A;
  color: #fff;
}
table.table-bordered th {
  background: #1B6B4A;
  color: #fff;
}
.checklist-item::before {
  content: "✓";
  color: #F39C12;
  font-weight: bold;
  margin-right: 8px;
}
details summary {
  cursor: pointer;
  font-weight: 600;
  color: #1B6B4A;
  padding: 0.5rem 0;
}
details[open] summary {
  color: #F39C12;
}
.review-card {
  border-left: 4px solid #F39C12;
  background: #fff;
  padding: 1.5rem;
  border-radius: 0 8px 8px 0;
  margin-bottom: 1.5rem;
}
.review-stars {
  color: #F39C12;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  .hero-section {
    padding: 50px 0 40px;
  }
}
