/* =============================================================================
   WerkendWeb — Over Ons & Blog pagina styles
   Bouwt verder op /styles.css — dezelfde tokens, geen duplicatie.
   ============================================================================= */

/* ── Active nav link ────────────────────────────────────────────────────────── */
.nav-link--active {
  color: var(--ink) !important;
  font-weight: 500;
}

/* =============================================================================
   1. HERO
   ============================================================================= */

.oo-hero {
  min-height: 52vh;
  display: flex;
  align-items: center;
  background: var(--ink);
  padding: 120px 6vw 80px;
  position: relative;
  overflow: hidden;
}

/* Subtiele achtergrondtextuur */
.oo-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 80% 50%, rgba(200,80,42,0.08) 0%, transparent 70%),
    radial-gradient(ellipse 40% 60% at 10% 80%, rgba(200,80,42,0.05) 0%, transparent 60%);
  pointer-events: none;
}

.oo-hero__inner {
  position: relative;
  max-width: 760px;
}

.oo-hero__label {
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
}

.oo-hero__title {
  font-family: var(--serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--paper);
  margin-bottom: 24px;
}

.oo-hero__title em {
  font-style: italic;
  color: var(--accent);
}

.oo-hero__sub {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(247,244,239,0.65);
  line-height: 1.65;
  max-width: 520px;
}

/* =============================================================================
   2. OVER ONS
   ============================================================================= */

.oo-about__grid {
  max-width: 720px;
}

/* Foto-kolom */
.oo-about__visuals {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.oo-foto-placeholder {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
  aspect-ratio: 3 / 2;
  background: var(--cream);
}

.oo-foto-placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

.oo-name-placeholders {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.oo-name-tag {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 16px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.oo-name-tag strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--ink);
}

.oo-name-tag span {
  font-size: 0.78rem;
  color: var(--muted);
}

/* Tekst-kolom */
.oo-about__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0 32px;
}

.oo-about__body p {
  font-size: 1rem;
  line-height: 1.75;
  color: var(--ink);
}

.oo-soft-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
  border-bottom: 1.5px solid transparent;
  transition: border-color var(--transition), color var(--transition);
  padding-bottom: 2px;
}

.oo-soft-cta:hover {
  color: var(--accent-dark);
  border-color: var(--accent);
}

/* =============================================================================
   3. AANPAK
   ============================================================================= */

.oo-aanpak__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.oo-aanpak__item {
  background: var(--paper);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: box-shadow var(--transition), transform var(--transition);
}

.oo-aanpak__item:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.oo-aanpak__num {
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--accent);
  opacity: 0.35;
  line-height: 1;
}

.oo-aanpak__item h3 {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.oo-aanpak__item p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* =============================================================================
   4. BLOG GRID
   ============================================================================= */

.oo-blog { background: var(--paper); }

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.blog-kaart {
  background: var(--cream);
  border: 1px solid var(--border);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow var(--transition), transform var(--transition);
}

.blog-kaart:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}

.blog-kaart > a {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}

/* Afbeelding */
.blog-kaart__afbeelding {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--cream);
}

.blog-kaart__afbeelding img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.blog-kaart:hover .blog-kaart__afbeelding img {
  transform: scale(1.03);
}

.blog-kaart__img-placeholder {
  width: 100%;
  height: 100%;
}

.blog-kaart__img-placeholder svg {
  width: 100%;
  height: 100%;
  display: block;
}

.blog-kaart__categorie {
  position: absolute;
  bottom: 12px;
  left: 12px;
  background: var(--ink);
  color: var(--paper);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 4px 10px;
  border-radius: 20px;
  text-transform: uppercase;
}

/* Inhoud */
.blog-kaart__inhoud {
  padding: 24px 22px 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.blog-kaart__leestijd {
  font-size: 0.78rem;
  color: var(--muted);
}

.blog-kaart__titel {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.35;
  flex: 1;
}

.blog-kaart__intro {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.65;
}

.blog-kaart__link {
  display: inline-flex;
  align-items: center;
  margin-top: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  transition: color var(--transition);
}

.blog-kaart:hover .blog-kaart__link {
  color: var(--accent-dark);
}

/* =============================================================================
   5. FOOTER CTA
   ============================================================================= */

.oo-footer-cta {
  background: var(--accent);
  padding: 56px 6vw;
}

.oo-footer-cta__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.oo-footer-cta__tekst {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-weight: 600;
  color: var(--paper);
  line-height: 1.35;
}

.oo-footer-cta__btn {
  background: var(--paper);
  color: var(--accent);
  white-space: nowrap;
  flex-shrink: 0;
}

.oo-footer-cta__btn:hover {
  background: var(--ink);
  color: var(--paper);
}

/* =============================================================================
   REVEAL ANIMATIES (zelfde logica als hoofdsite)
   ============================================================================= */

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* =============================================================================
   RESPONSIVE
   ============================================================================= */

@media (max-width: 1024px) {
  .oo-about__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .oo-foto-placeholder {
    max-width: 480px;
  }

  .oo-aanpak__grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-inline: auto;
  }

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 680px) {
  .oo-hero {
    padding: 100px 6vw 64px;
    min-height: auto;
  }

  .oo-hero__title {
    font-size: 2.2rem;
  }

  .oo-name-placeholders {
    grid-template-columns: 1fr 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .oo-footer-cta__inner {
    flex-direction: column;
    text-align: center;
    align-items: center;
  }

  .oo-footer-cta__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 400px) {
  .oo-name-placeholders {
    grid-template-columns: 1fr;
  }
}
