/*
Theme Name: HA IT Diensten
Theme URI: https://ha-itdiensten.nl/
Author: HA IT Diensten
Description: Custom WordPress-thema voor HA IT Diensten - IT-hulp aan huis in Breda en omgeving, plus websites & webdesign. Gegenereerd vanuit de standalone site, inclusief SEO-landingspaginastructuur.
Version: 1.0
Requires at least: 6.0
Requires PHP: 7.4
Text Domain: ha-itdiensten
*/

/* ====================================================
   HA IT Diensten — gedeeld stylesheet
   Gebruikt door index.html en alle dienst-landingspagina's
   ==================================================== */

/* ---------- Tokens ---------- */
:root{
  --navy: #15314A;
  --navy-deep: #0B1F30;
  --navy-soft: #244A6B;
  --paper: #F7F5F0;
  --white: #FFFFFF;
  --green: #2BAE7E;
  --green-deep: #1F8C64;
  --amber: #E8A33D;
  --ink: #16222C;
  --muted: #5C6B74;
  --line: #E1E4DD;
  --shadow: 0 20px 50px -25px rgba(15,42,64,0.35);
  --radius: 16px;
  --maxw: 1140px;
  --ff-display: 'Space Grotesk', sans-serif;
  --ff-body: 'Inter', sans-serif;
  --ff-mono: 'IBM Plex Mono', monospace;
}

*{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}
img,svg{ display:block; max-width:100%; }
a{ color: inherit; text-decoration: none; }
ul{ margin:0; padding:0; list-style:none; }
h1,h2,h3,h4{ font-family: var(--ff-display); margin:0; line-height:1.1; font-weight:600; }
p{ margin:0; }
.container{ max-width: var(--maxw); margin:0 auto; padding: 0 24px; }
section{ padding: 88px 0; }
.skip-link{ position:absolute; left:-999px; top:0; background:var(--navy); color:white; padding:10px 16px; border-radius:8px; z-index:200; }
.skip-link:focus{ left:16px; top:16px; }
:focus-visible{ outline: 3px solid var(--green); outline-offset: 3px; border-radius: 4px; }

.eyebrow{
  font-family: var(--ff-mono);
  font-size: 13px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--green-deep);
  display:flex; align-items:center; gap:8px;
  margin-bottom: 14px;
}
.eyebrow::before{ content:""; width:8px; height:8px; border-radius:50%; background:var(--green); box-shadow:0 0 0 4px rgba(43,174,126,0.18); }

.section-head{ max-width: 640px; margin-bottom: 48px; }
.section-head h2{ font-size: clamp(28px,3.6vw,38px); margin-bottom:12px; color:var(--navy-deep); }
.section-head p{ color: var(--muted); font-size: 17px; line-height:1.6; }

.btn{
  display:inline-flex; align-items:center; gap:10px;
  font-family: var(--ff-body); font-weight:600; font-size:15px;
  padding: 14px 24px; border-radius: 999px; border:2px solid transparent;
  cursor:pointer; transition: transform .15s ease, box-shadow .15s ease;
  white-space:nowrap;
}
.btn:hover{ transform: translateY(-2px); }
.btn-primary{ background: var(--green); color: var(--navy-deep); box-shadow: 0 14px 30px -12px rgba(43,174,126,0.55); }
.btn-primary:hover{ box-shadow: 0 18px 34px -10px rgba(43,174,126,0.65); }
.btn-ghost{ background: transparent; border-color: rgba(255,255,255,0.35); color: var(--white); }
.btn-ghost:hover{ border-color: var(--white); }
.btn-outline{ background: transparent; border-color: var(--navy); color: var(--navy); }
.btn-outline:hover{ background: var(--navy); color:white; }

