/* VinjCZ – main.css */
:root {
  --color-primary: #00695c;
  --color-accent: #e53935;
  --color-bg: #f8f9fa;
  --color-text: #333;
  --radius: 8px;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--color-text);
  background: #fff;
}

.uk-background-primary {
  background-color: var(--color-primary) !important;
}

.site-hero {
  background: linear-gradient(135deg, var(--color-primary) 0%, #1a1a2e 100%);
  color: #fff;
  padding: 4rem 0;
}

.matrix-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.matrix-table th {
  background: var(--color-primary);
  color: #fff;
  padding: 0.75rem 1rem;
  text-align: left;
}

.matrix-table td {
  padding: 0.65rem 1rem;
  border-bottom: 1px solid #e0e0e0;
}

.matrix-table tr:nth-child(even) td {
  background: #f5f5f5;
}

.matrix-table tr:hover td {
  background: #e8f4fd;
}

.fact-panel {
  background: #fff;
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  border-radius: 0 var(--radius) var(--radius) 0;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  padding: 0.4rem 0 0.4rem 2rem;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
}

.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-accent);
  font-weight: bold;
}

.compare-matrix {
  overflow-x: auto;
}

.toc-box {
  background: #f0f4f8;
  border: 1px solid #d0dce8;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin-bottom: 2rem;
}

.toc-box ol {
  margin: 0;
  padding-left: 1.5rem;
}

.breadcrumb {
  font-size: 0.875rem;
  color: #888;
  margin-bottom: 1rem;
}

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

.matrix-link-box {
  background: var(--color-primary);
  color: #fff;
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  margin: 1.5rem 0;
  display: inline-block;
}

.matrix-link-box a {
  color: #fff;
  text-decoration: none;
  font-weight: bold;
}

details summary {
  cursor: pointer;
  font-weight: 600;
  padding: 0.75rem 0;
  color: var(--color-primary);
  border-bottom: 1px solid #e0e0e0;
}

details[open] summary {
  color: var(--color-accent);
}

details p {
  padding: 0.75rem 0;
  color: #555;
}

.review-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  margin-bottom: 1.5rem;
}

.stars {
  color: var(--color-accent);
  font-size: 1.25rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  border-top: 4px solid var(--color-primary);
  height: 100%;
}

.price-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  text-align: center;
  border-top: 4px solid var(--color-primary);
}

.price-card.featured {
  border-top-color: var(--color-accent);
  transform: scale(1.03);
}

.price-amount {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--color-primary);
}

#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #222;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 9999;
  flex-wrap: wrap;
  gap: 1rem;
}

#cookie-banner.hidden {
  display: none;
}

.section-divider {
  border: none;
  border-top: 2px solid #e8e8e8;
  margin: 3rem 0;
}

blockquote.highlight {
  border-left: 4px solid var(--color-accent);
  padding: 1rem 1.5rem;
  background: #fffbf0;
  margin: 1.5rem 0;
  font-style: italic;
  color: #555;
}

.alert-info {
  background: #e3f2fd;
  border: 1px solid #90caf9;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  color: #1565c0;
}

.alert-warning {
  background: #fff8e1;
  border: 1px solid #ffe082;
  border-radius: var(--radius);
  padding: 1rem 1.5rem;
  margin: 1rem 0;
  color: #e65100;
}

dl.glossary dt {
  font-weight: 700;
  color: var(--color-primary);
  margin-top: 1rem;
}

dl.glossary dd {
  margin-left: 1.5rem;
  color: #555;
  border-left: 2px solid var(--color-accent);
  padding-left: 0.75rem;
}

@media (max-width: 640px) {
  .price-card.featured {
    transform: none;
  }
  .matrix-table {
    font-size: 0.85rem;
  }
}
