/* ============================================================
   Bij Ons Zorg — huisstijl kop & voet
   Alle selectors zijn voorzien van het voorvoegsel "bo-" of staan
   binnen #bo-header / #bo-iso / #bo-footer, zodat er geen botsing
   ontstaat met de opmaak van het Delicio-thema.
   ============================================================ */

:root{
  --bo-orange:#F2813C;
  --bo-orange-dark:#D9631F;
  --bo-orange-light:#FCE7D6;
  --bo-green:#7A9A6C;
  --bo-green-dark:#5F7D54;
  --bo-green-light:#E7EEE2;
  --bo-text:#332C24;
  --bo-text-soft:#6B6055;
  --bo-cream:#FBF6EE;
  --bo-cream-panel:#F3E9D8;
  --bo-line:#E9DEC9;
  --bo-shadow:0 10px 30px rgba(51,44,36,.10);
  --bo-font-display:'Fredoka',system-ui,-apple-system,sans-serif;
  --bo-font-body:'Nunito Sans',system-ui,-apple-system,sans-serif;
}

/* --- thema-kop en -voet verbergen zodra onze eigen versie actief is --- */
body.bo-actief .page-wrap > header.site-header,
body.bo-actief .page-wrap header.site-header,
body.bo-actief .page-wrap > footer.site-footer,
body.bo-actief .page-wrap footer.site-footer{
  display:none !important;
}

/* --- gedeelde basis binnen onze eigen onderdelen --- */
#bo-header, #bo-header *,
#bo-mobile-nav, #bo-mobile-nav *,
#bo-iso, #bo-iso *,
#bo-footer, #bo-footer *{
  box-sizing:border-box;
}
#bo-header, #bo-mobile-nav, #bo-iso, #bo-footer{
  font-family:var(--bo-font-body);
  font-size:16px;
  line-height:1.65;
  -webkit-font-smoothing:antialiased;
  text-align:left;
}
#bo-header img, #bo-mobile-nav img, #bo-iso img, #bo-footer img{
  max-width:100%;
  display:block;
  height:auto;
}
#bo-header a, #bo-mobile-nav a, #bo-iso a, #bo-footer a{
  text-decoration:none;
  box-shadow:none;
}
#bo-iso h2, #bo-footer h5{
  font-family:var(--bo-font-display);
  font-weight:600;
  text-wrap:balance;
}
.bo-container{
  max-width:1180px;
  margin:0 auto;
  padding:0 28px;
  width:100%;
}

/* ============================================================
   KOP
   ============================================================ */
#bo-header{
  position:sticky;
  top:0;
  z-index:1000;
  background:rgba(251,246,238,.92);
  -webkit-backdrop-filter:blur(10px);
  backdrop-filter:blur(10px);
  border-bottom:1px solid transparent;
  transition:box-shadow .3s ease, border-color .3s ease;
}
.admin-bar #bo-header{ top:32px; }
@media screen and (max-width:782px){ .admin-bar #bo-header{ top:46px; } }

#bo-header.bo-scrolled{
  box-shadow:0 4px 18px rgba(51,44,36,.08);
  border-bottom-color:var(--bo-line);
}
.bo-nav-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 28px;
  max-width:1180px;
  margin:0 auto;
  gap:14px;
}
.bo-brand{ display:flex; align-items:center; gap:10px; flex:none; }
.bo-brand img{ height:60px; width:auto; }

.bo-nav{ display:flex; align-items:center; gap:2px; }
.bo-nav-item{ position:relative; }
.bo-nav-item > a{
  display:inline-flex;
  align-items:center;
  gap:5px;
  padding:10px 10px;
  font-weight:700;
  font-size:16px;
  color:var(--bo-text);
  position:relative;
  font-family:var(--bo-font-body);
  white-space:nowrap;
}
.bo-nav-item > a::after{
  content:'';
  position:absolute;
  left:10px; right:10px; bottom:5px;
  height:2px;
  background:var(--bo-orange);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}
.bo-nav-item > a:hover::after,
.bo-nav-item.bo-active > a::after{ transform:scaleX(1); }
.bo-nav-item.bo-active > a{ color:var(--bo-orange-dark); }
.bo-chev{ width:9px; height:9px; margin-top:2px; opacity:.6; flex:none; }