/* ---------- Nav ---------- */
header.site{
  position: sticky; top:0; z-index: 100;
  background: rgba(247,245,240,0.92); backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.nav{ display:flex; align-items:center; justify-content:space-between; padding: 16px 0; }
.brand{ display:flex; align-items:center; gap:10px; font-family:var(--ff-display); font-weight:700; font-size:19px; color:var(--navy-deep); }
.brand .mark{ width:38px; height:38px; border-radius:10px; background:var(--navy); color:white; display:flex; align-items:center; justify-content:center; font-size:14px; letter-spacing:-0.5px; }
.custom-logo-link{ display:flex; align-items:center; }
.custom-logo{ max-height:48px; width:auto; display:block; }
.nav-links{ display:none; gap:30px; font-weight:500; font-size:15px; color: var(--navy-deep); }
.nav-cta{ display:none; }
.nav-toggle{ background:none; border:none; cursor:pointer; padding:8px; }
.nav-toggle span{ display:block; width:24px; height:2px; background:var(--navy); margin:5px 0; transition:.2s; }
.mobile-panel{ display:none; flex-direction:column; gap:4px; padding: 8px 0 20px; border-top:1px solid var(--line); }
.mobile-panel.open{ display:flex; }
.mobile-panel a{ padding:12px 4px; font-weight:500; border-bottom:1px solid var(--line); }
.mobile-panel .btn{ margin-top:12px; justify-content:center; }

@media(min-width:900px){
  .nav-links{ display:flex; }
  .nav-cta{ display:flex; gap:12px; }
  .nav-toggle{ display:none; }
}

/* ---------- Breadcrumb ---------- */
.breadcrumb{ font-family:var(--ff-mono); font-size:12.5px; color: rgba(255,255,255,0.55); padding:18px 0 0; }
.breadcrumb a{ color: rgba(255,255,255,0.85); }
.breadcrumb a:hover{ text-decoration:underline; }
.breadcrumb .sep{ margin:0 8px; opacity:.6; }

/* ---------- Hero (homepage) ---------- */
.hero{
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color: white; padding: 72px 0 96px; overflow:hidden; position:relative;
}
.hero .container{ display:grid; gap:48px; align-items:center; }
.hero h1{ font-size: clamp(34px,5.4vw,54px); color:white; margin-bottom:18px; }
.hero .lead{ font-size: 18px; line-height:1.6; color: rgba(255,255,255,0.78); max-width:480px; margin-bottom:30px; }
.hero-ctas{ display:flex; flex-wrap:wrap; gap:14px; margin-bottom:18px; }
.hero-note{ font-family: var(--ff-mono); font-size:13px; color: rgba(255,255,255,0.6); }

.status-panel{
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--radius);
  padding: 26px;
  backdrop-filter: blur(6px);
  max-width: 380px;
}
.status-panel .tag{ font-family:var(--ff-mono); font-size:12px; letter-spacing:.1em; color: rgba(255,255,255,0.5); text-transform:uppercase; margin-bottom:18px; display:block; }
.status-row{ display:flex; align-items:center; gap:12px; padding:14px 0; border-bottom:1px dashed rgba(255,255,255,0.15); }
.status-row:last-of-type{ border-bottom:none; }
.dot{ width:11px; height:11px; border-radius:50%; flex-shrink:0; }
.dot.red{ background:#E8654F; box-shadow:0 0 0 5px rgba(232,101,79,0.18); }
.dot.amber{ background:var(--amber); box-shadow:0 0 0 5px rgba(232,163,61,0.18); }
.dot.green{ background:var(--green); box-shadow:0 0 0 5px rgba(43,174,126,0.22); animation: pulse 2.4s ease-in-out infinite; }
@keyframes pulse{ 0%,100%{ box-shadow:0 0 0 5px rgba(43,174,126,0.22);} 50%{ box-shadow:0 0 0 9px rgba(43,174,126,0.1);} }
.status-row span.label{ font-size:14.5px; color: rgba(255,255,255,0.85); }
.status-row span.label b{ color:white; }
.status-panel .resolved{ margin-top:18px; font-size:13px; color: var(--green); font-family:var(--ff-mono); display:flex; align-items:center; gap:8px; }
@media(prefers-reduced-motion: reduce){ .dot.green{ animation:none; } }

@media(min-width:860px){
  .hero .container{ grid-template-columns: 1.1fr 0.9fr; }
}

/* ---------- Page hero (landingspagina's) ---------- */
.page-hero{
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  color:white; padding:18px 0 64px;
}
.page-hero h1{ font-size: clamp(30px,4.6vw,44px); color:white; margin:16px 0; max-width:720px; }
.page-hero .lead{ font-size:17px; line-height:1.65; color:rgba(255,255,255,0.8); max-width:600px; margin-bottom:26px; }
.page-hero .hero-ctas{ margin-bottom:14px; }

/* ---------- Trust strip ---------- */
.trust{ background: var(--white); border-bottom:1px solid var(--line); }
.trust .container{ padding-top:36px; padding-bottom:36px; display:grid; gap:18px; grid-template-columns: repeat(2,1fr); }
.trust-item{ display:flex; align-items:flex-start; gap:12px; font-size:15px; font-weight:500; color: var(--navy-deep); }
.trust-item svg{ flex-shrink:0; margin-top:2px; }
@media(min-width:860px){ .trust .container{ grid-template-columns: repeat(4,1fr); } }

/* ---------- Diensten ---------- */
.services-grid{ display:grid; gap:20px; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); }
.service-card{
  background:var(--white); border:1px solid var(--line); border-radius: var(--radius);
  padding:28px; transition: transform .18s ease, box-shadow .18s ease;
}
.service-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.service-icon{ width:48px; height:48px; border-radius:12px; background: rgba(21,49,74,0.06); display:flex; align-items:center; justify-content:center; margin-bottom:18px; color:var(--navy); }
.service-card h3{ font-size:18px; margin-bottom:8px; color:var(--navy-deep); }
.service-card p{ color:var(--muted); font-size:14.5px; line-height:1.55; }
.card-link{ display:inline-flex; align-items:center; gap:6px; margin-top:14px; font-size:14px; font-weight:600; color:var(--green-deep); }
.card-link:hover{ text-decoration:underline; }
.card-links{ margin-top:14px; display:flex; gap:16px; flex-wrap:wrap; font-size:14px; font-weight:600; }
.card-links a{ color:var(--green-deep); }
.card-links a:hover{ text-decoration:underline; }

