/*
Theme Name: Pleisteraar
Description: Custom theme for pleisteraar.be
Version: 1.0
Text Domain: pleisteraar
*/

*, *::before, *::after { box-sizing: border-box; }

html {
  font-size: 17px;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #1E3A4C;
  background: #fff;
}

img { max-width: 100%; height: auto; display: block; }
a { color: #1E3A4C; text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4 {
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  font-weight: 700;
  line-height: 1.5;
  margin: 0 0 .75rem;
}

/* NAV */
.nav-wrap {
  background: #1E3A4C;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.nav-wrap .brand {
  color: #fff;
  font-weight: 700;
  font-size: 1.15rem;
  padding: 1rem 0;
  display: block;
}
.nav-toggle {
  display: none;
}
.nav-burger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  padding: .6rem .4rem;
  gap: 5px;
}
.nav-burger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #fff;
}
.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 0;
}
.site-nav ul li a {
  display: block;
  color: #fff;
  padding: 1rem .9rem;
  font-size: .92rem;
  font-weight: 400;
  white-space: nowrap;
}
.site-nav ul li a:hover {
  background: #C4892A;
  text-decoration: none;
}
@media (max-width: 768px) {
  .nav-burger { display: flex; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #1E3A4C;
    border-top: 2px solid #C4892A;
  }
  .nav-toggle:checked ~ .site-nav { display: block; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
  .site-nav ul { flex-direction: column; }
  .site-nav ul li a { padding: .85rem 1.5rem; border-bottom: 1px solid rgba(255,255,255,.08); }
}

/* HERO */
.hrzn-hero {
  background: #1E3A4C url('img/hero.webp') center / cover no-repeat;
  position: relative;
  padding: 3.5rem 1.5rem 4rem;
  color: #fff;
}
.hrzn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(30, 58, 76, .72);
}
.hrzn-inner {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
@media (max-width: 840px) {
  .hrzn-inner { grid-template-columns: 1fr; }
}
.hrzn-copy h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: #fff;
  margin-bottom: .5rem;
}
.hrzn-copy .hrzn-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.88);
  margin-bottom: 1.5rem;
  line-height: 1.6;
}
.hrzn-copy .hrzn-pts {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}
.hrzn-copy .hrzn-pts li {
  padding: .3rem 0 .3rem 1.4rem;
  position: relative;
  color: rgba(255,255,255,.9);
  font-size: .97rem;
}
.hrzn-copy .hrzn-pts li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .9rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255,255,255,0.85);
}
.hrzn-form {
  background: #fff;
  border-radius: 8px;
  padding: 1.8rem 1.5rem;
  color: #1E3A4C;
  border: 1px solid #ddd;
}
.hrzn-form h2 {
  font-size: 1.2rem;
  margin-bottom: 1.1rem;
  color: #1E3A4C;
  padding-bottom: .5rem;
  border-bottom: 1px solid #ddd;
}
.fld-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .7rem .9rem;
}
@media (max-width: 480px) {
  .fld-group { grid-template-columns: 1fr; }
}
.fld-group .fld-full { grid-column: 1 / -1; }
.fld-group input {
  width: 100%;
  padding: .62rem .75rem;
  border: 1.5px solid #c8d2da;
  border-radius: 4px;
  font-size: 16px;
  font-family: inherit;
  color: #1E3A4C;
  background: #fff;
}
.fld-group input:focus {
  outline: none;
  border-color: #C4892A;
}
.fld-trap { display: none !important; }
.btn-pls {
  display: block;
  width: 100%;
  margin-top: .9rem;
  padding: .85rem;
  background: #C4892A;
  color: #fff;
  border: none;
  border-radius: 3px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  font-family: inherit;
}
.btn-pls:hover { background: #a8721e; }

/* SUCCESS MSG */
.pls-notice {
  background: #f7f2eb;
  color: #1E3A4C;
  border: 1px solid #ddd;
  padding: .9rem 1.2rem;
  margin-bottom: 1.2rem;
  font-size: .95rem;
  border-radius: 4px;
}
.pls-notice-err {
  background: #f7f2eb;
  color: #1E3A4C;
  border: 1px solid #ddd;
}

/* CONTENT SECTIONS */
.pls-section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 1.5rem;
}
.pls-section + .pls-section { padding-top: 0; }

.sec-alt { background: #f7f2eb; }
.sec-alt .pls-section { padding: 3.5rem 1.5rem; }

.sec-title {
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  color: #1E3A4C;
  margin-bottom: 1.8rem;
}

/* SERVICES GRID */
.svc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.svc-card {
  background: #fff;
  border: 1.5px solid #dde3e9;
  border-radius: 3px;
  padding: 1.4rem 1.2rem;
  border-top: 4px solid #C4892A;
}
.sec-alt .svc-card {
  background: #fff;
}
.svc-card h3 {
  font-size: 1.05rem;
  color: #1E3A4C;
  margin-bottom: .5rem;
}
.svc-card p {
  font-size: .93rem;
  color: #4a5a68;
  margin: 0;
}

/* GALLERY GRID */
.gal-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1rem;
}
.gal-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 3px;
}

