/*
Theme Name: VVR Theme
Description: Custom theme voor Vereniging Vrouw en Recht.
Author: Santi
Version: 0.1.0
Requires at least: 6.4
Requires PHP: 7.4
Text Domain: vvr-theme
*/

/* ---------------------------------------------------
   Lettertypes — zelf gehost (geen verzoeken naar Google)
   Variabele fonts, Latin-subset, dekt NL-diakrieten (ë, ï, ö, ü).
   Jost = koppen, Lora = lopende tekst, Source Sans 3 = UI
   (navigatie, knoppen, labels, formuliervelden).
--------------------------------------------------- */
@font-face {
	font-family: "Source Sans 3";
	font-style: normal;
	font-weight: 200 900;
	font-display: swap;
	src: url("assets/fonts/source-sans-3-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Source Sans 3";
	font-style: italic;
	font-weight: 200 900;
	font-display: swap;
	src: url("assets/fonts/source-sans-3-italic-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Jost";
	font-style: normal;
	font-weight: 100 900;
	font-display: swap;
	src: url("assets/fonts/jost-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Jost";
	font-style: italic;
	font-weight: 100 900;
	font-display: swap;
	src: url("assets/fonts/jost-italic-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Lora";
	font-style: normal;
	font-weight: 400 700;
	font-display: swap;
	src: url("assets/fonts/lora-latin.woff2") format("woff2");
}

@font-face {
	font-family: "Lora";
	font-style: italic;
	font-weight: 400 700;
	font-display: swap;
	src: url("assets/fonts/lora-italic-latin.woff2") format("woff2");
}

/* ---------------------------------------------------
   Tokens — huisstijl. Kleuren zijn nog placeholders tot
   definitieve huisstijl van Studio Elène Hulleman binnen
   is; lettertypes staan vast (Jost voor koppen, Lora voor
   lopende tekst, Source Sans 3 voor UI-elementen).
--------------------------------------------------- */
:root {
	--vvr-color-bg: #faf9f5;
	--vvr-color-text: #21232b;
	--vvr-color-muted: #6b6f76;
	--vvr-color-accent: #c1642f;
	--vvr-color-border: #e3e0d6;
	--vvr-font-heading: "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
	--vvr-font-body: "Lora", Georgia, "Times New Roman", serif;
	--vvr-font-sans: "Source Sans 3", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

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

body {
	margin: 0;
	min-height: 100vh;
	display: flex;
	flex-direction: column;
	background: var(--vvr-color-bg);
	color: var(--vvr-color-text);
	font-family: var(--vvr-font-sans);
	line-height: 1.5;
}

.site-main {
	flex: 1 0 auto;
}

.site-footer {
	flex-shrink: 0;
}

img {
	max-width: 100%;
	height: auto;
}

a {
	color: var(--vvr-color-accent);
}

/* Lopende tekst (alinea's) — los van de UI-tekst (nav, knoppen, labels,
   formulieren), die in --vvr-font-sans blijft staan. */
p {
	font-family: var(--vvr-font-body);
	line-height: 1.65;
}

@media (min-width: 900px) {
	p {
		font-size: 1.125rem;
	}
}

.vvr-container,
.site-main {
	width: 100%;
	padding-inline: clamp(20px, 4vw, 60px);
}

.screen-reader-text {
	position: absolute;
	width: 1px;
	height: 1px;
	margin: -1px;
	padding: 0;
	overflow: hidden;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
	border: 0;
}

/* ---------------------------------------------------
   Utility bar
--------------------------------------------------- */
.vvr-utility-bar {
	padding-block: 12px;
	border-bottom: 1px solid var(--vvr-color-border);
}

/* Op desktop een extra buitenrand zodat de lijnen rond het menu niet
   helemaal doorlopen tot de vensterrand. */
@media (min-width: 900px) {
	.vvr-utility-bar,
	.site-header {
		margin-inline: clamp(16px, 2vw, 32px);
	}
}

.vvr-utility-menu {
	list-style: none;
	display: flex;
	justify-content: flex-end;
	gap: 24px;
	margin: 0;
	padding: 0;
	font-size: 0.875rem;
}

.vvr-utility-menu a {
	color: var(--vvr-color-accent);
	text-decoration: none;
}

.vvr-utility-menu a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------
   Header
--------------------------------------------------- */
.site-header {
	border-bottom: 3px solid var(--vvr-color-accent);
	padding-block: 20px;
}

.vvr-header-inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	gap: 32px;
	flex-wrap: wrap;
}

.site-branding {
	display: flex;
	align-items: center;
	gap: 14px;
	text-decoration: none;
	color: inherit;
}

.site-logo-mark {
	width: 40px;
	height: 40px;
	border-radius: 50%;
	background: linear-gradient(90deg, var(--vvr-color-accent) 50%, var(--vvr-color-text) 50%);
	flex-shrink: 0;
}

.site-branding-text {
	display: flex;
	flex-direction: column;
}

.site-title {
	font-family: var(--vvr-font-heading);
	font-weight: 700;
	font-size: 1.5rem;
	color: var(--vvr-color-text);
}

.site-tagline {
	font-size: 0.85rem;
	color: var(--vvr-color-muted);
}

.vvr-primary-menu,
.vvr-primary-menu ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vvr-primary-menu {
	display: flex;
	flex-wrap: wrap;
	gap: 28px;
}

.vvr-primary-menu li {
	position: relative;
}

.vvr-primary-menu > li > a {
	display: inline-block;
	text-decoration: none;
	color: var(--vvr-color-text);
	font-weight: 500;
	padding-bottom: 6px;
	border-bottom: 2px solid transparent;
}

.vvr-primary-menu > li > a:hover,
.vvr-primary-menu > li.current-menu-item > a,
.vvr-primary-menu > li.current-menu-ancestor > a {
	color: var(--vvr-color-accent);
	border-bottom-color: var(--vvr-color-accent);
}

.vvr-primary-menu .sub-menu {
	display: none;
	position: absolute;
	top: 100%;
	left: 0;
	z-index: 20;
	min-width: 240px;
	background: var(--vvr-color-bg);
	border: 1px solid var(--vvr-color-border);
	box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
	padding: 6px 0;
}

.vvr-primary-menu .sub-menu .sub-menu {
	top: -7px;
	left: 100%;
}

/* Falls off the right edge of the viewport — JS (site.js) adds this class. */
.vvr-primary-menu > li > .sub-menu.align-right {
	left: auto;
	right: 0;
}

.vvr-primary-menu .sub-menu .sub-menu.align-right {
	left: auto;
	right: 100%;
}

.vvr-primary-menu li:hover > .sub-menu,
.vvr-primary-menu li:focus-within > .sub-menu {
	display: block;
}

.vvr-primary-menu .sub-menu a {
	display: block;
	padding: 8px 18px;
	white-space: nowrap;
	text-decoration: none;
	color: var(--vvr-color-text);
}

.vvr-primary-menu .sub-menu a:hover {
	color: var(--vvr-color-accent);
	background: var(--vvr-color-border);
}

/* ---------------------------------------------------
   Mobiel menu
--------------------------------------------------- */
.mobile-menu-toggle {
	display: none;
	align-items: center;
	justify-content: center;
	width: 44px;
	height: 44px;
	padding: 0;
	margin-left: auto;
	border: none;
	background: transparent;
	cursor: pointer;
	flex-shrink: 0;
}

.mobile-menu-toggle-bars,
.mobile-menu-toggle-bars::before,
.mobile-menu-toggle-bars::after {
	display: block;
	width: 24px;
	height: 2px;
	background: var(--vvr-color-text);
	border-radius: 2px;
	transition: transform 0.15s ease, opacity 0.15s ease, top 0.15s ease;
}

.mobile-menu-toggle-bars {
	position: relative;
}

.mobile-menu-toggle-bars::before,
.mobile-menu-toggle-bars::after {
	content: "";
	position: absolute;
	left: 0;
}

.mobile-menu-toggle-bars::before {
	top: -7px;
}

.mobile-menu-toggle-bars::after {
	top: 7px;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-bars {
	background: transparent;
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-bars::before {
	top: 0;
	transform: rotate(45deg);
}

.mobile-menu-toggle[aria-expanded="true"] .mobile-menu-toggle-bars::after {
	top: 0;
	transform: rotate(-45deg);
}

.mobile-menu {
	display: none;
}

@media (max-width: 899px) {
	.vvr-utility-bar {
		display: none;
	}

	.primary-nav {
		display: none;
	}

	.mobile-menu-toggle {
		display: inline-flex;
	}

	.vvr-header-inner {
		flex-wrap: nowrap;
	}

	body.mobile-menu-open {
		overflow: hidden;
	}

	.mobile-menu {
		display: block;
		position: relative;
		z-index: 30;
		background: var(--vvr-color-bg);
		border-bottom: 3px solid var(--vvr-color-accent);
		box-shadow: 0 16px 24px rgba(0, 0, 0, 0.1);
		max-height: 80vh;
		overflow-y: auto;
	}

	.mobile-menu[hidden] {
		display: none;
	}

	.mobile-menu-inner {
		display: flex;
		flex-direction: column;
		padding-block: 12px 24px;
	}

	.mobile-primary-menu,
	.mobile-primary-menu ul {
		list-style: none;
		margin: 0;
		padding: 0;
	}

	.mobile-primary-menu > li {
		border-bottom: 1px solid var(--vvr-color-border);
	}

	.mobile-primary-menu li {
		position: relative;
	}

	.mobile-primary-menu > li > a {
		display: block;
		padding: 14px 6px;
		text-decoration: none;
		color: var(--vvr-color-text);
		font-family: var(--vvr-font-heading);
		font-size: 1.15rem;
		font-weight: 600;
	}

	.mobile-primary-menu > li.current-menu-item > a,
	.mobile-primary-menu > li.current-menu-ancestor > a {
		color: var(--vvr-color-accent);
	}

	.mobile-primary-menu .sub-menu {
		display: none;
		list-style: none;
		margin: 0 0 8px;
		padding: 0;
	}

	.mobile-primary-menu li.submenu-open > .sub-menu {
		display: block;
	}

	.mobile-primary-menu .sub-menu a {
		display: block;
		padding: 10px 6px 10px 22px;
		text-decoration: none;
		color: var(--vvr-color-text);
		font-family: var(--vvr-font-sans);
		font-size: 0.98rem;
	}

	.mobile-primary-menu .sub-menu a:hover {
		color: var(--vvr-color-accent);
	}

	.submenu-toggle {
		position: absolute;
		top: 0;
		right: 0;
		width: 48px;
		height: 48px;
		border: none;
		background: transparent;
		cursor: pointer;
	}

	.submenu-toggle::after {
		content: "";
		display: block;
		width: 9px;
		height: 9px;
		margin: 0 auto;
		border-right: 2px solid var(--vvr-color-text);
		border-bottom: 2px solid var(--vvr-color-text);
		transform: rotate(45deg);
		transition: transform 0.15s ease;
	}

	li.submenu-open > .submenu-toggle::after {
		transform: rotate(-135deg);
	}

	.mobile-menu-utility {
		margin-top: 12px;
		padding-top: 16px;
		border-top: 1px solid var(--vvr-color-border);
	}

	.mobile-utility-menu {
		list-style: none;
		display: flex;
		flex-wrap: wrap;
		gap: 8px 20px;
		margin: 0;
		padding: 0 6px;
		font-size: 0.9rem;
	}

	.mobile-utility-menu a {
		color: var(--vvr-color-accent);
		text-decoration: none;
	}

	.mobile-utility-menu a:hover {
		text-decoration: underline;
	}
}

/* ---------------------------------------------------
   Generieke content-pagina koppen (jurisprudentie, etc.)
--------------------------------------------------- */
.site-main h1 {
	font-family: var(--vvr-font-heading);
	font-size: 2rem;
	margin: 24px 0 16px;
}

/* Evenementen-archief (/event/) — titels kleiner, niet onderstreept, zwart. */
.vvr-event-archive h2 {
	font-size: 1.25rem;
	margin: 0 0 8px;
}

.vvr-event-archive h2 a {
	color: var(--vvr-color-text);
	text-decoration: none;
}

.vvr-event-archive h2 a:hover {
	text-decoration: underline;
}

.vvr-event-archive article {
	padding-block: 24px;
	border-bottom: 1px solid var(--vvr-color-border);
}

.vvr-event-archive article:first-child {
	padding-top: 0;
}

.vvr-event-archive article:last-child {
	border-bottom: none;
}

.vvr-event-archive .pagination,
.vvr-posts-archive .pagination {
	margin-top: 20px;
}

.vvr-event-archive .pagination,
.vvr-posts-archive .pagination .nav-links {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	gap: 8px;
}

.vvr-event-archive .pagination,
.vvr-posts-archive .pagination .page-numbers {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-width: 38px;
	height: 38px;
	padding: 0 12px;
	border: 1px solid var(--vvr-color-border);
	border-radius: 999px;
	font-family: var(--vvr-font-sans);
	font-size: 0.9rem;
	color: var(--vvr-color-text);
	text-decoration: none;
	transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.vvr-event-archive .pagination,
.vvr-posts-archive .pagination a.page-numbers:hover {
	border-color: var(--vvr-color-accent);
	color: var(--vvr-color-accent);
}

.vvr-event-archive .pagination,
.vvr-posts-archive .pagination .page-numbers.current {
	background: var(--vvr-color-accent);
	border-color: var(--vvr-color-accent);
	color: #fff;
}

.vvr-event-archive .pagination,
.vvr-posts-archive .pagination .page-numbers.dots {
	border-color: transparent;
}

.vvr-event-archive .pagination,
.vvr-posts-archive .pagination .page-numbers.prev,
.vvr-event-archive .pagination,
.vvr-posts-archive .pagination .page-numbers.next {
	padding: 0 18px;
}

/* Content-pagina's (gewone WP-pagina's en berichten) niet edge-to-edge
   laten doorlopen op brede schermen — houdt regels leesbaar. */
@media (min-width: 900px) {
	.vvr-content-article {
		max-width: 66%;
	}
}

.vvr-breadcrumb {
	padding-top: 24px;
	font-size: 0.9rem;
	color: var(--vvr-color-muted);
}

.vvr-breadcrumb a {
	color: var(--vvr-color-accent);
	text-decoration: none;
}

.vvr-breadcrumb a:hover {
	text-decoration: underline;
}

.vvr-breadcrumb-sep {
	margin: 0 6px;
}

/* ---------------------------------------------------
   Over ons (met inhoudsopgave en zie-ook)
--------------------------------------------------- */
.vvr-about-layout {
	display: grid;
	grid-template-columns: minmax(0, 1fr) 300px;
	gap: 60px;
	padding-bottom: 60px;
}

@media (max-width: 800px) {
	.vvr-about-layout {
		grid-template-columns: 1fr;
	}
}

.vvr-about-content {
	max-width: 75ch;
}

.vvr-about-content h2 {
	font-family: var(--vvr-font-heading);
	font-size: 1.5rem;
	line-height: 1.3;
	margin: 40px 0 16px;
	scroll-margin-top: 20px;
}

.vvr-about-content h2:first-child {
	margin-top: 0;
}

.vvr-about-content p {
	line-height: 1.65;
	margin: 0 0 18px;
}

.vvr-about-content blockquote {
	margin: 28px 0;
	padding: 4px 0 4px 22px;
	border-left: 3px solid var(--vvr-color-accent);
	font-family: var(--vvr-font-heading);
	font-style: italic;
	font-size: 1.1rem;
	line-height: 1.5;
	color: var(--vvr-color-text);
}

.vvr-about-content blockquote p {
	font-family: inherit;
	font-style: inherit;
	font-size: inherit;
	line-height: inherit;
}

.vvr-about-content blockquote p:last-child {
	margin-bottom: 0;
}

.vvr-page-sidebar {
	display: flex;
	flex-direction: column;
	gap: 20px;
	align-content: start;
	position: sticky;
	top: 24px;
	align-self: start;
}

.vvr-sidebar-box {
	background: #fffdf9;
	border: 1px solid var(--vvr-color-border);
	border-radius: 10px;
	padding: 22px 24px;
}

.vvr-sidebar-box-title {
	font-family: var(--vvr-font-heading);
	font-weight: 700;
	font-size: 1.05rem;
	margin: 0 0 14px;
}

.vvr-sidebar-box ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vvr-sidebar-box a {
	color: var(--vvr-color-accent);
	text-decoration: none;
	font-size: 0.95rem;
}

.vvr-sidebar-box a:hover {
	text-decoration: underline;
}

/* ---------------------------------------------------
   Jurisprudentie lijst met filters
--------------------------------------------------- */
.vvr-juris-intro {
	max-width: 75ch;
	margin-bottom: 28px;
}

.vvr-juris-filters {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	gap: 12px;
	margin-bottom: 20px;
}

.vvr-juris-search-group {
	display: flex;
	flex-direction: column;
	gap: 6px;
	flex: 0 1 340px;
	min-width: 0;
}

.vvr-juris-filters input[type="search"],
.vvr-juris-filters select {
	box-sizing: border-box;
	height: 42px;
	border: 1px solid var(--vvr-color-border);
	border-radius: 6px;
	background-color: var(--vvr-color-bg);
	font-family: var(--vvr-font-sans);
	font-size: 0.95rem;
	line-height: 1.2;
	vertical-align: middle;
}

.vvr-juris-filters input[type="search"] {
	width: 100%;
	min-width: 0;
	padding: 0 14px 0 40px;
	background-repeat: no-repeat;
	background-position: left 14px center;
	background-size: 15px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Ccircle cx='9' cy='9' r='6' stroke='%236b6f76' stroke-width='1.6' fill='none'/%3E%3Cline x1='13.5' y1='13.5' x2='18' y2='18' stroke='%236b6f76' stroke-width='1.6' stroke-linecap='round'/%3E%3C/svg%3E");
}

.vvr-juris-filters select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding: 0 40px 0 14px;
	background-repeat: no-repeat;
	background-position: right 14px center;
	background-size: 12px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5l3.5 3.5 3.5-3.5' stroke='%2321232b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
	flex-shrink: 0;
}

.vvr-juris-reset {
	display: none;
	align-items: center;
	justify-content: center;
	flex-shrink: 0;
	height: 42px;
	padding: 0 18px;
	border-radius: 6px;
	border: 1px solid var(--vvr-color-border);
	background: transparent;
	color: var(--vvr-color-text);
	font-family: var(--vvr-font-sans);
	font-size: 0.9rem;
	font-weight: 500;
	line-height: 1;
	white-space: nowrap;
	text-decoration: none;
	cursor: pointer;
}

.vvr-juris-reset.is-active {
	display: inline-flex;
}

.vvr-juris-reset:hover {
	border-color: var(--vvr-color-accent);
	color: var(--vvr-color-accent);
}

.vvr-juris-table-wrap {
	overflow-x: auto;
	margin-bottom: 40px;
}

.vvr-juris-table {
	width: 100%;
	border-collapse: collapse;
}

.vvr-juris-table th {
	text-align: left;
	font-size: 0.9rem;
	padding: 10px 12px;
	border-bottom: 2px solid var(--vvr-color-text);
	white-space: nowrap;
}

.vvr-juris-table th:first-child,
.vvr-juris-table td:first-child {
	width: 1%;
	white-space: nowrap;
}

.vvr-juris-table th a {
	color: var(--vvr-color-text);
	text-decoration: none;
}

.vvr-juris-table td {
	padding: 14px 12px;
	border-bottom: 1px solid var(--vvr-color-border);
	vertical-align: top;
	font-size: 0.95rem;
}

.vvr-juris-table td a {
	color: var(--vvr-color-accent);
	text-decoration: none;
}

.vvr-juris-table td a:hover {
	text-decoration: underline;
}

.vvr-juris-badge {
	display: inline-block;
	border: 1px solid var(--vvr-color-accent);
	color: var(--vvr-color-accent);
	border-radius: 4px;
	padding: 2px 8px;
	font-size: 0.7rem;
	font-weight: 600;
	letter-spacing: 0.03em;
	white-space: nowrap;
	margin: 2px 4px 2px 0;
}

.vvr-chip-filters {
	display: flex;
	flex-wrap: wrap;
	gap: 10px;
	margin-bottom: 24px;
}

.vvr-chip {
	appearance: none;
	cursor: pointer;
	background: var(--vvr-color-bg);
	border: 1px solid var(--vvr-color-border);
	color: var(--vvr-color-text);
	border-radius: 999px;
	padding: 8px 18px;
	font-family: var(--vvr-font-sans);
	font-size: 0.9rem;
	font-weight: 500;
}

.vvr-chip:hover {
	border-color: var(--vvr-color-accent);
}

.vvr-chip.is-active {
	background: var(--vvr-color-text);
	border-color: var(--vvr-color-text);
	color: var(--vvr-color-bg);
}

/* ---------------------------------------------------
   Contactpagina
--------------------------------------------------- */
.vvr-contact-intro {
	max-width: 65ch;
	margin-bottom: 36px;
}

.vvr-contact-layout {
	display: flex;
	flex-wrap: wrap;
	align-items: start;
	gap: 56px;
	margin-bottom: 48px;
}

.vvr-contact-form {
	flex: 0 1 420px;
	min-width: 0;
}

.vvr-contact-sidebar {
	flex: 0 1 300px;
	min-width: 240px;
	padding-top: 6px;
}

.vvr-contact-sidebar h2 {
	font-family: var(--vvr-font-heading);
	font-size: 1.3rem;
	margin: 0 0 14px;
	padding-bottom: 14px;
	border-bottom: 2px solid var(--vvr-color-text);
}

.vvr-contact-address {
	margin: 0;
	line-height: 1.9;
	color: var(--vvr-color-text);
}

/* Kaart om het formulier — het tweekleurige streepje bovenaan verwijst
   naar het gespleten logomerk in de header. */
.vvr-gform-card {
	position: relative;
	background: #fffdf9;
	border: 1px solid var(--vvr-color-border);
	border-radius: 10px;
	padding: 34px 30px 26px;
	overflow: hidden;
}

.vvr-gform-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vvr-color-accent) 50%, var(--vvr-color-text) 50%);
}

.gform_required_legend {
	display: none;
}

.vvr-gform-card .gform_wrapper.gravity-theme .gfield {
	margin-bottom: 18px;
}

.vvr-gform-card .gform_wrapper.gravity-theme .gfield_label,
.vvr-gform-card .gform_wrapper.gravity-theme .gform-field-label {
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--vvr-color-muted);
	margin-bottom: 7px;
}

.vvr-gform-card .gform_wrapper.gravity-theme .gfield_required_asterisk {
	color: var(--vvr-color-accent);
}

.vvr-gform-card .gform_wrapper.gravity-theme input[type="text"],
.vvr-gform-card .gform_wrapper.gravity-theme input[type="email"],
.vvr-gform-card .gform_wrapper.gravity-theme input[type="tel"],
.vvr-gform-card .gform_wrapper.gravity-theme input[type="url"],
.vvr-gform-card .gform_wrapper.gravity-theme select,
.vvr-gform-card .gform_wrapper.gravity-theme textarea {
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-bottom: 1px solid var(--vvr-color-border);
	border-radius: 0;
	background: transparent;
	font-family: var(--vvr-font-sans);
	font-size: 0.95rem;
	color: var(--vvr-color-text);
	padding: 7px 2px;
	transition: border-color 0.15s ease;
}

.vvr-gform-card .gform_wrapper.gravity-theme select {
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	padding-right: 20px;
	background-repeat: no-repeat;
	background-position: right 2px center;
	background-size: 11px;
	background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2.5 4.5l3.5 3.5 3.5-3.5' stroke='%2321232b' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.vvr-gform-card .gform_wrapper.gravity-theme textarea {
	resize: vertical;
	min-height: 90px;
}

.vvr-gform-card .gform_wrapper.gravity-theme input[type="text"]:focus,
.vvr-gform-card .gform_wrapper.gravity-theme input[type="email"]:focus,
.vvr-gform-card .gform_wrapper.gravity-theme select:focus,
.vvr-gform-card .gform_wrapper.gravity-theme textarea:focus {
	outline: none;
	border-color: var(--vvr-color-accent);
}

.vvr-gform-card .gform_wrapper.gravity-theme .gform_footer {
	margin-top: 6px;
}

.vvr-gform-card .gform_wrapper.gravity-theme .gform_button.button {
	appearance: none;
	border: none;
	border-radius: 6px;
	background: var(--vvr-color-text);
	color: #fff;
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.88rem;
	padding: 11px 24px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.vvr-gform-card .gform_wrapper.gravity-theme .gform_button.button:hover {
	background: var(--vvr-color-accent);
}

/* ---------------------------------------------------
   Profiel (front-end profielformulier)
--------------------------------------------------- */
.vvr-profile-card {
	position: relative;
	max-width: 640px;
	background: #fffdf9;
	border: 1px solid var(--vvr-color-border);
	border-radius: 10px;
	padding: 34px 30px 26px;
	overflow: hidden;
}

.vvr-profile-card::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vvr-color-accent) 50%, var(--vvr-color-text) 50%);
}