/* ---------- Veelvoorkomende problemen (landingspagina's) ---------- */
.problem-list{ display:grid; gap:16px; }
.problem-item{ display:flex; gap:14px; padding:18px; background:white; border:1px solid var(--line); border-radius:12px; }
.problem-item svg{ flex-shrink:0; color:var(--green-deep); margin-top:2px; }
.problem-item h4{ font-family:var(--ff-body); font-size:15.5px; font-weight:600; color:var(--navy-deep); margin-bottom:4px; }
.problem-item p{ font-size:14px; color:var(--muted); line-height:1.5; }
@media(min-width:760px){ .problem-list{ grid-template-columns: repeat(2,1fr); } }

/* ---------- Hoe het werkt ---------- */
.steps{ display:grid; gap:32px; }
.step{ display:flex; gap:20px; }
.step .num{ font-family:var(--ff-mono); font-size:14px; color:var(--green-deep); border:1px solid var(--line); background:white; width:46px; height:46px; border-radius:50%; display:flex; align-items:center; justify-content:center; flex-shrink:0; }
.step h3{ font-size:18px; margin-bottom:6px; color:var(--navy-deep); }
.step p{ color:var(--muted); font-size:15px; line-height:1.6; max-width:480px; }
@media(min-width:860px){ .steps{ grid-template-columns: repeat(3,1fr); } .step{ flex-direction:column; gap:16px; } }

/* ---------- Tarieven ---------- */
.pricing-grid{ display:grid; gap:20px; grid-template-columns: repeat(auto-fit,minmax(240px,1fr)); }
.price-card{ background: var(--navy); color:white; border-radius: var(--radius); padding:30px; }
.price-card.alt{ background: var(--white); color: var(--ink); border:1px solid var(--line); }
.price-card .ptitle{ font-family:var(--ff-mono); font-size:13px; text-transform:uppercase; letter-spacing:.06em; opacity:.7; margin-bottom:14px; }
.price-card .pamount{ font-family:var(--ff-display); font-size:30px; margin-bottom:6px; }
.price-card .pdetail{ font-size:14px; opacity:.75; line-height:1.5; }
.pricing-foot{ margin-top:28px; color:var(--muted); font-size:14.5px; max-width:560px; }