/* STEPS */
.stps-list {
  list-style: none;
  padding: 0;
  margin: 0;
  counter-reset: steps;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.4rem;
}
.stps-list li {
  counter-increment: steps;
  padding: 1.3rem 1.2rem 1.3rem 1.2rem;
  background: #fff;
  border: 1.5px solid #dde3e9;
  border-radius: 3px;
  position: relative;
}
.sec-alt .stps-list li { background: #fff; }
.stps-list li::before {
  content: counter(steps);
  display: block;
  width: 36px;
  height: 36px;
  background: #1E3A4C;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50%;
  line-height: 36px;
  text-align: center;
  margin-bottom: .7rem;
}
.stps-list li h3 {
  font-size: 1rem;
  margin-bottom: .35rem;
  color: #1E3A4C;
}
.stps-list li p {
  font-size: .9rem;
  color: #4a5a68;
  margin: 0;
}

/* PRICE TABLE */
.prijs-tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: .95rem;
}
.prijs-tbl th {
  background: #1E3A4C;
  color: #fff;
  padding: .75rem 1rem;
  text-align: left;
  font-weight: 700;
}
.prijs-tbl td {
  padding: .7rem 1rem;
  border-bottom: 1px solid #dde3e9;
  color: #1E3A4C;
}
.prijs-tbl tr:nth-child(even) td { background: #f0ebe2; }

/* FAQ */
.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.faq-list li {
  border-bottom: 1px solid #dde3e9;
}
.faq-list li:first-child { border-top: 1px solid #dde3e9; }
.faq-list li input[type="checkbox"] { display: none; }
.faq-list li label {
  display: block;
  padding: .9rem 2rem .9rem 0;
  font-weight: 700;
  cursor: pointer;
  color: #1E3A4C;
  position: relative;
  font-size: .97rem;
}
.faq-list li label::after {
  content: '+';
  position: absolute;
  right: .2rem;
  top: .85rem;
  font-size: 1.3rem;
  font-weight: 400;
  color: #C4892A;
}
.faq-list li input:checked + label::after { content: '-'; }
.faq-ans {
  display: none;
  padding: 0 0 1rem;
  color: #4a5a68;
  font-size: .95rem;
  line-height: 1.6;
}
.faq-list li input:checked ~ .faq-ans { display: block; }

/* CTA STRIP */
.cta-strip {
  background: #C4892A;
  padding: 3rem 1.5rem;
  text-align: center;
}
.cta-strip h2 {
  font-size: clamp(1.4rem, 3vw, 2rem);
  color: #0d1e28;
  margin-bottom: .75rem;
}
.cta-strip p { color: #0d1e28; margin: 0 0 1.5rem; font-size: 1rem; }
.cta-strip .btn-pls {
  display: inline-block;
  width: auto;
  padding: .85rem 2.2rem;
  background: #1E3A4C;
  border-radius: 3px;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border: none;
}
.cta-strip .btn-pls:hover { background: #162d3c; text-decoration: none; }

/* FOOTER */
.site-ftr {
  background: #162d3c;
  color: rgba(255,255,255,.75);
  padding: 2.5rem 1.5rem 1.5rem;
}
.ftr-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}
.ftr-inner h3 {
  color: #fff;
  font-size: 1rem;
  margin-bottom: .75rem;
  border-bottom: 2px solid #C4892A;
  padding-bottom: .4rem;
  font-weight: 700;
}
.ftr-inner p, .ftr-inner li {
  font-size: .88rem;
  color: rgba(255,255,255,.7);
  margin: 0 0 .35rem;
}
.ftr-nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.ftr-nav ul li a {
  color: rgba(255,255,255,.7);
  font-size: .88rem;
}
.ftr-nav ul li a:hover { color: #C4892A; }
.ftr-bar {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,.12);
  padding-top: 1rem;
  font-size: .8rem;
  color: rgba(255,255,255,.75);
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: space-between;
}

/* ENTRY CONTENT */
.entry-body {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2.5rem 1.5rem;
}
.entry-body p { margin: 0 0 1rem; }
.entry-body h2, .entry-body h3 { margin: 1.5rem 0 .6rem; }


/* aps-post-content-fix : constrain AI-generated <section> children */
.entry-body > section,
.entry-body > p,
.entry-body > h2,
.entry-body > h3,
.entry-body > ul,
.entry-body > ol,
.entry-body > dl {
	max-width: 1180px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 24px;
	padding-right: 24px;
}
.entry-body > section {
	padding-top: 44px;
	padding-bottom: 44px;
}
.entry-body > section + section {
	border-top: 1px solid rgba(0,0,0,.08);
}
.entry-body > section h2 { margin-bottom: 18px; }
.entry-body > section h3 { margin-top: 26px; margin-bottom: 10px; }
.entry-body > section p { margin-bottom: 14px; }
.entry-body > section ul,
.entry-body > section ol { padding-left: 22px; margin-bottom: 18px; }
.entry-body > section ul li,
.entry-body > section ol li { margin-bottom: 6px; }
.entry-body > section dl dt { font-weight: 700; margin-top: 14px; }
.entry-body > section dl dd { margin: 0 0 12px; color: #5a6b72; }
.entry-body > .znw75gigx { padding-top: 32px; padding-bottom: 32px; }
.entry-body > .znw75gigx + .znw75gigx { border-top: 1px solid rgba(0,0,0,.08); }
.entry-body > .znw75gigx .im8mi3twj { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.entry-body > .znw75gigx h2 { font-size: 1.4rem; margin-bottom: 16px; }
.entry-body > .znw75gigx .t86qtl5z { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 6px 22px; list-style: none; padding: 0; margin: 0; }
.entry-body > .znw75gigx .t86qtl5z li { padding: 5px 0; border-bottom: 1px solid rgba(0,0,0,.06); }
.entry-body > .znw75gigx .t86qtl5z a { color: inherit; text-decoration: none; }
.entry-body > .znw75gigx .t86qtl5z .u9075zst { color: #5a6b72; font-size: .85em; margin-left: 6px; }

/* spacing */
body.home .entry-body > *:first-of-type {
	padding-top: 34px;
}