.vvr-profile-notice {
	border-radius: 6px;
	padding: 12px 16px;
	margin: 0 0 18px;
	font-size: 0.9rem;
}

.vvr-profile-notice ul {
	margin: 0;
	padding-left: 18px;
}

.vvr-profile-notice--success {
	background: #eef6ec;
	color: #2c5c2a;
}

.vvr-profile-notice--error {
	background: #fbeceb;
	color: #8a2c25;
}

.vvr-profile-field {
	margin-bottom: 18px;
}

.vvr-profile-field label {
	display: block;
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--vvr-color-muted);
	margin-bottom: 7px;
}

.vvr-profile-field input[type="text"],
.vvr-profile-field input[type="email"],
.vvr-profile-field input[type="url"],
.vvr-profile-field input[type="password"],
.vvr-profile-field textarea {
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-bottom: 1px solid var(--vvr-color-border);
	border-radius: 0;
	background: transparent;
	font-family: var(--vvr-font-sans);
	font-size: 0.95rem;
	color: var(--vvr-color-text);
	padding: 7px 2px;
	transition: border-color 0.15s ease;
}

.vvr-profile-field textarea {
	resize: vertical;
}

.vvr-profile-field input[type="text"]:focus,
.vvr-profile-field input[type="email"]:focus,
.vvr-profile-field input[type="url"]:focus,
.vvr-profile-field input[type="password"]:focus,
.vvr-profile-field textarea:focus {
	outline: none;
	border-color: var(--vvr-color-accent);
}