.bo-dropdown{
  position:absolute;
  top:100%; left:0;
  min-width:240px;
  background:#fff;
  border-radius:14px;
  box-shadow:var(--bo-shadow);
  padding:8px;
  opacity:0;
  visibility:hidden;
  transform:translateY(6px);
  transition:opacity .2s ease, transform .2s ease, visibility .2s ease;
}
.bo-nav-item:hover .bo-dropdown,
.bo-nav-item:focus-within .bo-dropdown{
  opacity:1; visibility:visible; transform:translateY(0);
}
.bo-dropdown a{
  display:block;
  white-space:nowrap;
  padding:10px 14px;
  border-radius:9px;
  font-weight:600;
  font-size:16px;
  color:var(--bo-text);
}
.bo-dropdown a:hover{ background:var(--bo-orange-light); color:var(--bo-orange-dark); }

.bo-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:var(--bo-orange);
  color:#fff !important;
  font-family:var(--bo-font-body);
  font-weight:800;
  padding:13px 22px;
  border-radius:100px;
  border:none;
  cursor:pointer;
  font-size:16px;
  line-height:1;
  transition:background .25s ease, transform .25s ease, box-shadow .25s ease;
  box-shadow:0 8px 20px rgba(242,129,60,.35);
}
.bo-btn:hover{
  background:var(--bo-orange-dark);
  transform:translateY(-2px);
  box-shadow:0 12px 26px rgba(217,99,31,.4);
}
.bo-nav-cta{ margin-left:6px; }

.bo-burger{
  display:none;
  background:none;
  border:none;
  cursor:pointer;
  padding:8px;
  flex:none;
}
.bo-burger span{
  display:block;
  width:24px;
  height:2.5px;
  background:var(--bo-text);
  margin:5px 0;
  border-radius:2px;
  transition:transform .25s ease, opacity .25s ease;
}

/* ============================================================
   MOBIEL MENU
   ============================================================ */
#bo-mobile-nav{
  position:fixed;
  inset:0;
  background:var(--bo-cream);
  z-index:1200;
  padding:24px 28px;
  transform:translateX(100%);
  transition:transform .3s ease;
  overflow-y:auto;
}
#bo-mobile-nav.bo-open{ transform:translateX(0); }
#bo-mobile-nav .bo-mn-top{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin-bottom:26px;
}
#bo-mobile-nav .bo-mn-top img{ height:38px; width:auto; }
#bo-mobile-nav .bo-burger{ display:block; }
#bo-mobile-nav a{
  display:block;
  padding:12px 0;
  font-weight:800;
  font-size:16px;
  color:var(--bo-text);
  border-bottom:1px solid var(--bo-line);
}
#bo-mobile-nav .bo-mn-sub a{
  padding-left:16px;
  font-weight:600;
  font-size:16px;
  color:var(--bo-text-soft);
}

/* ============================================================
   ISO 9001-PANEEL
   ============================================================ */
#bo-iso{
  background:var(--bo-cream);
  padding:38px 0 46px;
}
#bo-iso .bo-iso-card{
  max-width:640px;
  margin:0 auto;
  text-align:center;
  background:#fff;
  border-radius:26px;
  padding:44px 48px 40px;
  box-shadow:0 24px 50px rgba(51,44,36,.12);
}
#bo-iso .bo-iso-badge{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  background:var(--bo-cream);
  border-radius:20px;
  padding:18px 26px;
  margin-bottom:22px;
}
#bo-iso .bo-iso-badge img{ height:120px; width:auto; }
#bo-iso h2{
  font-size:24px;
  margin:0 0 12px;
  color:var(--bo-text);
  line-height:1.3;
}
#bo-iso p{
  color:var(--bo-text-soft);
  font-size:16px;
  max-width:46ch;
  margin:0 auto 16px;
}
#bo-iso p:last-child{ margin-bottom:0; }

/* ============================================================
   VOET
   ============================================================ */
