/*
Theme Name: WestCoast Solutions
Theme URI: https://www.wecoso.be
Author: WestCoast Solutions
Author URI: https://www.wecoso.be
Description: Maatwerk WordPress theme voor klusjes- en technieken bedrijven, met een volwaardige Theme Customizer (kleuren, hero, diensten, portfolio, testimonials, contactgegevens) en live voorbeeldweergave. Vereist het gratis "Contact Form 7" plugin voor het contactformulier op de contactpagina.
Version: 1.9.3
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: westcoast-solutions
Tags: business, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns, footer-widgets

WestCoast Solutions WordPress theme, copyright and licensed under GPLv2 or later.
*/

/* =========================================================
   0. CSS CUSTOM PROPERTIES (defaults — overridden inline by
      inc/customizer-output.php based on live Customizer values)
   ========================================================= */
:root{
	--wcs-navy: #1c3f6e;
	--wcs-navy-dark: #142c4d;
	--wcs-red: #c81419;
	--wcs-red-dark: #a10f13;
	--wcs-yellow: #f4c430;
	--wcs-blue: #1f5fad;
	--wcs-brown: #8b5a2b;
	--wcs-green: #2e8b47;
	--wcs-gray-icon: #6b6f76;
	--wcs-hero-bg: #dbe6f2;
	--wcs-band-bg: #eef1f4;
	--wcs-footer-bg: #7a1015;
	--wcs-footer-text: #f4e4e4;
	--wcs-text: #2b2b2b;
	--wcs-text-light: #5a5f66;
	--wcs-white: #ffffff;
	--wcs-border: #e2e6ea;
	--wcs-font-heading: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--wcs-font-body: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
	--wcs-container: 1180px;
	--wcs-radius: 10px;
}

/* =========================================================
   1. RESET / BASE
   ========================================================= */
