/* VignetteOnline.at – main.css */
:root {
  --brand-primary: #1a252f;
  --brand-accent: #3498db;
}
a { color: var(--brand-primary); }
a:hover { color: var(--brand-accent); }
nav { background: var(--brand-primary); }
nav a { color: #fff !important; }
nav strong a { color: #fff !important; font-size: 1.1rem; }
.hero {
  background: linear-gradient(135deg, #1a252f22 0%, #3498db22 100%);
  border-left: 5px solid var(--brand-accent);
  padding: 2rem;
  border-radius: 0.5rem;
  margin-bottom: 2rem;
}
.fact-panel {
  border: 1px solid var(--pico-muted-border-color);
  border-left: 4px solid var(--brand-accent);
  padding: 1rem 1.5rem;
  border-radius: 0.375rem;
  margin-bottom: 1.5rem;
  background: var(--pico-card-background-color);
}
table { width: 100%; }
th { background: #1a252f; color: #fff; }
.checklist li::before { content: "✓ "; color: var(--brand-accent); font-weight: bold; }
.checklist { list-style: none; padding-left: 0; }
.review-card {
  border: 1px solid var(--pico-muted-border-color);
  border-radius: 0.5rem;
  padding: 1.25rem;
  margin-bottom: 1rem;
  background: var(--pico-card-background-color);
}
.review-card img { width: 64px; height: 64px; border-radius: 50%; float: left; margin-right: 1rem; }
.badge {
  display: inline-block;
  background: var(--brand-accent);
  color: #fff;
  border-radius: 0.25rem;
  padding: 0.15rem 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
}
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  background: #222; color: #eee;
  padding: 1rem 2rem;
  display: flex; align-items: center; gap: 1rem;
  z-index: 9999;
  font-size: 0.9rem;
}
.cookie-banner a { color: #adf; }
.cookie-banner button { margin-left: auto; }
.hidden { display: none !important; }
.timeline-step {
  display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start;
}
.timeline-step .step-num {
  background: var(--brand-primary); color: #fff;
  border-radius: 50%; width: 2rem; height: 2rem;
  display: flex; align-items: center; justify-content: center;
  font-weight: bold; flex-shrink: 0;
}
.alert-info {
  background: #1a252f18;
  border-left: 4px solid var(--brand-primary);
  padding: 0.75rem 1rem;
  border-radius: 0.25rem;
  margin: 1rem 0;
}
details summary { cursor: pointer; font-weight: 600; padding: 0.5rem 0; }
details[open] summary { color: var(--brand-accent); }