/* ---------- Over mij ---------- */
.about{ display:grid; gap:40px; align-items:center; }
.about-visual{ background: var(--navy); border-radius: var(--radius); padding:40px; color:white; }
.about-visual .avatar{ width:64px; height:64px; border-radius:50%; background:var(--green); color:var(--navy-deep); display:flex; align-items:center; justify-content:center; font-family:var(--ff-display); font-weight:700; font-size:22px; margin-bottom:20px; }
.about-visual p{ font-family:var(--ff-mono); font-size:13px; color: rgba(255,255,255,0.7); line-height:1.7; }
.about p.lead{ font-size:17px; line-height:1.7; color: var(--ink); margin-bottom:18px; }
.about p.lead:last-child{ margin-bottom:0; }
@media(min-width:860px){ .about{ grid-template-columns: 1fr 1.2fr; } }

/* ---------- Reviews ---------- */
.reviews-grid{ display:grid; gap:20px; grid-template-columns: repeat(auto-fit,minmax(260px,1fr)); }
.review-card{ background:white; border:1px solid var(--line); border-radius:var(--radius); padding:26px; }
.stars{ display:flex; gap:4px; margin-bottom:14px; color:var(--amber); }
.review-card p.quote{ font-size:15px; line-height:1.6; color:var(--ink); margin-bottom:16px; }
.review-card .who{ font-family:var(--ff-mono); font-size:12.5px; color:var(--muted); }
.google-reviews-embed{ max-width:900px; }
.review-placeholder{ background:white; border:1px dashed var(--line); border-radius:var(--radius); padding:40px; text-align:center; color:var(--muted); font-size:15px; }

/* ---------- Werkgebied ---------- */
.area{ background: var(--navy-deep); color:white; }
.area .section-head h2{ color:white; }
.area .section-head p{ color: rgba(255,255,255,0.65); }
.chip-row{ display:flex; flex-wrap:wrap; gap:12px; margin-bottom:24px; }
.chip{ border:1px solid rgba(255,255,255,0.25); border-radius:999px; padding:9px 18px; font-size:14px; font-family:var(--ff-mono); }
.chip.main{ background:var(--green); color:var(--navy-deep); border-color:var(--green); font-weight:600; }
.area-note{ color: rgba(255,255,255,0.65); font-size:15px; max-width:560px; }

/* ---------- Gerelateerde diensten (landingspagina's) ---------- */
.related-grid{ display:grid; gap:16px; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); }
.related-card{ display:block; background:white; border:1px solid var(--line); border-radius:12px; padding:20px; font-weight:600; color:var(--navy-deep); transition: border-color .15s ease, transform .15s ease; }
.related-card:hover{ border-color:var(--navy); transform: translateY(-3px); }
.related-card span{ display:block; font-weight:400; font-size:13.5px; color:var(--muted); margin-top:4px; }

/* ---------- FAQ ---------- */
.faq-item{ border-bottom:1px solid var(--line); }
.faq-q{ width:100%; text-align:left; background:none; border:none; padding:22px 0; display:flex; justify-content:space-between; align-items:center; gap:16px; cursor:pointer; font-family:var(--ff-body); font-size:16.5px; font-weight:600; color:var(--navy-deep); }
.faq-q .plus{ flex-shrink:0; width:22px; height:22px; position:relative; }
.faq-q .plus::before,.faq-q .plus::after{ content:""; position:absolute; background:var(--navy); transition:transform .2s ease; }
.faq-q .plus::before{ width:100%; height:2px; top:50%; left:0; transform:translateY(-50%); }
.faq-q .plus::after{ width:2px; height:100%; left:50%; top:0; transform:translateX(-50%); }
.faq-item.open .plus::after{ transform: translateX(-50%) scaleY(0); }
.faq-a{ max-height:0; overflow:hidden; transition: max-height .25s ease; }
.faq-a p{ color:var(--muted); font-size:15px; line-height:1.6; padding-bottom:22px; max-width:680px; }