.vvr-profile-field-hint {
	margin: 8px 0 0;
	font-size: 0.82rem;
	color: var(--vvr-color-muted);
}

.vvr-profile-field-row {
	display: flex;
	gap: 20px;
}

.vvr-profile-field-row .vvr-profile-field {
	flex: 1;
	min-width: 0;
}

.vvr-profile-checklist {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 10px;
}

.vvr-profile-checklist label {
	display: flex;
	align-items: center;
	gap: 9px;
	font-size: 0.92rem;
	color: var(--vvr-color-text);
	cursor: pointer;
}

.vvr-profile-checklist input[type="checkbox"] {
	flex-shrink: 0;
	width: 16px;
	height: 16px;
	accent-color: var(--vvr-color-accent);
}

.vvr-profile-field-group {
	margin: 26px 0 18px;
	padding-top: 18px;
	border-top: 1px solid var(--vvr-color-border);
}

@media (max-width: 560px) {
	.vvr-profile-field-row {
		flex-direction: column;
		gap: 0;
	}
}

.vvr-profile-field-group-title {
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.85rem;
	color: var(--vvr-color-text);
	margin: 0 0 16px;
}

.vvr-profile-submit {
	appearance: none;
	border: none;
	border-radius: 6px;
	background: var(--vvr-color-text);
	color: #fff;
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.88rem;
	padding: 11px 24px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.vvr-profile-submit:hover {
	background: var(--vvr-color-accent);
}

@media (max-width: 560px) {
	.vvr-profile-card {
		padding: 28px 20px 22px;
	}
}

@media (max-width: 560px) {
	.vvr-gform-card {
		padding: 28px 20px 22px;
	}
}

/* ---------------------------------------------------
   Theme My Login (login, wachtwoord kwijt, reset, etc.)
   .tml is de vaste wrapper-class die TML zelf uitvoert op
   elke actiepagina — dus dit stylet ze allemaal in één keer.
--------------------------------------------------- */
.tml {
	position: relative;
	max-width: 480px;
	background: #fffdf9;
	border: 1px solid var(--vvr-color-border);
	border-radius: 10px;
	padding: 34px 30px 26px;
	overflow: hidden;
	margin-top: 8px;
}

.tml::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vvr-color-accent) 50%, var(--vvr-color-text) 50%);
}

