/**
 * Solvian Academy — components.css
 * Extra component stijlen voor FAQ, mobiel menu, animaties
 */

/* ── Smooth transitions ─────────────────────────────────────────────── */
.sa-course-card,
.sa-review-card,
.sa-location-card,
.sa-team-card {
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

/* ── Animatie bij inladen ───────────────────────────────────────────── */
@keyframes sa-fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
.sa-animate { animation: sa-fadeUp 0.5s ease both; }

/* ── Actieve navitem ────────────────────────────────────────────────── */
.sa-nav .current-menu-item > a,
.sa-nav .current-page-ancestor > a {
  color: var(--sa-primary) !important;
  border-bottom-color: var(--sa-accent) !important;
}

/* ── Solvian shortcode wrapper ──────────────────────────────────────── */
.sa-shortcode-wrapper {
  padding: 48px 0;
  background: #f8f9fa;
}

/* ── Breadcrumb ─────────────────────────────────────────────────────── */
.sa-breadcrumb {
  padding: 12px 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}
.sa-breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.sa-breadcrumb a:hover { color: white; }
.sa-breadcrumb span { margin: 0 6px; }

/* ── Page hero varianten ────────────────────────────────────────────── */
.sa-page-hero--light {
  background: #f8f9fa;
  border-bottom: 1px solid #e5e7eb;
}
.sa-page-hero--light .sa-page-hero__title { color: var(--sa-primary); }
.sa-page-hero--light .sa-page-hero__sub   { color: #6b7280; }
.sa-page-hero--light .sa-page-hero__label { color: var(--sa-accent); }

/* ── Notification / alert ───────────────────────────────────────────── */
.sa-notice {
  padding: 14px 18px;
  border-radius: 6px;
  font-size: 0.875rem;
  margin-bottom: 16px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.sa-notice--success { background: #EAFAF1; color: #1E8449; border-left: 4px solid #27AE60; }
.sa-notice--warning { background: #FEF9E7; color: #7D6608; border-left: 4px solid #F39C12; }
.sa-notice--info    { background: #EBF5FB; color: #1A5276; border-left: 4px solid #2980B9; }

/* ── Tabel stijlen ──────────────────────────────────────────────────── */
.sa-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}
.sa-table th {
  background: var(--sa-primary);
  color: white;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}
.sa-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #e5e7eb;
}
.sa-table tr:hover td { background: #f8f9fa; }

/* ── Prijs tabel ────────────────────────────────────────────────────── */
.sa-price-table {
  border: 1.5px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  text-align: center;
}
.sa-price-table__header {
  background: var(--sa-primary);
  color: white;
  padding: 20px;
}
.sa-price-table__title { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.sa-price-table__price { font-size: 2rem; font-weight: 800; }
.sa-price-table__price span { font-size: 1rem; font-weight: 400; opacity: 0.7; }
.sa-price-table__body { padding: 20px; }
.sa-price-table__feature { padding: 8px 0; border-bottom: 1px solid #f0f0f0; font-size: 0.875rem; }
.sa-price-table__feature:last-child { border-bottom: none; }
.sa-price-table__cta { padding: 0 20px 20px; }

/* ── Incompany aanvraag formulier ───────────────────────────────────── */
.sa-offerte-form {
  background: #f8f9fa;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 28px;
}

/* ── Cookie notice (minimaal) ───────────────────────────────────────── */
.sa-cookie-notice {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--sa-primary);
  color: rgba(255,255,255,0.85);
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  z-index: 9999;
  font-size: 0.85rem;
}
.sa-cookie-notice a { color: var(--sa-accent); }
.sa-cookie-notice__btn {
  background: var(--sa-accent);
  color: white;
  border: none;
  padding: 8px 20px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Print styles ───────────────────────────────────────────────────── */
@media print {
  .sa-topbar, .sa-header, .sa-usp-bar, .sa-cta-banner, .sa-footer { display: none !important; }
  .sa-container { max-width: 100%; padding: 0; }
}
