/*
Theme Name: Cander
Theme URI: https://cander.nl
Author: Willem Online / Sander van Gool
Author URI: https://willemonline.nl
Description: Custom theme voor Cander mediation. Bevat nieuwe templates voor landingspagina's, homepage, mediator-profielen, contactpagina en FAQ. Styling komt via inline CSS in elk template zodat het 1:1 matcht met het HTML-ontwerp. v1.7.4 icoon "Uit elkaar als samenwoners" op /scheiden/ van hartje naar handshake. v1.7.3 fix mediator-link rewriter op productie. v1.7.2 SEO meta titles ingekort. v1.7.1 complete SEO-foundation: meta titles/descriptions, OpenGraph, Twitter Cards en JSON-LD schema (Organization, WebSite, LegalService, Person, BreadcrumbList) + LegalService schema-injectie op 350 regiopagina's + FAQ-content (30 Q&A) op 5 dienstpagina's met FAQPage schema + nieuwe /faq/ pagina-template + footer-link naar FAQ. Overige pagina's vallen terug op standaard rendering.
Version: 1.7.4
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GPL v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: cander
Tags: custom, business
*/

/* Basic reset */
html, body { margin: 0; padding: 0; }
body { font-family: 'Red Hat Display', sans-serif; color: #262236; background: #fff; }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
*, *::before, *::after { box-sizing: border-box; }

/* Admin bar offset - alleen waar admin bar fixed is */
body.admin-bar header.header { top: 32px !important; }
@media screen and (max-width: 782px) and (min-width: 601px) { body.admin-bar header.header { top: 46px !important; } }
/* Op mobile <=600px is WP admin bar position:absolute en scrolt mee weg, dus header naar top:0 */
@media screen and (max-width: 600px) { body.admin-bar header.header { top: 0 !important; } }

/* ═══════════════════════════════════════════════════════════
   GLOBAL HEADER STYLES (uit homepage.html)
   Nodig omdat header.php universeel is en niet de inline CSS krijgt van elke pagina.
   ═══════════════════════════════════════════════════════════ */
.header {
  padding: 16px 0;
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.header .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-logo img { height: 40px; width: auto; }
.header-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}
.header-nav a {
  font-size: 14px;
  font-weight: 600;
  color: #262236;
  transition: color 0.2s;
  text-decoration: none;
}
.header-nav a:hover { color: #8AA0AD; }
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
}
.header-kv {
  display: flex;
  align-items: center;
  gap: 6px;
  overflow: hidden;
  text-decoration: none;
  transition: opacity 0.2s;
}
.header-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: #262236;
  font-size: 15px;
  text-decoration: none;
}
.header-phone svg { flex-shrink: 0; }

/* ═══════════════════════════════════════════════════════════
   GLOBAL FOOTER STYLES (uit homepage.html)
   ═══════════════════════════════════════════════════════════ */
.footer {
  padding: 48px 0 32px;
  background: #262236;
  color: rgba(255,255,255,0.6);
  font-size: 13px;
}
.footer .container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 32px;
}
.footer h4 {
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
}
.footer p { line-height: 1.7; }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 8px; list-style: none; }
.footer-links a {
  color: rgba(255,255,255,0.6);
  transition: color 0.2s;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.footer-bottom a { color: rgba(255,255,255,0.6); text-decoration: none; }
.footer-bottom a:hover { color: #fff; }

@media (max-width: 960px) {
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .header-nav { display: none; }
}