.tml-alerts:empty {
	display: none;
}

.tml-errors,
.tml-messages {
	list-style: none;
	margin: 0 0 20px;
	padding: 12px 16px;
	border-radius: 6px;
	font-size: 0.9rem;
}

.tml-errors {
	background: #fbeceb;
	color: #8a2c25;
}

.tml-messages {
	background: #eef6ec;
	color: #2c5c2a;
}

p.tml-message {
	margin: 0 0 22px;
	font-size: 0.92rem;
	color: var(--vvr-color-muted);
	line-height: 1.5;
}

.tml-field-wrap {
	margin-bottom: 18px;
}

.tml-label {
	display: block;
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--vvr-color-muted);
	margin-bottom: 7px;
}

.tml-field {
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-bottom: 1px solid var(--vvr-color-border);
	border-radius: 0;
	background: transparent;
	font-family: var(--vvr-font-sans);
	font-size: 0.95rem;
	color: var(--vvr-color-text);
	padding: 7px 2px;
	transition: border-color 0.15s ease;
}

.tml-field:focus {
	outline: none;
	border-color: var(--vvr-color-accent);
}

.tml-field-wrap span.tml-error {
	display: block;
	margin-top: 6px;
	font-size: 0.82rem;
	color: #b3362c;
}

.tml-checkbox-wrap label {
	display: flex;
	align-items: center;
	gap: 8px;
	font-size: 0.9rem;
	color: var(--vvr-color-text);
	cursor: pointer;
}

