/* brightbird.be — Paraplu-site
   Accent: bosgroen
*/

:root {
  --accent: #2D3F35;
  --accent-light: #4A5D52;
  --accent-tint: #E8EDE9;
}

/* Paraplu-specifieke aanpassingen */

.path-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 0;
  border: 1px solid var(--line);
  background: var(--bg-pure);
}

.path-card {
  padding: clamp(40px, 4.5vw, 64px);
  border-right: 1px solid var(--line);
  position: relative;
  transition: background 0.3s ease;
}

.path-card:last-child {
  border-right: none;
}

@media (max-width: 800px) {
  .path-card {
    border-right: none;
    border-bottom: 1px solid var(--line);
  }
  .path-card:last-child {
    border-bottom: none;
  }
}

.path-card .accent-bar {
  width: 40px;
  height: 3px;
  margin-bottom: 24px;
}

.path-card.growth .accent-bar { background: #B8702E; }
.path-card.ma .accent-bar { background: #1E3A5F; }

.path-card h3 {
  font-size: 28px;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.path-card p {
  color: var(--ink-soft);
  font-size: 15px;
  margin-bottom: 28px;
  line-height: 1.65;
}

.path-card .arrow-link {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: gap 0.2s ease;
}

.path-card.growth .arrow-link { color: #B8702E; }
.path-card.ma .arrow-link { color: #1E3A5F; }

.path-card .arrow-link:hover {
  gap: 14px;
}

/* Principes-sectie */
.principles-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: clamp(32px, 4vw, 56px);
}

.principle .num {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 14px;
  color: var(--accent);
  margin-bottom: 12px;
  display: block;
}

.principle h4 {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}

.principle p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.65;
}