*,*::before,*::after{ box-sizing: border-box; }
html{ -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body{
	margin: 0;
	font-family: var(--wcs-font-body);
	color: var(--wcs-text);
	font-size: 16px;
	line-height: 1.6;
	background: var(--wcs-white);
}
img{ max-width: 100%; height: auto; display: block; }
a{ color: var(--wcs-blue); text-decoration: none; transition: color .15s ease, opacity .15s ease; }
a:hover, a:focus{ color: var(--wcs-red); }
h1,h2,h3,h4,h5,h6{
	font-family: var(--wcs-font-heading);
	color: var(--wcs-navy);
	line-height: 1.25;
	font-weight: 700;
	margin: 0 0 .5em;
}
p{ margin: 0 0 1.1em; }
ul{ margin: 0; padding: 0; list-style: none; }
button{ font-family: inherit; cursor: pointer; }
.screen-reader-text{
	border: 0; clip: rect(1px,1px,1px,1px); clip-path: inset(50%);
	height: 1px; width: 1px; overflow: hidden; position: absolute !important;
	word-wrap: normal !important; margin: -1px; padding: 0;
}
.skip-link{
	position: absolute; left: -9999px; top: 0; z-index: 100000;
	background: var(--wcs-navy); color: #fff; padding: 12px 20px; border-radius: 0 0 6px 0;
}
.skip-link:focus{ left: 0; color: #fff; }

.wcs-container{
	max-width: var(--wcs-container);
	margin: 0 auto;
	padding: 0 24px;
}

/* =========================================================
   2. BUTTONS
   ========================================================= */
.wcs-btn{
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background: var(--wcs-navy);
	color: #fff;
	font-family: var(--wcs-font-heading);
	font-weight: 600;
	font-size: 15px;
	padding: 13px 26px;
	border-radius: 6px;
	border: 2px solid var(--wcs-navy);
	white-space: nowrap;
}
.wcs-btn:hover, .wcs-btn:focus{
	background: var(--wcs-navy-dark);
	border-color: var(--wcs-navy-dark);
	color: #fff;
}
.wcs-btn--outline{
	background: transparent;
	color: var(--wcs-navy);
}
.wcs-btn--outline:hover{ background: var(--wcs-navy); color: #fff; }
.wcs-btn--red{ background: var(--wcs-red); border-color: var(--wcs-red); }
.wcs-btn--red:hover{ background: var(--wcs-red-dark); border-color: var(--wcs-red-dark); }

/* =========================================================
   3. SITE HEADER
   ========================================================= */
.wcs-site-header{
	background: #fff;
	border-bottom: 1px solid var(--wcs-border);
	position: sticky;
	top: 0;
	z-index: 300;
	transition: box-shadow .2s ease;
}
.wcs-site-header.is-scrolled{ box-shadow: 0 4px 16px rgba(20,44,77,.10); }
.wcs-header-inner{
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 24px;
	padding: 16px 24px;
}
.wcs-logo{ display: flex; align-items: center; }
.wcs-logo img{ max-height: 78px; width: auto; }
.wcs-logo-text{
	font-family: var(--wcs-font-heading);
	font-weight: 800;
	font-size: 22px;
	line-height: 1.15;
}
.wcs-logo-text .wcs-logo-tagline{
	display: block;
	font-size: 12px;
	font-weight: 600;
	letter-spacing: .04em;
	color: var(--wcs-text-light);
	text-transform: uppercase;
}
.wcs-logo-text .wcs-logo-brand{ color: var(--wcs-navy); }
.wcs-logo-text .wcs-logo-brand-accent{ color: var(--wcs-red); display: block; }

.wcs-primary-nav{ display: flex; align-items: center; gap: 32px; }
.wcs-primary-nav > ul{ display: flex; align-items: center; gap: 28px; }
.wcs-primary-nav a{
	color: var(--wcs-navy);
	font-weight: 600;
	font-size: 15px;
}
.wcs-primary-nav .current-menu-item > a,
.wcs-primary-nav a:hover{ color: var(--wcs-red); }
.wcs-header-actions{ display: flex; align-items: center; gap: 18px; }

/* =========================================================
   3b. DROPDOWN SUBMENUS (multi-level menus)
   WordPress prints nested <ul class="sub-menu"> for menu items with
   children, but ships no interaction of its own — without this, a
   sub-menu <ul> just sat inline in the flow (see the old, unscoped
   ".wcs-primary-nav ul" rule above, now ".wcs-primary-nav > ul") or
   stayed permanently invisible. assets/js/navigation.js injects a
   ".wcs-submenu-toggle" button right after each parent link so it can
   be opened by click/tap (and toggled via aria-expanded); desktop
   mouse users can also just hover, see the min-width query below.
   ========================================================= */
.wcs-primary-nav li{
	position: relative;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
}
.wcs-primary-nav li > a{ flex: 1 1 auto; }

.wcs-submenu-toggle{
	flex: 0 0 auto;
	background: transparent;
	border: 0;
	margin: 0;
	padding: 6px;
	display: inline-flex;
	align-items: center;
	justify-content: center;
	color: var(--wcs-navy);
	line-height: 0;
}
.wcs-submenu-toggle:hover, .wcs-submenu-toggle:focus{ color: var(--wcs-red); }
.wcs-submenu-toggle svg{
	width: 10px; height: 10px;
	fill: none; stroke: currentColor; stroke-width: 2.4;
	stroke-linecap: round; stroke-linejoin: round;
	pointer-events: none;
	transition: transform .18s ease;
}

.sub-menu{
	display: none;
	flex-direction: column;
	gap: 0;
	margin: 0;
	padding: 8px;
	background: #fff;
	border: 1px solid var(--wcs-border);
	border-radius: 8px;
}
.sub-menu li{ width: 100%; }
.sub-menu a{
	display: block;
	padding: 9px 12px;
	border-radius: 6px;
	font-size: 14.5px;
	white-space: nowrap;
}
.sub-menu a:hover, .sub-menu a:focus{ background: var(--wcs-band-bg); }

.menu-item-has-children.is-open > .sub-menu{ display: flex; }
.menu-item-has-children.is-open > .wcs-submenu-toggle svg{ transform: rotate(180deg); }

@media (min-width: 701px){
	.sub-menu{
		position: absolute;
		top: 100%;
		left: 0;
		min-width: 220px;
		box-shadow: 0 12px 28px rgba(20,44,77,.14);
		z-index: 250;
	}
	/* Sub-sub-menus flyout to the side instead of stacking further down. */
	.sub-menu .sub-menu{ top: -9px; left: 100%; margin-left: 6px; }

	.menu-item-has-children:hover > .sub-menu,
	.menu-item-has-children:focus-within > .sub-menu{ display: flex; }
	.menu-item-has-children:hover > .wcs-submenu-toggle svg,
	.menu-item-has-children:focus-within > .wcs-submenu-toggle svg{ transform: rotate(180deg); }
}
.wcs-header-phone{
	display: inline-flex;
	align-items: center;
	gap: 6px;
	font-weight: 700;
	font-size: 14.5px;
	color: var(--wcs-navy);
	white-space: nowrap;
}
.wcs-header-phone svg{ width: 16px; height: 16px; fill: var(--wcs-red); flex: none; }
.wcs-header-phone:hover{ color: var(--wcs-red); }

.wcs-menu-toggle{
	display: none;
	background: transparent;
	border: 2px solid var(--wcs-navy);
	border-radius: 6px;
	padding: 9px 11px;
}
.wcs-menu-toggle span{
	display: block; width: 22px; height: 2px; background: var(--wcs-navy);
	margin: 4px 0; transition: transform .2s ease, opacity .2s ease;
}
.wcs-menu-toggle[aria-expanded="true"] span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.wcs-menu-toggle[aria-expanded="true"] span:nth-child(2){ opacity: 0; }
.wcs-menu-toggle[aria-expanded="true"] span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* =========================================================
   4. HERO
   ========================================================= */
.wcs-hero{
	background: var(--wcs-hero-bg);
	overflow: hidden;
	scroll-margin-top: 20px;
}
.wcs-hero-inner{
	display: grid;
	grid-template-columns: 1.05fr 1fr;
	gap: 40px;
	align-items: center;
	padding: 56px 24px;
}
.wcs-hero-content h1{
	font-size: clamp(28px, 3.4vw, 40px);
	color: var(--wcs-navy);
	margin-bottom: 18px;
}
.wcs-hero-content p.wcs-hero-sub{
	font-size: 17px;
	color: var(--wcs-text);
	margin-bottom: 22px;
	max-width: 46ch;
}
.wcs-hero-highlights{
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 8px 28px;
	margin-bottom: 8px;
}
.wcs-hero-highlights li{
	display: flex;
	align-items: center;
	gap: 8px;
	font-weight: 700;
	color: var(--wcs-navy);
	font-size: 15px;
}
.wcs-hero-highlights li .wcs-dot{
	width: 10px; height: 10px; border-radius: 2px; flex: none;
}
.wcs-hero-highlights li.wcs-hero-full{ grid-column: 1 / -1; }
.wcs-hero-highlights li.wcs-hero-full .wcs-dot{ background: var(--wcs-red); border-radius: 50%; }

.wcs-hero-media{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 10px;
	position: relative;
}
.wcs-hero-media img{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 6px;
	aspect-ratio: 3 / 4;
}
.wcs-hero-media .wcs-hero-media-col{ display: flex; flex-direction: column; gap: 10px; }
.wcs-hero-media .wcs-hero-media-col img{ aspect-ratio: 1 / 1; }

/* =========================================================
   5. SECTION BAND / TITLE
   ========================================================= */
.wcs-section-band{
	background: var(--wcs-band-bg);
	padding: 14px 24px;
	text-align: center;
	scroll-margin-top: 20px;
}
.wcs-section-band h2{
	color: var(--wcs-red);
	font-size: 22px;
	margin: 0;
	letter-spacing: .01em;
}
.wcs-section-band-intro{
	margin: 6px 0 0;
	font-size: 14px;
	color: var(--wcs-text-light);
}

/* =========================================================
   6. SERVICES GRID
   ========================================================= */
.wcs-services{ padding: 44px 24px 8px; }
.wcs-services-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 28px 32px;
}
.wcs-service-card{ display: flex; gap: 16px; }
.wcs-service-icon{
	flex: none;
	width: 58px; height: 58px;
	border-radius: 12px;
	display: flex; align-items: center; justify-content: center;
	color: #fff;
}
.wcs-service-icon svg{ width: 30px; height: 30px; fill: currentColor; }
.wcs-service-icon img{ width: 30px; height: 30px; object-fit: contain; border-radius: 4px; }
.wcs-service-card h3{
	font-size: 17px;
	margin-bottom: 6px;
	text-transform: uppercase;
	letter-spacing: .01em;
}
.wcs-service-card p{
	font-size: 14.5px;
	color: var(--wcs-text-light);
	margin-bottom: 8px;
}
.wcs-service-card a.wcs-readmore{
	font-weight: 700;
	font-size: 13.5px;
	color: var(--wcs-navy);
}
.wcs-service-card a.wcs-readmore:hover{ color: var(--wcs-red); }

/* =========================================================
   6b. DRINGENDE INTERVENTIES (spoedblok, opzettelijk opvallend)
   ========================================================= */
.wcs-emergency{
	background: var(--wcs-red-dark);
	color: #fff;
	padding: 56px 24px;
	scroll-margin-top: 20px;
}
.wcs-emergency-header{
	text-align: center;
	max-width: 640px;
	margin: 0 auto 36px;
}
.wcs-emergency-badge{
	display: inline-block;
	background: rgba(255,255,255,.16);
	color: #fff;
	padding: 6px 16px;
	border-radius: 30px;
	font-size: 12.5px;
	font-weight: 700;
	letter-spacing: .04em;
	text-transform: uppercase;
	margin-bottom: 14px;
}
.wcs-emergency-header h2{ color: #fff; margin-bottom: 8px; }
.wcs-emergency-header p{ color: rgba(255,255,255,.85); margin: 0; }
.wcs-emergency-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-bottom: 36px;
}
.wcs-emergency-card{
	background: rgba(255,255,255,.08);
	border: 1px solid rgba(255,255,255,.18);
	border-radius: var(--wcs-radius);
	padding: 22px;
	text-align: center;
}
.wcs-emergency-icon{
	width: 52px; height: 52px;
	border-radius: 50%;
	background: #fff;
	display: flex; align-items: center; justify-content: center;
	margin: 0 auto 14px;
}
.wcs-emergency-icon svg{ width: 26px; height: 26px; fill: var(--wcs-red-dark); }
.wcs-emergency-icon img{ width: 26px; height: 26px; object-fit: contain; border-radius: 4px; }
.wcs-emergency-card h3{ color: #fff; font-size: 15.5px; margin-bottom: 6px; }
.wcs-emergency-card p{ color: rgba(255,255,255,.82); font-size: 13.5px; margin: 0; }
.wcs-emergency-cta{ text-align: center; }
.wcs-emergency-cta .wcs-btn{ font-size: 16px; padding: 15px 32px; }
.wcs-btn--white{ background: #fff; color: var(--wcs-red-dark); border-color: #fff; }
.wcs-btn--white svg{ width: 18px; height: 18px; fill: var(--wcs-red-dark); }
.wcs-btn--white:hover{ background: rgba(255,255,255,.85); border-color: rgba(255,255,255,.85); color: var(--wcs-red-dark); }

/* =========================================================
   7. TESTIMONIALS
   ========================================================= */
.wcs-testimonials{ padding: 44px 24px 8px; scroll-margin-top: 20px; }
.wcs-testimonials-grid{
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 24px;
}
.wcs-testimonial{
	background: var(--wcs-band-bg);
	border-radius: var(--wcs-radius);
	padding: 24px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
}
.wcs-testimonial blockquote{
	margin: 0 0 16px;
	font-size: 15px;
	font-style: italic;
	color: var(--wcs-text);
	quotes: "\201C" "\201D";
}
.wcs-testimonial blockquote::before{ content: open-quote; color: var(--wcs-red); font-size: 1.4em; }
.wcs-testimonial-author{ display: flex; align-items: center; gap: 12px; }
.wcs-testimonial-author img{
	width: 46px; height: 46px; border-radius: 50%; object-fit: cover;
}
.wcs-testimonial-author strong{ display: block; color: var(--wcs-navy); font-size: 14px; }
.wcs-testimonial-author strong a{ color: inherit; text-decoration: none; }
.wcs-testimonial-author strong a:hover{ color: var(--wcs-red); text-decoration: underline; }
.wcs-testimonial-author span{ font-size: 12.5px; color: var(--wcs-text-light); }

.wcs-testimonial-readmore{
	background: none;
	border: none;
	padding: 0;
	margin-left: 2px;
	font-family: var(--wcs-font-body);
	font-size: 13px;
	font-style: normal;
	font-weight: 700;
	color: var(--wcs-red);
	text-decoration: underline;
	cursor: pointer;
}
.wcs-testimonial-readmore:hover,
.wcs-testimonial-readmore:focus-visible{ color: var(--wcs-red-dark); }

/* "Lees meer" lightbox: one shared dialog for the whole page (see
   wcs_render_testimonial_lightbox() in inc/blocks.php and
   assets/js/testimonial-lightbox.js), not one per card. */
.wcs-testimonial-lightbox[hidden]{ display: none; }
.wcs-testimonial-lightbox{
	position: fixed;
	inset: 0;
	z-index: 1000;
	display: flex;
	align-items: center;
	justify-content: center;
	padding: 24px;
}
.wcs-testimonial-lightbox-backdrop{
	position: absolute;
	inset: 0;
	background: rgba(20, 44, 77, .65);
}
.wcs-testimonial-lightbox-dialog{
	position: relative;
	background: #fff;
	border-radius: var(--wcs-radius);
	padding: 32px;
	width: 100%;
	max-width: 520px;
	max-height: 80vh;
	overflow-y: auto;
	box-shadow: 0 20px 50px rgba(0,0,0,.3);
}
.wcs-testimonial-lightbox-close{
	position: absolute;
	top: 12px;
	right: 12px;
	width: 34px;
	height: 34px;
	border: none;
	border-radius: 50%;
	background: var(--wcs-band-bg);
	color: var(--wcs-navy);
	font-size: 20px;
	line-height: 1;
	cursor: pointer;
}
.wcs-testimonial-lightbox-close:hover,
.wcs-testimonial-lightbox-close:focus-visible{ background: var(--wcs-border); }
.wcs-testimonial-lightbox-quote{
	margin: 0 28px 22px 0;
	font-size: 16.5px;
	font-style: italic;
	color: var(--wcs-text);
	quotes: "\201C" "\201D";
	white-space: pre-line;
}
.wcs-testimonial-lightbox-quote::before{ content: open-quote; color: var(--wcs-red); font-size: 1.4em; }
.wcs-testimonial-lightbox-author{ display: flex; align-items: center; gap: 12px; }
.wcs-testimonial-lightbox-photo{ width: 52px; height: 52px; border-radius: 50%; object-fit: cover; }
.wcs-testimonial-lightbox-photo[hidden]{ display: none; }
.wcs-testimonial-lightbox-author strong{ display: block; color: var(--wcs-navy); font-size: 15px; }
.wcs-testimonial-lightbox-author strong a{ color: inherit; text-decoration: none; }
.wcs-testimonial-lightbox-author strong a:hover{ color: var(--wcs-red); text-decoration: underline; }
.wcs-testimonial-lightbox-role{ font-size: 13px; color: var(--wcs-text-light); }
.wcs-testimonial-lightbox-role[hidden]{ display: none; }

body.wcs-lightbox-open{ overflow: hidden; }

/* =========================================================
   8. GENERIC PAGE HERO (Diensten / Portfolio / Contact)
   ========================================================= */
.wcs-page-hero{
	background: var(--wcs-navy);
	color: #fff;
	padding: 46px 24px;
	text-align: center;
}
.wcs-page-hero h1{ color: #fff; margin-bottom: 8px; }
.wcs-page-hero p{ color: #cfd8e5; margin: 0; }

/* =========================================================
   9. PORTFOLIO SECTION (full grid, on the one-page site)
   ========================================================= */
.wcs-portfolio-page{ padding: 56px 24px; }
.wcs-portfolio-filter{
	display: flex; flex-wrap: wrap; justify-content: center;
	gap: 10px; margin-bottom: 32px;
}
.wcs-portfolio-filter button{
	background: #fff; border: 1px solid var(--wcs-border);
	padding: 8px 18px; border-radius: 30px; font-weight: 600; font-size: 13.5px;
	color: var(--wcs-navy);
}
.wcs-portfolio-filter button.is-active,
.wcs-portfolio-filter button:hover{ background: var(--wcs-navy); border-color: var(--wcs-navy); color: #fff; }
.wcs-portfolio-filter-reset{
	width: 34px; height: 34px; padding: 0;
	border-radius: 50%;
	border-color: var(--wcs-red); color: var(--wcs-red);
	font-size: 18px; line-height: 1;
	display: inline-flex; align-items: center; justify-content: center;
}
.wcs-portfolio-filter-reset:hover{ background: var(--wcs-red); border-color: var(--wcs-red); color: #fff; }
.wcs-portfolio-filter-reset[hidden]{ display: none; }
.wcs-portfolio-grid{
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 16px;
}
.wcs-portfolio-grid figure{
	margin: 0; position: relative; border-radius: 8px; overflow: hidden; aspect-ratio: 4/3;
}
.wcs-portfolio-grid img{ width: 100%; height: 100%; object-fit: cover; transition: transform .3s ease; }
.wcs-portfolio-grid a:hover img{ transform: scale(1.05); }
.wcs-portfolio-grid figcaption{
	position: absolute; left: 0; right: 0; bottom: 0;
	background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.8) 40%, transparent 100%);
	color: #fff; padding: 30px 12px 10px; font-size: 13px; font-weight: 600; line-height: 1.35;
	overflow-wrap: break-word; word-break: break-word;
	/* Two safety nets against a long titel covering (or overflowing) the
	   photo on a narrow mobile card: the titel text itself is already
	   shortened in PHP/JS (wcs_truncate_portfolio_title() /
	   truncateTitle()), and max-height here is a hard pixel cap — reliable
	   even if a title still wraps to more lines than expected, unlike
	   -webkit-line-clamp alone which can leave a sliver of an extra line
	   visible in some browsers. The full title stays available as a
	   native tooltip via [title]. */
	max-height: 78px;
	overflow: hidden;
}

/* Rotating ("willekeurig roteren") portfolio/testimonials: fade the
   container out briefly while its content is swapped for a new random
   selection (see assets/js/rotating-content.js). */
[data-wcs-rotate]{ transition: opacity .3s ease; }
[data-wcs-rotate].wcs-rotating-fade-out{ opacity: 0; }

/* =========================================================
   10. FAQ SECTION (voorbeeld van een toegevoegd blok, anker #faq)
   ========================================================= */
.wcs-faq{ padding: 44px 24px 56px; }
.wcs-faq-list{ max-width: 820px; }
.wcs-faq-item{
	background: var(--wcs-band-bg);
	border-radius: var(--wcs-radius);
	padding: 16px 22px;
	margin-bottom: 12px;
}
.wcs-faq-item summary{
	cursor: pointer;
	font-family: var(--wcs-font-heading);
	font-weight: 700;
	font-size: 15.5px;
	color: var(--wcs-navy);
	list-style: none;
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 12px;
}
.wcs-faq-item summary::-webkit-details-marker{ display: none; }
.wcs-faq-item summary::after{
	content: '+';
	flex: none;
	font-size: 20px;
	line-height: 1;
	color: var(--wcs-red);
}
.wcs-faq-item[open] summary::after{ content: '\2212'; }
.wcs-faq-item p{
	margin: 12px 0 0;
	font-size: 14.5px;
	color: var(--wcs-text-light);
}

/* =========================================================
   10b. TEKSTBLOK (vrij, no-code blok via "Paginablokken")
   ========================================================= */
.wcs-custom-block{ padding: 44px 24px; scroll-margin-top: 20px; }
.wcs-custom-block-inner{ max-width: 860px; margin: 0 auto; }
.wcs-custom-block-image{
	width: 100%;
	border-radius: var(--wcs-radius);
	margin-bottom: 22px;
	display: block;
}
.wcs-custom-block-text{ font-size: 15px; color: var(--wcs-text-light); }
.wcs-custom-block-text p{ margin-bottom: 1em; }

/* =========================================================
   11. CONTACT PAGE
   ========================================================= */
.wcs-contact{ padding: 56px 24px; }
.wcs-contact-inner{
	display: grid;
	grid-template-columns: .9fr 1.1fr;
	gap: 44px;
}
.wcs-contact-info h2{ font-size: 20px; }
.wcs-contact-info ul{ margin: 20px 0; }
.wcs-contact-info li{
	display: flex; gap: 12px; align-items: flex-start;
	margin-bottom: 16px; font-size: 15px;
}
.wcs-contact-info li svg{ flex: none; width: 20px; height: 20px; fill: var(--wcs-red); margin-top: 2px; }
.wcs-contact-map{ border-radius: var(--wcs-radius); overflow: hidden; margin-top: 20px; border: 1px solid var(--wcs-border); }
.wcs-contact-map iframe{ width: 100%; height: 280px; border: 0; display: block; }
.wcs-contact-form{
	background: var(--wcs-band-bg);
	border-radius: var(--wcs-radius);
	padding: 32px;
}
.wcs-contact-form h2{ font-size: 20px; margin-bottom: 4px; }
.wcs-contact-form .wcpb-notice{
	background: #fff4d6; border: 1px solid #f0d78c; color: #6b5613;
	padding: 12px 16px; border-radius: 6px; font-size: 13.5px; margin-top: 14px;
}
.wpcf7 input[type=text], .wpcf7 input[type=email], .wpcf7 input[type=tel], .wpcf7 textarea{
	width: 100%; border: 1px solid var(--wcs-border); border-radius: 6px;
	padding: 12px 14px; font-family: var(--wcs-font-body); font-size: 14.5px; margin-bottom: 14px; background: #fff;
}
.wpcf7 textarea{ min-height: 130px; resize: vertical; }
.wpcf7 input[type=submit]{
	background: var(--wcs-navy); color: #fff; border: 0; border-radius: 6px;
	padding: 13px 28px; font-weight: 700; font-family: var(--wcs-font-heading);
}
.wpcf7 input[type=submit]:hover{ background: var(--wcs-navy-dark); }
.wpcf7-not-valid-tip{ color: var(--wcs-red); font-size: 12.5px; }
.wpcf7-response-output{ border-radius: 6px !important; margin-top: 14px !important; }

/* =========================================================
   11b. TESTIMONIAL-FORMULIER (klanten reviews laten indienen)
   Rendered by the [wcs_testimonial_form] shortcode — see
   inc/testimonial-submissions.php. Placed on its own Pagina by the site
   owner, so it deliberately isn't scoped to any of the one-page sections
   above.
   ========================================================= */
.wcs-testimonial-form-wrap{ max-width: 620px; margin: 0 auto; padding: 32px 24px 56px; }
.wcs-testimonial-form{
	background: var(--wcs-band-bg);
	border-radius: var(--wcs-radius);
	padding: 32px;
}
.wcs-form-field{ margin-bottom: 18px; }
.wcs-form-field label{
	display: block;
	font-family: var(--wcs-font-heading);
	font-weight: 700;
	color: var(--wcs-navy);
	font-size: 14px;
	margin-bottom: 6px;
}
.wcs-required{ color: var(--wcs-red); }
.wcs-form-hint{ display: block; margin-top: 6px; font-size: 12.5px; color: var(--wcs-text-light); }
.wcs-testimonial-form input[type=text],
.wcs-testimonial-form input[type=url],
.wcs-testimonial-form input[type=file],
.wcs-testimonial-form textarea{
	width: 100%;
	border: 1px solid var(--wcs-border);
	border-radius: 6px;
	padding: 12px 14px;
	font-family: var(--wcs-font-body);
	font-size: 14.5px;
	background: #fff;
}
.wcs-testimonial-form textarea{ min-height: 130px; resize: vertical; }
.wcs-testimonial-form input[type=file]{ padding: 8px 10px; }
.wcs-testimonial-form button[type=submit]{ margin-top: 4px; }

/* Honeypot: kept technically visible to naive spam bots that fill in
   every field, but tabindex="-1" + aria-hidden (see the shortcode markup)
   keep it out of the way for real visitors and screen readers. */
.wcs-form-honeypot{
	position: absolute;
	left: -9999px;
	top: -9999px;
	width: 1px;
	height: 1px;
	overflow: hidden;
}

.wcs-form-notice{
	border-radius: 6px;
	padding: 14px 18px;
	font-size: 14.5px;
	margin: 0 0 18px;
}
.wcs-form-notice--success{ background: #e8f6ec; border: 1px solid #b9e3c4; color: #1e6b34; }
.wcs-form-notice--error{ background: #fdecec; border: 1px solid #f3b9b9; color: #9b1c1c; }

/* =========================================================
   12. SINGLE PAGE / GENERIC CONTENT
   ========================================================= */
.wcs-page-content{ padding: 56px 24px; }
.wcs-page-content .wcs-container{ max-width: 860px; }
.wcs-page-content h2{ font-size: 24px; margin-top: 1.4em; }
.wcs-page-content ul, .wcs-page-content ol{ margin: 0 0 1.1em; padding-left: 1.4em; list-style: revert; }
.wcs-page-content--extra{ border-top: 1px solid var(--wcs-border); }
.wcs-page-content--extra h2{ margin-top: 0; }

/* =========================================================
   13. FOOTER
   ========================================================= */
.wcs-site-footer{
	background: var(--wcs-footer-bg);
	color: var(--wcs-footer-text);
	padding: 40px 24px 20px;
}
.wcs-footer-inner{
	display: grid;
	grid-template-columns: 1fr auto 1fr;
	align-items: center;
	gap: 20px;
	padding-bottom: 22px;
}
.wcs-footer-legal a{ color: var(--wcs-footer-text); font-size: 13.5px; opacity: .85; margin-right: 18px; }
.wcs-footer-legal a:hover{ opacity: 1; color: #fff; }
.wcs-footer-brand{ text-align: center; }
.wcs-footer-brand .wcs-footer-site{
	display: block; font-weight: 800; font-family: var(--wcs-font-heading); font-size: 17px; color: #fff;
}
.wcs-footer-brand .wcs-footer-phone{ color: #fff; font-weight: 700; font-size: 15px; }
.wcs-footer-social{ display: flex; justify-content: flex-end; gap: 12px; }
.wcs-footer-social a{
	width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.14);
	display: flex; align-items: center; justify-content: center;
}
.wcs-footer-social svg{ width: 16px; height: 16px; fill: #fff; }
.wcs-footer-social a:hover{ background: rgba(255,255,255,.28); }
.wcs-footer-bottom{
	border-top: 1px solid rgba(255,255,255,.18);
	padding-top: 16px;
	text-align: center;
	font-size: 12.5px;
	opacity: .8;
}

/* =========================================================
   14. WIDGETS / WOOCOMMERCE-STYLE FALLBACKS (basic)
   ========================================================= */
.wcs-comments{ padding: 40px 24px; max-width: 860px; margin: 0 auto; }

/* =========================================================
   15. RESPONSIVE
   ========================================================= */
@media (max-width: 960px){
	.wcs-hero-inner{ grid-template-columns: 1fr; padding: 40px 24px; }
	.wcs-services-grid{ grid-template-columns: repeat(2, 1fr); }
	.wcs-emergency-grid{ grid-template-columns: repeat(2, 1fr); }
	.wcs-testimonials-grid{ grid-template-columns: repeat(2, 1fr); }
	.wcs-portfolio-grid{ grid-template-columns: repeat(3, 1fr); }
	.wcs-contact-inner{ grid-template-columns: 1fr; }
	.wcs-footer-inner{ grid-template-columns: 1fr; text-align: center; }
	.wcs-footer-social{ justify-content: center; }
	.wcs-footer-legal{ text-align: center; }
}
@media (max-width: 700px){
	.wcs-primary-nav{
		position: absolute; top: 100%; left: 0; right: 0;
		background: #fff; border-bottom: 1px solid var(--wcs-border);
		flex-direction: column; align-items: stretch; gap: 0;
		max-height: 0; overflow: hidden; transition: max-height .25s ease;
	}
	.wcs-primary-nav.is-open{ max-height: 80vh; overflow-y: auto; }
	.wcs-primary-nav > ul{ flex-direction: column; align-items: stretch; gap: 0; padding: 8px 24px 18px; }
	.wcs-primary-nav li{ border-bottom: 1px solid var(--wcs-border); flex-wrap: wrap; }
	.wcs-primary-nav a{ display: block; padding: 12px 0; }
	/* Sub-menus become an in-place accordion here instead of a flyout —
	   see the ".sub-menu" + ".wcs-submenu-toggle" rules above, and the
	   min-width:701px query which is where the flyout/hover behaviour
	   lives instead. */
	.sub-menu{
		flex-basis: 100%;
		width: 100%;
		border: 0;
		padding: 0 0 6px 16px;
	}
	.sub-menu li{ border-bottom: 0; }
	.sub-menu a{ padding: 10px 0; }
	.wcs-submenu-toggle{ padding: 12px 6px; }
	.wcs-header-actions .wcs-btn,
	.wcs-header-phone{ display: none; }
	.wcs-menu-toggle{ display: block; }
	.wcs-services-grid{ grid-template-columns: 1fr; }
	.wcs-emergency-grid{ grid-template-columns: 1fr; }
	.wcs-testimonials-grid{ grid-template-columns: 1fr; }
	.wcs-hero-highlights{ grid-template-columns: 1fr; }
	.wcs-portfolio-grid{ grid-template-columns: repeat(2, 1fr); }
	.wcs-portfolio-grid figcaption{ font-size: 12px; padding: 24px 10px 8px; max-height: 68px; }
}
@media (max-width: 480px){
	/* Two columns leaves each portfolio-foto too narrow on a phone for a
	   titel to fit — switch to one column so there's enough room for both
	   foto and titel to stay clearly visible. */
	.wcs-portfolio-grid{ grid-template-columns: 1fr; }
}