.tml-submit-wrap {
	margin-top: 24px;
}

.tml-button {
	appearance: none;
	border: none;
	border-radius: 6px;
	background: var(--vvr-color-text);
	color: #fff;
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.88rem;
	padding: 11px 24px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.tml-button:hover {
	background: var(--vvr-color-accent);
}

.tml-links {
	list-style: none;
	margin: 20px 0 0;
	padding-top: 16px;
	border-top: 1px solid var(--vvr-color-border);
	display: flex;
	flex-wrap: wrap;
	gap: 16px;
	font-size: 0.9rem;
}

.tml-links a {
	color: var(--vvr-color-accent);
	text-decoration: none;
}

.tml-links a:hover {
	text-decoration: underline;
}

#pass-strength-result {
	display: inline-block;
	margin-top: 8px;
	font-size: 0.82rem;
	padding: 5px 10px;
	border-radius: 4px;
	background: var(--vvr-color-border);
	color: var(--vvr-color-muted);
}

.indicator-hint {
	margin-top: 8px;
	font-size: 0.82rem;
	color: var(--vvr-color-muted);
}

@media (max-width: 560px) {
	.tml {
		padding: 28px 20px 22px;
	}
}

/* ---------------------------------------------------
   Stuur een bericht aan (mailtomember-plugin)
   De plugin drukt kale HTML af (labels/inputs met <br>'s,
   geen klassen op velden) — dit stylet het element-based.
--------------------------------------------------- */
.vvr-mtm-page form {
	position: relative;
	max-width: 480px;
	background: #fffdf9;
	border: 1px solid var(--vvr-color-border);
	border-radius: 10px;
	padding: 34px 30px 26px;
	overflow: hidden;
	margin-top: 8px;
}