#bo-footer{
  background:#2C271F;
  color:#EFE7DA;
  padding:0 0 22px;
  margin-top:0;
  position:relative;
}
#bo-footer::before{
  content:'';
  display:block;
  height:5px;
  background:linear-gradient(90deg,var(--bo-orange) 0%,var(--bo-orange) 45%,var(--bo-green) 100%);
}
#bo-footer .bo-footer-top{ padding:32px 0 24px; }
#bo-footer .bo-footer-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:28px;
}
#bo-footer .bo-footer-panel{
  background:rgba(255,255,255,.05);
  border-radius:16px;
  padding:26px 28px;
}
#bo-footer h5{
  display:flex;
  align-items:center;
  gap:8px;
  color:#fff;
  font-size:16px;
  margin:0 0 14px;
  text-transform:uppercase;
  letter-spacing:.04em;
}
#bo-footer h5::before{
  content:'';
  width:7px; height:7px;
  border-radius:50%;
  background:var(--bo-orange);
  flex:none;
}
#bo-footer p, #bo-footer a{ color:#C9BEAC; font-size:16px; }
#bo-footer a:hover{ color:var(--bo-orange); }
#bo-footer .bo-footer-loc{ margin-bottom:14px; }
#bo-footer .bo-footer-loc:last-child{ margin-bottom:0; }
#bo-footer .bo-footer-loc strong{
  color:#fff;
  display:block;
  font-size:16px;
  margin-bottom:2px;
}
#bo-footer .bo-hours-block{ margin-bottom:16px; }
#bo-footer .bo-hours-block:last-child{ margin-bottom:0; }
#bo-footer .bo-hours-day{
  color:#fff;
  font-size:16px;
  font-weight:700;
  text-decoration:underline;
  text-underline-offset:3px;
  margin-bottom:5px;
}
#bo-footer .bo-hours-time{ color:#C9BEAC; font-size:16px; line-height:1.6; }
#bo-footer .bo-contact-chips{ display:flex; flex-direction:column; gap:10px; }
#bo-footer .bo-contact-chip{
  background:rgba(255,255,255,.07);
  color:#fff;
  font-size:16px;
  padding:11px 15px;
  border-radius:10px;
  transition:background .2s, color .2s;
}
#bo-footer .bo-contact-chip:hover{ background:rgba(255,255,255,.14); color:var(--bo-orange); }
#bo-footer .bo-social-row{
  display:flex;
  gap:20px;
  margin:36px 0 0;
  justify-content:center;
}
#bo-footer .bo-social-row a{
  width:84px; height:84px;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background .2s;
}
#bo-footer .bo-social-row a:hover{ background:var(--bo-orange); }
#bo-footer .bo-social-row svg{ width:39px; height:39px; color:#fff; }
#bo-footer .bo-footer-bottom{
  border-top:1px solid rgba(255,255,255,.1);
  margin-top:0;
  padding-top:20px;
  font-size:16px;
  color:#9C907E;
  display:flex;
  justify-content:space-between;
  align-items:center;
  flex-wrap:wrap;
  gap:14px;
}
#bo-footer .bo-footer-iso{ display:flex; align-items:center; gap:10px; }
#bo-footer .bo-footer-iso img{ height:30px; width:auto; border-radius:3px; }
#bo-footer .bo-footer-iso span{
  color:#C9BEAC;
  font-weight:700;
  font-size:16px;
  letter-spacing:.02em;
}
#bo-footer .bo-footer-links{ display:flex; gap:18px; flex-wrap:wrap; }

/* ============================================================
   RESPONSIEF
   ============================================================ */
@media (max-width:560px){
  #bo-footer .bo-social-row{ gap:12px; }
  #bo-footer .bo-social-row a{ width:64px; height:64px; }
  #bo-footer .bo-social-row svg{ width:30px; height:30px; }
  #bo-footer .bo-footer-bottom{ justify-content:flex-start; }
}
/* het volledige menu past niet meer onder ~1140px: dan het mobiele menu tonen */
@media (max-width:1140px){
  .bo-nav{ display:none; }
  #bo-header .bo-burger{ display:block; }
}
@media (max-width:980px){
  #bo-footer .bo-footer-grid{ grid-template-columns:1fr; }
  .bo-brand img{ height:48px; }
  #bo-iso .bo-iso-card{ padding:34px 26px 30px; }
}
@media (prefers-reduced-motion: reduce){
  #bo-header, #bo-mobile-nav, .bo-dropdown, .bo-btn{ transition:none; }
}

/* ============================================================
   PAGINA-OPMAAK  (voor pagina's waarvan de inhoud in WordPress
   staat en de klasse .bo-page gebruikt)
   ============================================================ */

/* de kop en opvulling van het thema wijken voor onze eigen opmaak */
body.bo-eigen-pagina .page-meta,
body.bo-eigen-pagina .entry-header,
body.bo-eigen-pagina .entry-cover,
body.bo-eigen-pagina .wrapper-page-intro{ display:none !important; }
body.bo-eigen-pagina #content,
body.bo-eigen-pagina #content .wrapper-content,
body.bo-eigen-pagina .post_wrap,
body.bo-eigen-pagina article.entry,
body.bo-eigen-pagina .entry-content{
  max-width:none !important;
  width:auto !important;
  margin:0 !important;
  padding:0 !important;
  border:none !important;
  background:none !important;
}
body.bo-eigen-pagina #container{ background:var(--bo-cream); }

