/* Palette matched to bridgepolymers.nl's actual CSS (#f18a00 accent, black/white base) */
:root{
  --zh-dark:#111113;
  --zh-dark-2:#000000;
  --zh-accent:#F18A00;
  --zh-accent-dark:#C96F00;
  --zh-bg:#F5F7FA;
  --zh-text:#1A1A2E;
}

body{ color:var(--zh-text); overflow-x:hidden; }
.zh-wrap{ max-width:1140px; margin:0 auto; }

/* Buttons */
.zh-btn{ display:inline-block; padding:14px 28px; border-radius:4px; font-weight:600; text-decoration:none; margin:0 8px 10px; }
.zh-btn-accent{ background:var(--zh-accent); color:#fff; }
.zh-btn-accent:hover{ background:var(--zh-accent-dark); color:#fff; }
.zh-btn-outline{ border:2px solid #fff; color:#fff; padding:12px 26px; }
.zh-btn-outline:hover{ background:rgba(255,255,255,0.12); color:#fff; }

/* Hero — real photo background with a light darkening wash for text contrast. */
.zh-hero{
  position:relative;
  overflow:hidden;
  background-color:var(--zh-dark);
  background-size:cover;
  background-position:center;
  color:#fff;
  padding:140px 20px;
  text-align:center;
}
.zh-hero::after{
  content:"";
  position:absolute;
  top:-20%;
  right:-10%;
  width:60%;
  padding-bottom:60%;
  border-radius:50%;
  background:radial-gradient(circle, rgba(241,138,0,0.30) 0%, rgba(241,138,0,0) 70%);
  pointer-events:none;
}
.zh-hero .zh-wrap{ position:relative; z-index:1; }
.zh-hero h1{ color:#fff; font-size:clamp(2rem,4vw,3.2rem); max-width:900px; margin:0 auto 20px; line-height:1.15; }
.zh-hero p{ color:#dce6f0; font-size:1.2rem; max-width:700px; margin:0 auto 30px; }

/* Stats */
.zh-stats{ background:var(--zh-dark-2); padding:60px 20px; }
.zh-stats-grid{ display:grid; grid-template-columns:repeat(4,1fr); gap:20px; text-align:center; }
.zh-stat-number{ font-size:2.6rem; font-weight:700; color:var(--zh-accent); margin-bottom:4px; }
.zh-stat-label{ color:#c9d6e3; font-size:0.95rem; }

/* Section headings */
.zh-section{ padding:90px 20px; }
.zh-section-title{ text-align:center; font-size:2rem; margin-bottom:10px; color:var(--zh-dark); }
.zh-section-sub{ text-align:center; color:#5b6b7c; max-width:640px; margin:0 auto 50px; }

/* Services */
.zh-services{ background:#fff; }
.zh-grid-4{ display:grid; grid-template-columns:repeat(4,1fr); gap:24px; }
.zh-grid-3{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
.zh-service-card{ background:var(--zh-bg); border-radius:10px; padding:32px 26px; border-top:4px solid var(--zh-accent); }
.zh-service-card h3{ color:var(--zh-dark); margin-top:0; }
.zh-service-card p{ color:#4a5568; font-size:0.95rem; }

/* Why choose us */
.zh-why{ background:var(--zh-bg); }
.zh-why-item{ background:#fff; border-radius:10px; padding:28px 24px; box-shadow:0 1px 4px rgba(11,46,79,0.08); transition:transform 0.25s ease, box-shadow 0.25s ease; }
.zh-why-item h3{ color:var(--zh-dark); font-size:1.15rem; margin-top:0; }
.zh-why-item p{ color:#4a5568; font-size:0.95rem; }
.zh-why-numbered{ display:grid; grid-template-columns:auto 1fr; gap:20px; align-items:start; text-align:left; }
.zh-why-num{ font-size:1.8rem; font-weight:800; color:var(--zh-accent); line-height:1; }

/* Industries strip */
.zh-industries{ text-align:center; background:#fff; padding-top:0; }
.zh-industries-list{ font-size:1.1rem; color:var(--zh-dark); font-weight:600; }

/* Closing CTA */
.zh-cta{ background:var(--zh-dark); color:#fff; text-align:center; }
.zh-cta h2{ color:#fff; margin-top:0; }
.zh-cta p{ color:#dce6f0; }

/* Responsive */
@media (max-width:900px){
  .zh-stats-grid{ grid-template-columns:repeat(2,1fr); }
  .zh-grid-4{ grid-template-columns:repeat(2,1fr); }
  .zh-grid-3{ grid-template-columns:repeat(2,1fr); }
}
@media (max-width:560px){
  .zh-stats-grid{ grid-template-columns:1fr 1fr; }
  .zh-grid-4{ grid-template-columns:1fr; }
  .zh-grid-3{ grid-template-columns:1fr; }
  .zh-hero{ padding:80px 16px; }
  .zh-section{ padding:60px 16px; }
}

/* Header — black bar, matching bridgepolymers.nl's sticky black nav */
.site-header{ background-color:#111113!important; }
.main-navigation{ background-color:#111113!important; }
.main-navigation .main-nav ul li a, .main-navigation .menu-toggle{ color:#fff!important; }
.main-navigation a:hover{ color:var(--zh-accent)!important; }

/* Two-tone wordmark logo, e.g. "zh"(accent orange) + "logistics"(white on black bar) */
.main-title a{ text-decoration:none; font-weight:800; letter-spacing:-0.01em; font-size:1.5rem; }
.zh-logo-accent{ color:var(--zh-accent); }
.zh-logo-rest{ color:#fff; }

/* Hotline CTA badge, sits in GeneratePress's .header-widget slot beside the logo */
.header-widget{ display:flex; align-items:center; }
.header-widget .widget{ margin:0; }
.zh-hotline{ display:inline-flex; align-items:center; gap:7px; background:var(--zh-accent); color:#fff!important; font-weight:700; font-size:0.82rem; line-height:1; padding:10px 14px; border-radius:4px; text-decoration:none!important; white-space:nowrap; }
.zh-hotline:hover{ background:var(--zh-accent-dark); }
.zh-hotline-label{ text-transform:uppercase; font-size:0.65rem; letter-spacing:0.03em; opacity:0.85; border-right:1px solid rgba(255,255,255,0.5); padding-right:7px; }
@media (max-width:768px){ .header-widget{ margin:10px 0; } }

/* Give the header more breathing room now that it holds logo + full nav + hotline */
.site-header .inside-header.grid-container,
.main-navigation .inside-navigation.grid-container{ max-width:1320px; }
.main-navigation .main-nav ul li a{ padding-left:14px; padding-right:14px; }

/* GeneratePress caps the outer #page wrapper at max-width:1200px by default
   (the "Contained" content-width setting). That silently constrains every
   full-bleed section (hero, why-band, full-photo) to 1200px instead of the
   real viewport width. Remove the cap on the shell itself — .zh-wrap still
   keeps normal text content readable at 1140px inside it. */
#page.grid-container{ max-width:100%; }

/* Footer photo credits (CC BY-SA attribution) */
.zh-photo-credits{ text-align:center; font-size:0.75rem; color:#8a94a3; padding:14px 20px; background:#0c0c0e; }
.zh-photo-credits a{ color:#8a94a3; }

/* Interior page header banner */
.zh-page-header{ background-color:var(--zh-dark); background-image:linear-gradient(160deg,var(--zh-dark) 0%,var(--zh-dark-2) 100%); background-size:cover; background-position:center; color:#fff; padding:80px 20px; text-align:center; }
.zh-page-header h1{ color:#fff; font-size:clamp(1.8rem,3.5vw,2.6rem); margin:0 0 12px; }
.zh-page-header p{ color:#dce6f0; font-size:1.1rem; max-width:640px; margin:0 auto; }

/* Two-column layout (text + panel) */
.zh-cols-2{ display:grid; grid-template-columns:1fr 1fr; gap:50px; align-items:start; }
@media (max-width:800px){ .zh-cols-2{ grid-template-columns:1fr; } }

/* Values / leadership grid reuse .zh-grid-4 / .zh-why-item */

/* Service detail block */
.zh-service-detail{ padding:50px 0; border-bottom:1px solid var(--zh-bg); }
.zh-service-detail:last-child{ border-bottom:none; }
.zh-service-detail h2{ color:var(--zh-dark); font-size:1.6rem; margin-bottom:8px; }
.zh-service-detail .zh-tagline{ color:var(--zh-accent-dark); font-weight:600; margin-bottom:16px; }
.zh-service-detail ul{ margin:16px 0 0; padding-left:20px; color:#4a5568; }
.zh-service-detail ul li{ margin-bottom:6px; }

/* Location cards */
.zh-locations{ display:grid; grid-template-columns:repeat(3,1fr); gap:24px; }
@media (max-width:900px){ .zh-locations{ grid-template-columns:repeat(2,1fr); } }
@media (max-width:560px){ .zh-locations{ grid-template-columns:1fr; } }
.zh-location-card{ background:var(--zh-bg); border-radius:10px; padding:26px; border-top:4px solid var(--zh-dark); }
.zh-location-card h3{ color:var(--zh-dark); margin:0 0 8px; }
.zh-location-card p{ margin:0 0 6px; color:#4a5568; font-size:0.95rem; }

/* Industries icon grid */
.zh-industry-grid{ display:grid; grid-template-columns:repeat(5,1fr); gap:20px; text-align:center; }
@media (max-width:900px){ .zh-industry-grid{ grid-template-columns:repeat(3,1fr); } }
@media (max-width:560px){ .zh-industry-grid{ grid-template-columns:repeat(2,1fr); } }
.zh-industry-card{ background:var(--zh-bg); border-radius:10px; padding:24px 16px; }
.zh-industry-card h3{ color:var(--zh-dark); font-size:1rem; margin:0 0 8px; }
.zh-industry-card p{ color:#4a5568; font-size:0.85rem; margin:0; }

/* Form (Contact / Track & Trace) */
.zh-form{ background:var(--zh-bg); border-radius:12px; padding:36px; }
.zh-form-row{ display:grid; grid-template-columns:1fr 1fr; gap:16px; margin-bottom:16px; }
@media (max-width:600px){ .zh-form-row{ grid-template-columns:1fr; } }
.zh-form label{ display:block; font-weight:600; font-size:0.9rem; color:var(--zh-dark); margin-bottom:6px; }
.zh-form input, .zh-form select, .zh-form textarea{ width:100%; padding:12px 14px; border:1px solid #d7dee6; border-radius:6px; font-size:0.95rem; font-family:inherit; background:#fff; }
.zh-form-field{ margin-bottom:16px; }
.zh-form .zh-btn{ border:none; cursor:pointer; font-size:1rem; }

/* Contact info blocks */
.zh-contact-info{ display:grid; gap:20px; }
.zh-contact-info-item h3{ color:var(--zh-dark); margin:0 0 4px; font-size:1rem; }
.zh-contact-info-item p{ margin:0; color:#4a5568; }
.zh-contact-info-item a{ color:var(--zh-accent-dark); text-decoration:none; font-weight:600; }

/* Job listing */
.zh-job{ display:flex; justify-content:space-between; align-items:center; gap:16px; background:var(--zh-bg); border-radius:8px; padding:20px 24px; margin-bottom:12px; flex-wrap:wrap; }
.zh-job h3{ margin:0 0 4px; color:var(--zh-dark); font-size:1.05rem; }
.zh-job p{ margin:0; color:#5b6b7c; font-size:0.9rem; }

/* Track & Trace */
.zh-track-box{ max-width:560px; margin:0 auto; }
.zh-track-result{ margin-top:24px; padding:20px; border-radius:8px; background:var(--zh-bg); color:#4a5568; text-align:center; }

/* Why-work-with-us split band: dark text half + accent-orange framed-photo half,
   mirroring the reference site's editorial split-block sections. */
.zh-why-band{ display:grid; grid-template-columns:1fr 1fr; min-height:420px; }
.zh-why-band-text{ background:var(--zh-dark); color:#fff; display:flex; flex-direction:column; justify-content:center; padding:60px 8vw 60px 6vw; }
.zh-why-band-text h2{ font-size:clamp(2.4rem,5vw,3.6rem); line-height:0.95; margin:0 0 20px; font-weight:800; }
.zh-why-band-text p{ color:#c9d6e3; font-size:1.05rem; max-width:420px; margin:0; }
.zh-why-band-photo{ background:var(--zh-accent); display:flex; align-items:center; justify-content:center; padding:40px; }
.zh-why-band-photo img{ width:100%; max-width:520px; height:340px; object-fit:cover; border:8px solid #fff; box-shadow:0 20px 40px rgba(0,0,0,0.25); }
.zh-script{ font-family:'Caveat', cursive; font-weight:700; font-size:1.35em; color:var(--zh-accent); line-height:1; }

/* Reusable framed-photo treatment — white border + shadow, used to break up
   plain text sections with real imagery. */
.zh-framed-photo{ margin-top:28px; }
.zh-framed-photo img{ width:100%; max-height:260px; object-fit:cover; border:8px solid #fff; box-shadow:0 12px 28px rgba(11,17,26,0.15); }

/* Full-bleed edge-to-edge photo band, breaking out of the centered .zh-wrap column */
.zh-full-photo{ margin-top:60px; width:100vw; position:relative; left:50%; right:50%; margin-left:-50vw; margin-right:-50vw; }
.zh-full-photo img{ width:100%; height:420px; object-fit:cover; display:block; }
@media (max-width:600px){ .zh-full-photo img{ height:260px; } }
@media (max-width:800px){
  .zh-why-band{ grid-template-columns:1fr; min-height:0; }
  .zh-why-band-text{ padding:50px 24px; text-align:center; align-items:center; }
  .zh-why-band-text p{ margin:0 auto; }
  .zh-why-band-photo{ padding:24px; }
}

/* Card hover lift — service, why-us, location, industry cards */
.zh-service-card,
.zh-why-item,
.zh-location-card,
.zh-industry-card{ transition:transform 0.25s ease, box-shadow 0.25s ease; }
.zh-service-card:hover,
.zh-why-item:hover,
.zh-location-card:hover,
.zh-industry-card:hover{ transform:translateY(-6px); box-shadow:0 14px 28px rgba(11,17,26,0.12); }

/* Sticky header with shadow once the page scrolls */
.site-header{ position:sticky; top:0; z-index:200; transition:box-shadow 0.25s ease; }
.site-header.zh-scrolled{ box-shadow:0 4px 16px rgba(0,0,0,0.35); }

/* Scroll-reveal: sections fade + rise into place. Falls back to fully
   visible if JS never runs (progressive enhancement, not required). */
.zh-reveal{ opacity:0; transform:translateY(24px); transition:opacity 0.6s ease, transform 0.6s ease; }
.zh-reveal.zh-in-view{ opacity:1; transform:translateY(0); }
@media (prefers-reduced-motion:reduce){
  .zh-reveal{ opacity:1; transform:none; transition:none; }
}

/* Every page on this site uses a full-width custom template with no
   sidebar (front-page.php, page-*.php), so GP's default
   .site-content{display:flex} (built for content+sidebar columns)
   would lay full-width sections out as flex items in a row instead
   of stacking them. Disabled site-wide since no template here uses
   a sidebar. */
.site-content{ display:block; }