.vvr-mtm-page form::before {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	height: 4px;
	background: linear-gradient(90deg, var(--vvr-color-accent) 50%, var(--vvr-color-text) 50%);
}

.vvr-mtm-page form h2 {
	font-family: var(--vvr-font-heading);
	font-size: 1.3rem;
	margin: 0 0 22px;
}

.vvr-mtm-page form br {
	display: none;
}

.vvr-mtm-page form label {
	display: block;
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.7rem;
	letter-spacing: 0.07em;
	text-transform: uppercase;
	color: var(--vvr-color-muted);
	margin: 0 0 7px;
}

.vvr-mtm-page form input[type="text"],
.vvr-mtm-page form textarea {
	display: block;
	width: 100%;
	box-sizing: border-box;
	border: none;
	border-bottom: 1px solid var(--vvr-color-border);
	border-radius: 0;
	background: transparent;
	font-family: var(--vvr-font-sans);
	font-size: 0.95rem;
	color: var(--vvr-color-text);
	padding: 7px 2px;
	margin-bottom: 18px;
	transition: border-color 0.15s ease;
}

.vvr-mtm-page form textarea {
	resize: vertical;
	min-height: 120px;
}

.vvr-mtm-page form input[type="text"]:focus,
.vvr-mtm-page form textarea:focus {
	outline: none;
	border-color: var(--vvr-color-accent);
}