/* ---------- Contact ---------- */
.contact-grid{ display:grid; gap:40px; }
.contact-info{ display:flex; flex-direction:column; gap:18px; }
.contact-row{ display:flex; align-items:center; gap:14px; padding:16px; background:white; border:1px solid var(--line); border-radius:12px; font-weight:600; color:var(--navy-deep); transition: border-color .15s ease; }
.contact-row:hover{ border-color: var(--navy); }
.contact-row .ic{ width:40px; height:40px; border-radius:10px; background:rgba(21,49,74,0.06); display:flex; align-items:center; justify-content:center; color:var(--navy); flex-shrink:0; }
.contact-row small{ display:block; font-weight:400; color:var(--muted); font-size:13px; margin-top:2px; }
.form-card{ background:white; border:1px solid var(--line); border-radius:var(--radius); padding:28px; }
.field{ margin-bottom:16px; }
.field label{ display:block; font-size:13.5px; font-weight:600; margin-bottom:6px; color:var(--navy-deep); }
.field input, .field textarea{
  width:100%; padding:13px 14px; border:1px solid var(--line); border-radius:9px;
  font-family:var(--ff-body); font-size:15px; background:var(--paper); color:var(--ink);
}
.field textarea{ min-height:110px; resize:vertical; }
.form-note{ font-size:13px; color:var(--muted); margin-top:10px; }
@media(min-width:900px){ .contact-grid{ grid-template-columns: 0.85fr 1.15fr; } }
.contact-band{ display:grid; gap:14px; grid-template-columns: repeat(auto-fit,minmax(220px,1fr)); margin-bottom:14px; }

/* ---------- Footer ---------- */
footer{ background: var(--navy-deep); color: rgba(255,255,255,0.6); padding:50px 0 28px; }
.foot-top{ display:flex; flex-wrap:wrap; justify-content:space-between; gap:30px; margin-bottom:30px; }
.foot-top > div, .foot-top > nav{ min-width:150px; }
.foot-brand{ color:white; font-family:var(--ff-display); font-weight:700; font-size:18px; }
.foot-links{ display:flex; flex-direction:column; gap:10px; font-size:14.5px; }
.foot-links.inline{ flex-direction:row; flex-wrap:wrap; gap:22px; }
.foot-heading{ color:white; font-size:13px; font-family:var(--ff-mono); text-transform:uppercase; letter-spacing:.06em; margin-bottom:14px; opacity:.7; }
.foot-bottom{ border-top:1px solid rgba(255,255,255,0.12); padding-top:20px; font-size:13px; display:flex; flex-wrap:wrap; justify-content:space-between; gap:10px; }

/* ---------- Reveal animation ---------- */
.reveal{ opacity:0; transform: translateY(14px); transition: opacity .5s ease, transform .5s ease; }
.reveal.in{ opacity:1; transform:none; }
@media(prefers-reduced-motion: reduce){ .reveal{ opacity:1; transform:none; transition:none; } }

/* ---------- Blog ---------- */
.blog-grid{ display:grid; gap:24px; grid-template-columns: repeat(auto-fit,minmax(280px,1fr)); }
.blog-card{ background:white; border:1px solid var(--line); border-radius:var(--radius); overflow:hidden; transition: transform .18s ease, box-shadow .18s ease; }
.blog-card:hover{ transform: translateY(-4px); box-shadow: var(--shadow); }
.blog-card .blog-card-link{ display:block; padding:26px; color:inherit; }
.blog-card .blog-date{ font-family:var(--ff-mono); font-size:12.5px; color:var(--muted); margin-bottom:10px; display:block; }
.blog-card h3{ font-size:19px; margin-bottom:10px; color:var(--navy-deep); }
.blog-card p{ color:var(--muted); font-size:14.5px; line-height:1.55; }
.blog-card .read-more{ display:inline-block; margin-top:14px; font-size:14px; font-weight:600; color:var(--green-deep); }

.post-content{ font-size:16.5px; line-height:1.75; color:var(--ink); }
.post-content h2{ font-size:24px; color:var(--navy-deep); margin:36px 0 14px; }
.post-content h3{ font-size:19px; color:var(--navy-deep); margin:28px 0 12px; }
.post-content p{ margin-bottom:18px; }
.post-content ul{ margin-bottom:18px; padding-left:22px; list-style:disc; }
.post-content li{ margin-bottom:8px; }
.post-content a{ color:var(--green-deep); text-decoration:underline; }

.pagination-nav{ display:flex; justify-content:space-between; gap:16px; margin-top:40px; flex-wrap:wrap; }
.pagination-nav a, .pagination-nav .disabled{ padding:10px 18px; border:1px solid var(--line); border-radius:999px; font-size:14px; font-weight:600; color:var(--navy-deep); }
.pagination-nav .disabled{ opacity:.4; }