.bo-page, .bo-page *{ box-sizing:border-box; }
.bo-page{
  max-width:none !important;
  width:auto !important;
  margin:0 !important;
  font-family:var(--bo-font-body);
  font-size:16px;
  line-height:1.65;
  color:var(--bo-text);
  background:var(--bo-cream);
  text-align:left;
}
.bo-page img{ max-width:100%; display:block; height:auto; }
.bo-page a{ text-decoration:none; }
.bo-page h1,.bo-page h2,.bo-page h3{
  font-family:var(--bo-font-display);
  font-weight:600;
  color:var(--bo-text);
  margin:0 0 12px;
  text-wrap:balance;
}
.bo-page p{ margin:0 0 18px; }
.bo-page p:last-child{ margin-bottom:0; }

.bo-eyebrow{
  font-family:var(--bo-font-body);
  font-weight:800;
  letter-spacing:2px;
  text-transform:uppercase;
  font-size:13px;
  color:var(--bo-orange-dark);
  display:inline-block;
  margin-bottom:10px;
}

/* oranje titelbalk bovenaan de pagina */
.bo-page-band{
  background:linear-gradient(120deg,var(--bo-orange) 0%,#F4954E 100%);
  padding:56px 0 40px;
  position:relative;
  overflow:hidden;
}
.bo-page-band::after{
  content:'';position:absolute;right:-60px;bottom:-90px;
  width:280px;height:280px;border-radius:50%;background:rgba(255,255,255,.12);
}
.bo-page-band .bo-container{ position:relative; z-index:1; }
.bo-page-band .bo-eyebrow{ color:#FFE3C8; }
.bo-page-band h1{ color:#fff; margin:0; font-size:44px; line-height:1.15; }
.bo-page-band p{ color:#FFEBD9; max-width:56ch; margin:10px 0 0; font-size:17px; }

/* tekstpagina's */
.bo-article-wrap{ padding:44px 0 56px; }
.bo-article-wrap.bo-tight{ padding:34px 0 44px; }
.bo-article-body{ max-width:70ch; }
.bo-article-body.bo-breed{ max-width:none; }
.bo-article-body h2{ font-size:24px; margin-top:34px; }
.bo-article-body h2:first-child{ margin-top:0; }
.bo-article-body p,.bo-article-body li{ color:var(--bo-text-soft); }
.bo-article-body ul{ padding-left:22px; margin:0 0 18px; }
.bo-article-body li{ margin-bottom:7px; }
.bo-callout{
  background:var(--bo-orange-light);
  border-radius:14px;
  padding:20px 22px;
  border-left:4px solid var(--bo-orange);
  color:var(--bo-orange-dark);
  font-weight:700;
  margin:28px 0 0;
}
.bo-callout a{ color:var(--bo-orange-dark); text-decoration:underline; }

/* twee kolommen met beeld */
.bo-block{ padding:56px 0; }
.bo-block-panel{ background:var(--bo-cream-panel,#F3E9D8); }
.bo-two-col{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:52px;
  align-items:center;
}
.bo-two-col.bo-rev{ grid-template-columns:.95fr 1.05fr; }
.bo-two-col h2{ font-size:26px; margin:6px 0 12px; }
.bo-two-col p{ color:var(--bo-text-soft); }
.bo-media-frame{
  border-radius:22px;
  overflow:hidden;
  box-shadow:var(--bo-shadow);
  aspect-ratio:4/3;
}
.bo-media-frame img{ width:100%; height:100%; object-fit:cover; }

/* contactblokken */
.bo-contact-strip{ display:grid; grid-template-columns:repeat(2,1fr); gap:24px; }
.bo-contact-box{ background:#fff; border-radius:18px; padding:30px; box-shadow:var(--bo-shadow); }
.bo-contact-box h4{
  display:flex; align-items:center; gap:10px;
  font-family:var(--bo-font-display); font-weight:600; font-size:18px;
  margin:0 0 10px; color:var(--bo-text);
}
.bo-contact-box h4 svg{ width:20px; height:20px; color:var(--bo-orange); flex:none; }
.bo-contact-box p{ color:var(--bo-text-soft); }
.bo-big-link{ font-weight:800; color:var(--bo-orange-dark); font-size:18px; }
.bo-big-link:hover{ text-decoration:underline; }

/* smoelenboek */
.bo-face-grid{ display:grid; grid-template-columns:repeat(6,1fr); gap:16px; }
.bo-face-card{
  border-radius:16px; overflow:hidden; aspect-ratio:3/4; position:relative;
  box-shadow:0 4px 14px rgba(51,44,36,.08); background:var(--bo-cream-panel,#F3E9D8);
}
.bo-face-card img{
  width:100%; height:100%; object-fit:contain; object-position:center;
  filter:grayscale(1); transition:filter .35s ease, transform .35s ease;
}
.bo-face-card:hover img{ filter:grayscale(0); transform:scale(1.04); }

@media (max-width:980px){
  .bo-page-band{ padding:40px 0 32px; }
  .bo-page-band h1{ font-size:32px; }
  .bo-two-col, .bo-two-col.bo-rev, .bo-contact-strip{ grid-template-columns:1fr; gap:28px; }
  .bo-two-col.bo-rev .bo-two-col-media{ order:0; }
  .bo-face-grid{ grid-template-columns:repeat(4,1fr); }
  .bo-block{ padding:40px 0; }
}
@media (max-width:560px){
  .bo-face-grid{ grid-template-columns:repeat(3,1fr); }
  .bo-page-band h1{ font-size:28px; }
}

/* ============================================================
   VACATUREPAGINA'S
   ============================================================ */
.bo-page-band.bo-job-band{ padding:38px 0 30px; }
.bo-job-hero-meta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:14px; }
.bo-job-hero-meta span{
  background:rgba(255,255,255,.2);
  border:1px solid rgba(255,255,255,.4);
  color:#fff; font-size:14px; font-weight:700;
  padding:6px 14px; border-radius:100px;
}

.bo-job-grid{ display:grid; grid-template-columns:1.3fr .9fr; gap:48px; align-items:start; }
.bo-job-section h3{
  font-family:var(--bo-font-display); font-weight:600; font-size:19px;
  color:var(--bo-orange-dark); margin:26px 0 8px;
}
.bo-job-section h3:first-child{ margin-top:0; }
.bo-job-section ul{ padding-left:20px; color:var(--bo-text-soft); margin:0; }
.bo-job-section li{ margin-bottom:5px; line-height:1.5; }

.bo-job-facts{
  background:#fff; border-radius:18px; padding:28px;
  box-shadow:var(--bo-shadow); position:sticky; top:120px;
}
.bo-job-facts dl{ margin:0; display:grid; gap:14px; }
.bo-job-facts dt{
  font-size:12px; text-transform:uppercase; letter-spacing:1px;
  font-weight:800; color:var(--bo-text-soft);
}
.bo-job-facts dd{ margin:2px 0 0; font-weight:700; }
.bo-job-facts hr{ border:none; border-top:1px solid var(--bo-line); margin:4px 0; }
.bo-fact-tags{ display:flex; flex-wrap:wrap; gap:6px; margin-top:4px; }
.bo-fact-inline{ display:flex; align-items:center; flex-wrap:wrap; gap:8px; margin-top:2px; font-weight:700; }
.bo-fact-tag{
  background:var(--bo-orange-light); color:var(--bo-orange-dark);
  font-size:13px; font-weight:800; padding:5px 11px; border-radius:8px;
}

/* sollicitatieformulier */
.bo-block.bo-tight{ padding:20px 0 56px; }
.bo-form-card{
  background:#fff; border-radius:20px; padding:40px;
  box-shadow:var(--bo-shadow); max-width:820px;
}
.bo-form-card h3{ font-family:var(--bo-font-display); font-weight:600; font-size:22px; margin:0 0 6px; }
.bo-form-card > p{ color:var(--bo-text-soft); margin:0 0 18px; }
.bo-form-card .wpforms-container{ margin:0 !important; }
.bo-form-card .wpforms-field-label{ font-weight:800 !important; font-size:14px !important; }
.bo-form-card input[type=text],
.bo-form-card input[type=email],
.bo-form-card input[type=tel],
.bo-form-card select,
.bo-form-card textarea{
  border:1.5px solid var(--bo-line) !important; border-radius:10px !important;
  background:var(--bo-cream) !important; font-family:var(--bo-font-body) !important;
}
.bo-form-card button[type=submit],
.bo-form-card .wpforms-submit{
  background:var(--bo-orange) !important; color:#fff !important; border:none !important;
  font-family:var(--bo-font-body) !important; font-weight:800 !important;
  padding:14px 26px !important; border-radius:100px !important; cursor:pointer;
  box-shadow:0 8px 20px rgba(242,129,60,.35);
}
.bo-form-card .wpforms-submit:hover{ background:var(--bo-orange-dark) !important; }

@media (max-width:980px){
  .bo-job-grid{ grid-template-columns:1fr; gap:28px; }
  .bo-job-facts{ position:static; }
  .bo-form-card{ padding:26px; }
}