.vvr-mtm-page form .mtm-error {
	display: block;
	margin: -12px 0 18px;
	font-size: 0.82rem;
	color: #b3362c;
}

.vvr-mtm-page form button[type="submit"] {
	appearance: none;
	border: none;
	border-radius: 6px;
	background: var(--vvr-color-text);
	color: #fff;
	font-family: var(--vvr-font-sans);
	font-weight: 600;
	font-size: 0.88rem;
	padding: 11px 24px;
	cursor: pointer;
	transition: background-color 0.15s ease;
}

.vvr-mtm-page form button[type="submit"]:hover {
	background: var(--vvr-color-accent);
}

@media (max-width: 560px) {
	.vvr-mtm-page form {
		padding: 28px 20px 22px;
	}
}

/* ---------------------------------------------------
   Hero
--------------------------------------------------- */
.hero {
	padding-block: 56px 40px;
}

.hero h1 {
	font-family: var(--vvr-font-heading);
	font-size: 2.5rem;
	line-height: 1.2;
	max-width: 22ch;
	margin: 0 0 20px;
}

.hero p {
	font-size: 1.05rem;
	color: var(--vvr-color-text);
	max-width: 60ch;
	line-height: 1.6;
}

.hero .wp-block-button {
	margin-top: 12px;
}

.hero .wp-block-button__link,
.wp-block-button__link {
	display: inline-flex;
	align-items: center;
	gap: 8px;
	background-color: var(--vvr-color-accent);
	color: var(--vvr-color-bg);
	border-radius: 999px;
	padding: 10px 26px;
	font-family: var(--vvr-font-sans);
	font-weight: 500;
	font-size: 0.95rem;
	text-decoration: none;
	border: none;
	transition: background-color 0.15s ease;
}

.hero .wp-block-button__link::after,
.wp-block-button__link::after {
	content: "\2192";
}

.hero .wp-block-button__link:hover,
.wp-block-button__link:hover {
	background-color: var(--vvr-color-text);
	color: var(--vvr-color-bg);
}

.vvr-divider {
	border: none;
	border-top: 1px solid var(--vvr-color-border);
	margin: 0 0 40px;
}

/* ---------------------------------------------------
   Home columns (Nieuws / Agenda)
--------------------------------------------------- */
.home-columns {
	display: grid;
	grid-template-columns: 2fr 1fr;
	gap: 60px;
	padding-bottom: 60px;
}

@media (max-width: 800px) {
	.home-columns {
		grid-template-columns: 1fr;
	}
}

.home-column-header {
	display: flex;
	align-items: baseline;
	justify-content: space-between;
	gap: 16px;
	border-bottom: 2px solid var(--vvr-color-text);
	padding-bottom: 10px;
	margin-bottom: 6px;
}

.home-column-header h2 {
	font-family: var(--vvr-font-heading);
	font-size: 1.5rem;
	margin: 0;
}

.home-column-link {
	color: var(--vvr-color-accent);
	text-decoration: none;
	font-size: 0.9rem;
	white-space: nowrap;
}

.home-column-link:hover {
	text-decoration: underline;
}

.vvr-list {
	list-style: none;
	margin: 0;
	padding: 0;
}

.vvr-list-item {
	display: flex;
	gap: 24px;
	padding: 18px 0;
	border-bottom: 1px solid var(--vvr-color-border);
}

.vvr-list-item:last-child {
	border-bottom: none;
}

.vvr-list-date {
	flex: 0 0 90px;
	color: var(--vvr-color-muted);
	font-size: 0.85rem;
	white-space: nowrap;
}

.vvr-list-body h3 {
	margin: 0 0 6px;
	font-size: 1.05rem;
}

.vvr-list-body h3 a {
	color: var(--vvr-color-text);
	text-decoration: none;
}

.vvr-list-body h3 a:hover {
	color: var(--vvr-color-accent);
}

.vvr-list-body p {
	margin: 0;
	color: var(--vvr-color-muted);
	font-size: 0.9rem;
	line-height: 1.5;
}

.vvr-agenda-item {
	display: flex;
	gap: 16px;
	padding: 16px 0;
	border-bottom: 1px solid var(--vvr-color-border);
	align-items: flex-start;
}

.vvr-agenda-item:last-child {
	border-bottom: none;
}

.vvr-agenda-date {
	flex: 0 0 56px;
	border: 1px solid var(--vvr-color-border);
	border-radius: 4px;
	text-align: center;
	padding: 8px 4px;
}

.vvr-agenda-day {
	display: block;
	font-family: var(--vvr-font-heading);
	font-weight: 700;
	font-size: 1.3rem;
	line-height: 1;
}

.vvr-agenda-month {
	display: block;
	font-size: 0.7rem;
	letter-spacing: 0.05em;
	text-transform: uppercase;
	color: var(--vvr-color-muted);
	margin-top: 4px;
}

/* ---------------------------------------------------
   Footer
--------------------------------------------------- */
.site-footer {
	border-top: 3px solid var(--vvr-color-accent);
	margin-top: 20px;
	padding-block: 36px;
}

.vvr-footer-inner {
	display: flex;
	justify-content: space-between;
	gap: 40px;
	flex-wrap: wrap;
}

.vvr-footer-org-name {
	font-weight: 700;
	margin: 0 0 8px;
}

.vvr-footer-org p {
	margin: 0 0 4px;
	color: var(--vvr-color-muted);
	font-size: 0.9rem;
}

.vvr-footer-org a {
	color: inherit;
	text-decoration: none;
}

.vvr-footer-anbi-logo {
	display: block;
	width: 70px;
	height: auto;
	margin-top: 16px;
}

.vvr-footer-nav {
	display: flex;
	gap: 60px;
}

.vvr-footer-menu {
	list-style: none;
	margin: 0;
	padding: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}

.vvr-footer-menu a {
	color: var(--vvr-color-accent);
	text-decoration: none;
	font-size: 0.95rem;
}

.vvr-footer-menu a:hover {
	text-decoration: underline;
}
