/*
 * Van den Brink Tegels - Main Stylesheet
 * Tailwind CSS utilities gecompileerd voor productie
 *
 * @package BrinkTegels_Clickwave
 * @since 1.0.0
 */

/* ==========================================================================
   CSS Variables (Design Tokens)
   ========================================================================== */
:root {
	/* Kleuren */
	--color-primary-blue: #50667E;
	--color-primary-dark: #2F383F;
	--color-secondary-blue: #8995AB;
	--color-secondary-light: #B7BFCB;
	--color-accent-orange: #E56239;
	--color-accent-orange-hover: #D4522A;
	--color-neutral-offwhite: #F8F9FA;
	--color-neutral-lightgray: #EFEFEF;
	--color-neutral-textgray: #5B5B5B;
	--color-white: #FFFFFF;
	--color-black: #000000;
	--color-green-100: #dcfce7;
	--color-green-600: #16a34a;

	/* Fonts */
	--font-sans: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen-Sans, Ubuntu, Cantarell, 'Helvetica Neue', sans-serif;
	--font-cursive: 'Dancing Script', cursive;

	/* Spacing */
	--spacing-1: 0.25rem;
	--spacing-2: 0.5rem;
	--spacing-3: 0.75rem;
	--spacing-4: 1rem;
	--spacing-5: 1.25rem;
	--spacing-6: 1.5rem;
	--spacing-8: 2rem;
	--spacing-10: 2.5rem;
	--spacing-12: 3rem;
	--spacing-16: 4rem;
	--spacing-20: 5rem;
	--spacing-24: 6rem;

	/* Border Radius */
	--radius-sm: 0.125rem;
	--radius-default: 0.25rem;
	--radius-md: 0.375rem;
	--radius-lg: 0.5rem;
	--radius-xl: 0.75rem;
	--radius-2xl: 1rem;
	--radius-full: 9999px;

	/* Shadows */
	--shadow-sm: 0 1px 2px 0 rgb(0 0 0 / 0.05);
	--shadow-md: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
	--shadow-lg: 0 10px 15px -3px rgb(0 0 0 / 0.1), 0 4px 6px -4px rgb(0 0 0 / 0.1);
	--shadow-xl: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
	--shadow-2xl: 0 25px 50px -12px rgb(0 0 0 / 0.25);

	/* Transitions */
	--transition-fast: 150ms;
	--transition-normal: 300ms;
	--transition-slow: 500ms;
	--transition-slower: 700ms;
}

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
*, *::before, *::after {
	box-sizing: border-box;
}

* {
	margin: 0;
	padding: 0;
}

html {
	scroll-behavior: smooth;
	-webkit-text-size-adjust: 100%;
}

body {
	font-family: var(--font-sans);
	font-size: 1rem;
	line-height: 1.5;
	color: var(--color-neutral-textgray);
	background-color: var(--color-white);
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img, picture, video, canvas, svg {
	display: block;
	max-width: 100%;
}

input, button, textarea, select {
	font: inherit;
}

p, h1, h2, h3, h4, h5, h6 {
	overflow-wrap: break-word;
}

/* ==========================================================================
   Typography
   ========================================================================== */
h1, h2, h3, h4, h5, h6 {
	color: var(--color-primary-dark);
	font-weight: 700;
	line-height: 1.25;
}

h1 { font-size: clamp(3rem, 5vw, 4.5rem); }
h2 { font-size: clamp(2.25rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 1.875rem); }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

a {
	color: var(--color-primary-blue);
	text-decoration: none;
	transition: color var(--transition-normal);
}



/* ==========================================================================
   Layout Utilities
   ========================================================================== */
.container {
	width: 100%;
	max-width: 1280px;
	margin-left: auto;
	margin-right: auto;
	padding-left: 1rem;
	padding-right: 1rem;
}

@media (min-width: 1024px) {
	.container {
		padding-left: 2rem;
		padding-right: 2rem;
	}
}

/* Flexbox */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-nowrap { flex-wrap: nowrap; }
.flex-1 { flex: 1 1 0%; }
.flex-none { flex: none; }
.items-start { align-items: flex-start; }
.items-center { align-items: center; }
.items-end { align-items: flex-end; }
.justify-start { justify-content: flex-start; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.justify-between { justify-content: space-between; }
.gap-1 { gap: 0.25rem; }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-6 { gap: 1.5rem; }
.gap-8 { gap: 2rem; }
.gap-10 { gap: 2.5rem; }
.gap-12 { gap: 3rem; }
.gap-16 { gap: 4rem; }

/* Grid */
.grid { display: grid; }
.grid-cols-1 { grid-template-columns: repeat(1, minmax(0, 1fr)); }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
.col-span-1 { grid-column: span 1 / span 1; }
.col-span-2 { grid-column: span 2 / span 2; }
.row-span-1 { grid-row: span 1 / span 1; }
.row-span-2 { grid-row: span 2 / span 2; }
.auto-rows-\[300px\] { grid-auto-rows: 300px; }

/* ==========================================================================
   Spacing Utilities
   ========================================================================== */
/* Padding */
.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 0.75rem; }
.p-4 { padding: 1rem; }
.p-5 { padding: 1.25rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.p-10 { padding: 2.5rem; }
.p-12 { padding: 3rem; }
.px-2 { padding-left: 0.5rem; padding-right: 0.5rem; }
.px-3 { padding-left: 0.75rem; padding-right: 0.75rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.py-10 { padding-top: 2.5rem; padding-bottom: 2.5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-24 { padding-top: 6rem; padding-bottom: 6rem; }
.pt-4 { padding-top: 1rem; }
.pt-6 { padding-top: 1.5rem; }
.pt-8 { padding-top: 2rem; }
.pt-10 { padding-top: 2.5rem; }
.pt-16 { padding-top: 4rem; }
.pt-20 { padding-top: 5rem; }
.pb-1 { padding-bottom: 0.25rem; }
.pb-2 { padding-bottom: 0.5rem; }
.pb-4 { padding-bottom: 1rem; }
.pb-6 { padding-bottom: 1.5rem; }
.pb-8 { padding-bottom: 2rem; }
.pb-10 { padding-bottom: 2.5rem; }
.pb-16 { padding-bottom: 4rem; }

/* Margin */
.m-0 { margin: 0; }
.m-auto { margin: auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mx-2 { margin-left: 0.5rem; margin-right: 0.5rem; }
.my-4 { margin-top: 1rem; margin-bottom: 1rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mt-10 { margin-top: 2.5rem; }
.mt-12 { margin-top: 3rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
.mb-10 { margin-bottom: 2.5rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.ml-2 { margin-left: 0.5rem; }
.mr-2 { margin-right: 0.5rem; }
.-mt-6 { margin-top: -1.5rem; }
.-ml-4 { margin-left: -1rem; }
.-ml-6 { margin-left: -1.5rem; }
.-mr-4 { margin-right: -1rem; }
.-mr-6 { margin-right: -1.5rem; }
.-bottom-6 { bottom: -1.5rem; }
.-left-6 { left: -1.5rem; }
.-top-6 { top: -1.5rem; }
.-right-6 { right: -1.5rem; }

/* ==========================================================================
   Sizing
   ========================================================================== */
.w-full { width: 100%; }
.w-auto { width: auto; }
.w-fit { width: fit-content; }
.w-6 { width: 1.5rem; }
.w-10 { width: 2.5rem; }
.w-12 { width: 3rem; }
.w-16 { width: 4rem; }
.w-24 { width: 6rem; }
.w-32 { width: 8rem; }
.w-56 { width: 14rem; }
.w-64 { width: 16rem; }
.w-80 { width: 20rem; }
.w-1\/2 { width: 50%; }
.w-1\/3 { width: 33.333333%; }
.w-\[400px\] { width: 400px; }
.min-w-0 { min-width: 0; }
.max-w-md { max-width: 28rem; }
.max-w-lg { max-width: 32rem; }
.max-w-xl { max-width: 36rem; }
.max-w-2xl { max-width: 42rem; }
.max-w-3xl { max-width: 48rem; }
.max-w-4xl { max-width: 56rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-full { max-width: 100%; }

.h-auto { height: auto; }
.h-full { height: 100%; }
.h-screen { height: 100vh; }
.h-6 { height: 1.5rem; }
.h-10 { height: 2.5rem; }
.h-12 { height: 3rem; }
.h-16 { height: 4rem; }
.h-24 { height: 6rem; }
.h-32 { height: 8rem; }
.h-64 { height: 16rem; }
.h-80 { height: 20rem; }
.h-\[400px\] { height: 400px; }
.h-\[500px\] { height: 500px; }
.h-\[60vh\] { height: 60vh; }
.h-0\.5 { height: 0.125rem; }
.min-h-\[500px\] { min-height: 500px; }
.min-h-\[700px\] { min-height: 700px; }
.max-h-0 { max-height: 0; }
.max-h-96 { max-height: 24rem; }

/* ==========================================================================
   Position
   ========================================================================== */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.sticky { position: sticky; }
.inset-0 { inset: 0; }
.top-0 { top: 0; }
.top-6 { top: 1.5rem; }
.top-24 { top: 6rem; }
.top-1\/2 { top: 50%; }
.left-0 { left: 0; }
.left-8 { left: 2rem; }
.right-0 { right: 0; }
.bottom-0 { bottom: 0; }
.bottom-2 { bottom: 0.5rem; }
.z-0 { z-index: 0; }
.z-10 { z-index: 10; }
.z-20 { z-index: 20; }
.z-50 { z-index: 50; }
.z-\[60\] { z-index: 60; }
.z-\[-1\] { z-index: -1; }

/* ==========================================================================
   Display
   ========================================================================== */
.block { display: block; }
.inline-block { display: inline-block; }
.inline { display: inline; }
.hidden { display: none; }

/* ==========================================================================
   Background Colors
   ========================================================================== */
.bg-white { background-color: var(--color-white); }
.bg-black { background-color: var(--color-black); }
.bg-transparent { background-color: transparent; }
.bg-primary-blue { background-color: var(--color-primary-blue); }
.bg-primary-dark { background-color: var(--color-primary-dark); }
.bg-secondary-blue { background-color: var(--color-secondary-blue); }
.bg-accent-orange { background-color: var(--color-accent-orange); }
.bg-accent-orangeHover { background-color: var(--color-accent-orange-hover); }
.bg-neutral-offwhite { background-color: var(--color-neutral-offwhite); }
.bg-neutral-lightgray { background-color: var(--color-neutral-lightgray); }
.bg-green-100 { background-color: var(--color-green-100); }
.bg-gray-200 { background-color: #e5e7eb; }
.bg-gray-50 { background-color: #f9fafb; }
.bg-orange-50 { background-color: #fff7ed; }

/* Background with opacity */
.bg-primary-dark\/70 { background-color: rgba(47, 56, 63, 0.7); }
.bg-primary-dark\/80 { background-color: rgba(47, 56, 63, 0.8); }
.bg-primary-dark\/95 { background-color: rgba(47, 56, 63, 0.95); }
.bg-primary-blue\/10 { background-color: rgba(80, 102, 126, 0.1); }
.bg-accent-orange\/10 { background-color: rgba(229, 98, 57, 0.1); }
.bg-white\/5 { background-color: rgba(255, 255, 255, 0.05); }
.bg-white\/10 { background-color: rgba(255, 255, 255, 0.1); }
.bg-white\/20 { background-color: rgba(255, 255, 255, 0.2); }
.bg-black\/50 { background-color: rgba(0, 0, 0, 0.5); }
.bg-black\/80 { background-color: rgba(0, 0, 0, 0.8); }
.bg-black\/90 { background-color: rgba(0, 0, 0, 0.9); }

/* Gradients */
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-gradient-stops)); }
.bg-gradient-to-t { background-image: linear-gradient(to top, var(--tw-gradient-stops)); }
.from-primary-dark\/80 { --tw-gradient-from: rgba(47, 56, 63, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(47, 56, 63, 0)); }
.via-primary-dark\/60 { --tw-gradient-stops: var(--tw-gradient-from), rgba(47, 56, 63, 0.6), var(--tw-gradient-to, rgba(47, 56, 63, 0)); }
.to-transparent { --tw-gradient-to: transparent; }
.from-black\/80 { --tw-gradient-from: rgba(0, 0, 0, 0.8); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.from-black\/90 { --tw-gradient-from: rgba(0, 0, 0, 0.9); --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-black\/20 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.2), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }
.via-black\/50 { --tw-gradient-stops: var(--tw-gradient-from), rgba(0, 0, 0, 0.5), var(--tw-gradient-to, rgba(0, 0, 0, 0)); }

/* Tile pattern background */
.bg-tile-pattern {
	background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2350667E' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* ==========================================================================
   Text Colors
   ========================================================================== */
.text-white { color: var(--color-white); }
.text-black { color: var(--color-black); }
.text-primary-blue { color: var(--color-primary-blue); }
.text-primary-dark { color: var(--color-primary-dark); }
.text-secondary-blue { color: var(--color-secondary-blue); }
.text-accent-orange { color: var(--color-accent-orange); }
.text-neutral-textgray { color: var(--color-neutral-textgray); }
.text-neutral-offwhite { color: var(--color-neutral-offwhite); }
.text-green-600 { color: var(--color-green-600); }
.text-gray-200 { color: #e5e7eb; }
.text-gray-300 { color: #d1d5db; }
.text-gray-400 { color: #9ca3af; }

/* Text with opacity */
.text-white\/80 { color: rgba(255, 255, 255, 0.8); }
.text-white\/90 { color: rgba(255, 255, 255, 0.9); }
.text-neutral-textgray\/80 { color: rgba(91, 91, 91, 0.8); }

/* ==========================================================================
   Typography Utilities
   ========================================================================== */
.font-sans { font-family: var(--font-sans); }
.font-cursive { font-family: var(--font-cursive); }
.font-light { font-weight: 300; }
.font-normal { font-weight: 400; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.font-bold { font-weight: 700; }

.text-xs { font-size: 0.75rem; line-height: 1rem; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-base { font-size: 1rem; line-height: 1.5rem; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-6xl { font-size: 3.75rem; line-height: 1; }
.text-7xl { font-size: 4.5rem; line-height: 1; }

.italic { font-style: italic; }
.not-italic { font-style: normal; }
.uppercase { text-transform: uppercase; }
.lowercase { text-transform: lowercase; }
.capitalize { text-transform: capitalize; }
.normal-case { text-transform: none; }
.text-left { text-align: left; }
.text-center { text-align: center; }
.text-right { text-align: right; }
.underline { text-decoration-line: underline; }
.no-underline { text-decoration-line: none; }
.leading-tight { line-height: 1.25; }
.leading-normal { line-height: 1.5; }
.leading-relaxed { line-height: 1.625; }
.tracking-tight { letter-spacing: -0.025em; }
.tracking-normal { letter-spacing: 0; }
.tracking-wide { letter-spacing: 0.025em; }
.tracking-wider { letter-spacing: 0.05em; }
.tracking-widest { letter-spacing: 0.1em; }

/* Text shadow */
.text-shadow {
	text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* ==========================================================================
   Border
   ========================================================================== */
.border { border-width: 1px; }
.border-0 { border-width: 0; }
.border-2 { border-width: 2px; }
.border-t { border-top-width: 1px; }
.border-b { border-bottom-width: 1px; }
.border-l { border-left-width: 1px; }
.border-r { border-right-width: 1px; }
.border-solid { border-style: solid; }
.border-white { border-color: var(--color-white); }
.border-neutral-100 { border-color: #f5f5f5; }
.border-neutral-200 { border-color: #e5e5e5; }
.border-gray-50 { border-color: #f9fafb; }
.border-gray-100 { border-color: #f3f4f6; }
.border-gray-200 { border-color: #e5e7eb; }
.border-white\/10 { border-color: rgba(255, 255, 255, 0.1); }
.border-accent-orange { border-color: var(--color-accent-orange); }

/* Border Radius */
.rounded { border-radius: var(--radius-default); }
.rounded-sm { border-radius: var(--radius-sm); }
.rounded-md { border-radius: var(--radius-md); }
.rounded-lg { border-radius: var(--radius-lg); }
.rounded-xl { border-radius: var(--radius-xl); }
.rounded-2xl { border-radius: var(--radius-2xl); }
.rounded-full { border-radius: var(--radius-full); }
.rounded-b-lg { border-bottom-left-radius: var(--radius-lg); border-bottom-right-radius: var(--radius-lg); }

/* ==========================================================================
   Effects
   ========================================================================== */
/* Shadows */
.shadow-sm { box-shadow: var(--shadow-sm); }
.shadow-md { box-shadow: var(--shadow-md); }
.shadow-lg { box-shadow: var(--shadow-lg); }
.shadow-xl { box-shadow: var(--shadow-xl); }
.shadow-2xl { box-shadow: var(--shadow-2xl); }
.shadow-orange-500\/30 { box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3); }
.shadow-orange-900\/20 { box-shadow: 0 10px 15px -3px rgba(124, 45, 18, 0.2); }

/* Opacity */
.opacity-0 { opacity: 0; }
.opacity-20 { opacity: 0.2; }
.opacity-50 { opacity: 0.5; }
.opacity-80 { opacity: 0.8; }
.opacity-90 { opacity: 0.9; }
.opacity-100 { opacity: 1; }

/* Backdrop */
.backdrop-blur-sm { backdrop-filter: blur(4px); }
.backdrop-blur-md { backdrop-filter: blur(12px); }
.backdrop-blur { backdrop-filter: blur(8px); }

/* Filter */
.grayscale { filter: grayscale(100%); }
.grayscale-0 { filter: grayscale(0); }

/* ==========================================================================
   Overflow
   ========================================================================== */
.overflow-hidden { overflow: hidden; }
.overflow-auto { overflow: auto; }
.overflow-x-auto { overflow-x: auto; }
.overflow-y-auto { overflow-y: auto; }
.overflow-visible { overflow: visible; }

/* Line Clamp */
.line-clamp-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-3 { display: -webkit-box; -webkit-line-clamp: 3; -webkit-box-orient: vertical; overflow: hidden; }
.line-clamp-4 { display: -webkit-box; -webkit-line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }

/* Hide scrollbar */
.scrollbar-hide {
	-ms-overflow-style: none;
	scrollbar-width: none;
}
.scrollbar-hide::-webkit-scrollbar {
	display: none;
}

/* ==========================================================================
   Object Fit
   ========================================================================== */
.object-cover { object-fit: cover; }
.object-contain { object-fit: contain; }
.object-fill { object-fit: fill; }

/* ==========================================================================
   Transform
   ========================================================================== */
.transform { transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) skewX(var(--tw-skew-x, 0)) skewY(var(--tw-skew-y, 0)) scaleX(var(--tw-scale-x, 1)) scaleY(var(--tw-scale-y, 1)); }
.translate-x-0 { --tw-translate-x: 0px; }
.translate-x-1 { --tw-translate-x: 0.25rem; }
.translate-x-full { --tw-translate-x: 100%; }
.-translate-x-full { --tw-translate-x: -100%; }
.translate-y-0 { --tw-translate-y: 0px; }
.translate-y-4 { --tw-translate-y: 1rem; }
.-translate-y-1 { --tw-translate-y: -0.25rem; }
.-translate-y-2 { --tw-translate-y: -0.5rem; }
.-translate-y-1\/2 { --tw-translate-y: -50%; }
.rotate-0 { --tw-rotate: 0deg; }
.rotate-45 { --tw-rotate: 45deg; }
.rotate-180 { --tw-rotate: 180deg; }
.-rotate-45 { --tw-rotate: -45deg; }
.scale-100 { --tw-scale-x: 1; --tw-scale-y: 1; }
.scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }
.-scale-x-100 { --tw-scale-x: -1; }
.-skew-x-12 { --tw-skew-x: -12deg; }

/* ==========================================================================
   Transitions
   ========================================================================== */
.transition { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color, text-decoration-color, fill, stroke; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.transition-transform { transition-property: transform; transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); transition-duration: 150ms; }
.duration-150 { transition-duration: 150ms; }
.duration-300 { transition-duration: 300ms; }
.duration-500 { transition-duration: 500ms; }
.duration-700 { transition-duration: 700ms; }
.delay-100 { transition-delay: 100ms; }
.ease-in-out { transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1); }

/* ==========================================================================
   Cursor & Pointer Events
   ========================================================================== */
.cursor-pointer { cursor: pointer; }
.cursor-default { cursor: default; }
.pointer-events-none { pointer-events: none; }
.pointer-events-auto { pointer-events: auto; }

/* ==========================================================================
   Flex/Shrink
   ========================================================================== */
.shrink-0 { flex-shrink: 0; }
.flex-shrink-0 { flex-shrink: 0; }
.grow { flex-grow: 1; }
.flex-grow { flex-grow: 1; }
.grow-0 { flex-grow: 0; }

/* Auto margins for flexbox alignment */
.mt-auto { margin-top: auto; }
.mb-auto { margin-bottom: auto; }
.ml-auto { margin-left: auto; }
.mr-auto { margin-right: auto; }

/* ==========================================================================
   Focus & Selection
   ========================================================================== */
.focus\:outline-none:focus { outline: 2px solid transparent; outline-offset: 2px; }
.focus\:border-accent-orange:focus { border-color: var(--color-accent-orange); }
.focus\:ring-2:focus { box-shadow: 0 0 0 2px var(--color-accent-orange); }

::selection {
	background-color: var(--color-accent-orange);
	color: var(--color-white);
}

/* ==========================================================================
   Group Hover States
   ========================================================================== */
.group:hover .group-hover\:opacity-100 { opacity: 1; }
.group:hover .group-hover\:scale-105 { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.group:hover .group-hover\:scale-110 { --tw-scale-x: 1.1; --tw-scale-y: 1.1; }
.group:hover .group-hover\:translate-x-1 { --tw-translate-x: 0.25rem; }
.group:hover .group-hover\:translate-y-0 { --tw-translate-y: 0; }
.group:hover .group-hover\:text-accent-orange { color: var(--color-accent-orange); }
.group:hover .group-hover\:text-white { color: var(--color-white); }
.group:hover .group-hover\:bg-accent-orange { background-color: var(--color-accent-orange); }
.group:hover .group-hover\:bg-orange-50 { background-color: #fff7ed; }
.group:hover .group-hover\:shadow-xl { box-shadow: var(--shadow-xl); }

/* ==========================================================================
   Hover States
   ========================================================================== */
.hover\:text-white:hover { color: var(--color-white); }
.hover\:text-accent-orange:hover { color: var(--color-accent-orange); }
.hover\:text-primary-dark:hover { color: var(--color-primary-dark); }
.hover\:bg-white:hover { background-color: var(--color-white); }
.hover\:bg-accent-orange:hover { background-color: var(--color-accent-orange); }
.hover\:bg-accent-orangeHover:hover { background-color: var(--color-accent-orange-hover); }
.hover\:bg-primary-blue:hover { background-color: var(--color-primary-blue); }
.hover\:bg-primary-dark:hover { background-color: var(--color-primary-dark); }
.hover\:bg-neutral-offwhite:hover { background-color: var(--color-neutral-offwhite); }
.hover\:border-accent-orange:hover { border-color: var(--color-accent-orange); }
.hover\:shadow-lg:hover { box-shadow: var(--shadow-lg); }
.hover\:shadow-xl:hover { box-shadow: var(--shadow-xl); }
.hover\:shadow-orange-500\/30:hover { box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3); }
.hover\:-translate-y-1:hover { --tw-translate-y: -0.25rem; }
.hover\:-translate-y-2:hover { --tw-translate-y: -0.5rem; }
.hover\:scale-105:hover { --tw-scale-x: 1.05; --tw-scale-y: 1.05; }
.hover\:underline:hover { text-decoration-line: underline; }

/* ==========================================================================
   Last Child
   ========================================================================== */
.last\:border-0:last-child { border-width: 0; }

/* ==========================================================================
   Space Between
   ========================================================================== */
.space-y-2 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.5rem; }
.space-y-3 > :not([hidden]) ~ :not([hidden]) { margin-top: 0.75rem; }
.space-y-4 > :not([hidden]) ~ :not([hidden]) { margin-top: 1rem; }
.space-y-8 > :not([hidden]) ~ :not([hidden]) { margin-top: 2rem; }
.space-x-2 > :not([hidden]) ~ :not([hidden]) { margin-left: 0.5rem; }

/* ==========================================================================
   Responsive Utilities - Small (sm: 640px)
   ========================================================================== */
@media (min-width: 640px) {
	.sm\:flex-row { flex-direction: row; }
	.sm\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.sm\:px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
}

/* ==========================================================================
   Responsive Utilities - Medium (md: 768px)
   ========================================================================== */
@media (min-width: 768px) {
	.md\:flex { display: flex; }
	.md\:hidden { display: none; }
	.md\:block { display: block; }
	.md\:inline-flex { display: inline-flex; }
	.md\:flex-row { flex-direction: row; }
	.md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.md\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.md\:col-span-2 { grid-column: span 2 / span 2; }
	.md\:gap-6 { gap: 1.5rem; }
	.md\:gap-8 { gap: 2rem; }
	.md\:p-8 { padding: 2rem; }
	.md\:p-12 { padding: 3rem; }
	.md\:px-8 { padding-left: 2rem; padding-right: 2rem; }
	.md\:py-6 { padding-top: 1.5rem; padding-bottom: 1.5rem; }
	.md\:text-xl { font-size: 1.25rem; line-height: 1.75rem; }
	.md\:text-2xl { font-size: 1.5rem; line-height: 2rem; }
	.md\:text-4xl { font-size: 2.25rem; line-height: 2.5rem; }
	.md\:text-5xl { font-size: 3rem; line-height: 1; }
	.md\:text-6xl { font-size: 3.75rem; line-height: 1; }
	.md\:text-7xl { font-size: 4.5rem; line-height: 1; }
	.md\:w-80 { width: 20rem; }
	.md\:h-80 { height: 20rem; }
	.md\:-left-12 { left: -3rem; }
	.md\:-right-12 { right: -3rem; }
	.md\:mt-0 { margin-top: 0; }
	.md\:order-1 { order: 1; }
	.md\:order-2 { order: 2; }
}

/* ==========================================================================
   Responsive Utilities - Large (lg: 1024px)
   ========================================================================== */
@media (min-width: 1024px) {
	.lg\:flex { display: flex; }
	.lg\:hidden { display: none; }
	.lg\:block { display: block; }
	.lg\:inline-flex { display: inline-flex; }
	.lg\:flex-row { flex-direction: row; }
	.lg\:items-center { align-items: center; }
	.lg\:justify-between { justify-content: space-between; }
	.lg\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.lg\:grid-cols-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
	.lg\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.lg\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.lg\:col-span-1 { grid-column: span 1 / span 1; }
	.lg\:col-span-2 { grid-column: span 2 / span 2; }
	.lg\:row-span-1 { grid-row: span 1 / span 1; }
	.lg\:row-span-2 { grid-row: span 2 / span 2; }
	.lg\:gap-8 { gap: 2rem; }
	.lg\:gap-12 { gap: 3rem; }
	.lg\:gap-16 { gap: 4rem; }
	.lg\:p-10 { padding: 2.5rem; }
	.lg\:px-8 { padding-left: 2rem; padding-right: 2rem; }
	.lg\:text-base { font-size: 1rem; line-height: 1.5rem; }
	.lg\:text-5xl { font-size: 3rem; line-height: 1; }
	.lg\:w-1\/2 { width: 50%; }
	.lg\:w-1\/3 { width: 33.333333%; }
	.lg\:order-1 { order: 1; }
	.lg\:order-2 { order: 2; }
	.lg\:h-10 { height: 2.5rem; }
	.lg\:h-16 { height: 4rem; }
}

/* ==========================================================================
   Responsive Utilities - Extra Large (xl: 1280px)
   ========================================================================== */
@media (min-width: 1280px) {
	.xl\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
	.xl\:grid-cols-5 { grid-template-columns: repeat(5, minmax(0, 1fr)); }
	.xl\:gap-8 { gap: 2rem; }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */
@media print {
	.no-print { display: none !important; }
	body { font-size: 12pt; }
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes fadeIn {
	from { opacity: 0; }
	to { opacity: 1; }
}

@keyframes slideInUp {
	from {
		opacity: 0;
		transform: translateY(20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

@keyframes slideInDown {
	from {
		opacity: 0;
		transform: translateY(-20px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fadeIn {
	animation: fadeIn 0.3s ease-out;
}

.animate-slideInUp {
	animation: slideInUp 0.6s ease-out;
}

.animate-slideInDown {
	animation: slideInDown 0.3s ease-out;
}

/* Staggered animation delays */
.animate-delay-100 { animation-delay: 100ms; }
.animate-delay-200 { animation-delay: 200ms; }
.animate-delay-300 { animation-delay: 300ms; }
.animate-delay-400 { animation-delay: 400ms; }
.animate-delay-500 { animation-delay: 500ms; }
.animate-delay-600 { animation-delay: 600ms; }

/* ==========================================================================
   WordPress Specific Overrides
   ========================================================================== */
/* FSE Full width alignments */
.alignfull {
	width: 100vw;
	max-width: 100vw;
	margin-left: calc(-50vw + 50%);
	margin-right: calc(-50vw + 50%);
}

.alignwide {
	max-width: 1536px;
	margin-left: auto;
	margin-right: auto;
}

/* Block editor content width */
.wp-block {
	max-width: 1280px;
}

/* Fix for WordPress admin bar */
.admin-bar .fixed {
	top: 32px;
}

@media (max-width: 782px) {
	.admin-bar .fixed {
		top: 46px;
	}
}

/* ==========================================================================
   Component Specific Styles
   ========================================================================== */
/* Header styling */
.site-header {
	transition: background-color var(--transition-normal), padding var(--transition-normal);
}

.site-header.scrolled {
	background-color: rgba(47, 56, 63, 0.95);
	backdrop-filter: blur(4px);
	padding-top: 0.5rem;
	padding-bottom: 0.5rem;
	box-shadow: var(--shadow-lg);
}

/* Navigation dropdown animation */
.nav-dropdown {
	opacity: 0;
	visibility: hidden;
	transform: translateY(-10px);
	transition: opacity var(--transition-normal), transform var(--transition-normal), visibility var(--transition-normal);
}

.nav-dropdown.active,
.nav-item:hover .nav-dropdown {
	opacity: 1;
	visibility: visible;
	transform: translateY(0);
}

/* Mobile menu slide */
.mobile-menu {
	transform: translateX(100%);
	transition: transform var(--transition-normal);
}

.mobile-menu.open {
	transform: translateX(0);
}

/* Mobile menu enhanced styling */
.mobile-menu nav > div {
	padding: 0.75rem 0;
}

.mobile-menu nav > div > div:first-child {
	display: flex;
	align-items: center;
	justify-content: space-between;
}

.mobile-menu nav a {
	display: block;
	padding: 0.75rem 0;
	font-size: 1.125rem;
	font-weight: 600;
	color: white;
	text-decoration: none;
	transition: color 0.2s ease;
}

.mobile-menu nav a:hover {
	color: var(--color-accent-orange);
}

/* Mobile menu toggle button (hamburger) */
.mobile-menu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--color-primary-blue);
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:active {
	background: var(--color-primary-dark);
}

.mobile-menu-toggle svg {
	color: white;
	stroke: white;
}

/* Mobile menu close button */
.mobile-menu-close {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: rgba(255, 255, 255, 0.1);
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.mobile-menu-close:hover,
.mobile-menu-close:active {
	background: rgba(255, 255, 255, 0.2);
}

.mobile-menu-close svg {
	color: white;
	stroke: white;
}

/* Submenu toggle button styling */
.mobile-submenu-toggle {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 48px;
	height: 48px;
	border-radius: 10px;
	background: var(--color-primary-blue);
	border: none;
	cursor: pointer;
	transition: background 0.2s ease;
	-webkit-tap-highlight-color: transparent;
}

.mobile-submenu-toggle:hover,
.mobile-submenu-toggle:active {
	background: var(--color-primary-dark);
}

.mobile-submenu-toggle .chevron {
	color: white;
	stroke: white;
	transition: transform 0.3s ease;
}

.mobile-submenu-toggle.open .chevron {
	transform: rotate(180deg);
}

/* Submenu styling */
.mobile-submenu {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height 0.3s ease, opacity 0.3s ease;
}

.mobile-submenu.open {
	max-height: 500px;
	opacity: 1;
}

.mobile-submenu a {
	font-size: 1rem;
	font-weight: 400;
	color: rgba(255, 255, 255, 0.7);
	padding: 0.625rem 0;
}

.mobile-submenu a:hover {
	color: white;
}

/* iOS/Android touch improvements */
@supports (-webkit-touch-callout: none) {
	/* iOS specific */
	.mobile-menu {
		-webkit-overflow-scrolling: touch;
	}

	.mobile-submenu-toggle {
		-webkit-appearance: none;
	}
}

/* Safe area for iOS notch */
@supports (padding-top: env(safe-area-inset-top)) {
	.mobile-menu > div:first-child {
		padding-top: max(1rem, env(safe-area-inset-top));
	}

	.mobile-menu > div:last-child {
		padding-bottom: max(2.5rem, env(safe-area-inset-bottom));
	}
}

/* ==========================================================================
   Header Responsive Fixes
   Override WordPress block styles for proper mobile/desktop visibility
   ========================================================================== */

/* Hide desktop navigation on mobile (override WP block flex) */
.site-header .hidden.lg\:flex {
	display: none !important;
}

/* Show hamburger menu on mobile */
.site-header .lg\:hidden {
	display: block !important;
}

/* Large screens: show desktop nav, hide hamburger */
@media (min-width: 1024px) {
	.site-header .hidden.lg\:flex {
		display: flex !important;
	}

	.site-header .lg\:hidden {
		display: none !important;
	}
}

/* Service card hover effect */
.service-card {
	transition: transform var(--transition-normal), box-shadow var(--transition-normal);
}

.service-card:hover {
	transform: translateY(-0.5rem);
	box-shadow: var(--shadow-xl);
}

/* Review carousel */
.reviews-slider {
	position: relative;
}

.reviews-slide {
	opacity: 0;
	position: absolute;
	transition: opacity var(--transition-slow);
}

.reviews-slide.active {
	opacity: 1;
	position: relative;
}

/* FAQ accordion */
.faq-item {
	transition: box-shadow var(--transition-normal);
}

.faq-item.open {
	box-shadow: var(--shadow-md);
}

.faq-content {
	max-height: 0;
	opacity: 0;
	overflow: hidden;
	transition: max-height var(--transition-normal), opacity var(--transition-normal);
}

.faq-item.open .faq-content {
	max-height: 500px;
	opacity: 1;
}

.faq-icon {
	transition: transform var(--transition-normal);
}

.faq-item.open .faq-icon {
	transform: rotate(45deg);
}

/* Project gallery hover overlay */
.project-item .overlay {
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.project-item:hover .overlay {
	opacity: 1;
}

/* Instagram feed hover */
.instagram-item .hover-overlay {
	opacity: 0;
	transition: opacity var(--transition-normal);
}

.instagram-item:hover .hover-overlay {
	opacity: 1;
}

/* Buttons */
.btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem 2rem;
	font-weight: 700;
	font-size: 1.125rem;
	border-radius: var(--radius-default);
	transition: all var(--transition-normal);
	cursor: pointer;
	text-decoration: none;
}

.btn-primary {
	background-color: var(--color-accent-orange);
	color: var(--color-white);
}

.btn-primary:hover {
	background-color: var(--color-accent-orange-hover);
	transform: translateY(-0.25rem);
	box-shadow: 0 10px 15px -3px rgba(249, 115, 22, 0.3);
}

.btn-secondary {
	background-color: transparent;
	color: var(--color-white);
	border: 2px solid var(--color-white);
}

.btn-secondary:hover {
	background-color: var(--color-white);
	color: var(--color-primary-dark);
	transform: translateY(-0.25rem);
}

.btn-blue {
	background-color: var(--color-primary-blue);
	color: var(--color-white);
}

.btn-blue:hover {
	background-color: var(--color-primary-dark);
	transform: translateY(-0.25rem);
	box-shadow: var(--shadow-lg);
}

/* Form inputs */
.form-input {
	width: 100%;
	padding: 0.75rem;
	background-color: var(--color-neutral-offwhite);
	border: 1px solid #e5e7eb;
	border-radius: var(--radius-lg);
	transition: border-color var(--transition-normal);
}

.form-input:focus {
	outline: none;
	border-color: var(--color-accent-orange);
}
.form-card{background:#fff;padding:2rem;border-radius:1rem}.form-card
  .form-title{font-size:1.5rem;font-weight:700;color:#1e3a5f;margin:0 0 1.5rem 0}.wpcf7-form p{margin:0 0 1rem        
  0}.wpcf7-form label{display:block;font-size:.875rem;font-weight:600;color:#1e3a5f;margin-bottom:.5rem}.wpcf7-form   
  label+br{display:none}.wpcf7-form input[type="text"],.wpcf7-form input[type="email"],.wpcf7-form
  input[type="tel"],.wpcf7-form textarea{width:100%!important;padding:.75rem
  1rem!important;font-size:1rem!important;border:1px solid #e5e7eb!important;border-radius:.5rem!important;background:
  #f9fafb!important;color:#1e3a5f!important;box-sizing:border-box!important}.wpcf7-form
  textarea{min-height:150px!important;resize:vertical}.wpcf7-form
  input[type="submit"]{background:#e56239!important;color:#fff!important;font-weight:600!important;padding:.875rem    
  2rem!important;border:none!important;border-radius:.5rem!important;cursor:pointer!important;font-size:1rem!important
  ;width:100%!important;margin-top:.5rem}
/* ==========================================================================
   Utility - Aspect Ratios
   ========================================================================== */
.aspect-square { aspect-ratio: 1 / 1; }
.aspect-video { aspect-ratio: 16 / 9; }
.aspect-\[4\/3\] { aspect-ratio: 4 / 3; }

/* ==========================================================================                                                                                                                                                  Contact Form 7 - Simpele structuur
     ========================================================================== */                                                                                                                                          
  
  /* Form card container */
  .form-card {
        background: #fff;
        padding: 2rem;
        border-radius: 1rem;
  }

  .form-card .form-title {
        font-size: 1.5rem;
        font-weight: 700;
        color: #1e3a5f;
        margin: 0 0 1.5rem 0;
  }

  /* Hide CF7 default paragraph margins */
  .wpcf7-form p {
        margin: 0 0 1rem 0;
  }

  /* Labels */
  .wpcf7-form label {
        display: block;
        font-size: 0.875rem;
        font-weight: 600;
        color: #1e3a5f;
        margin-bottom: 0.5rem;
  }

  /* Remove br after label */
  .wpcf7-form label + br {
        display: none;
  }

  /* Input fields */
  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form textarea {
        width: 100% !important;
        padding: 0.75rem 1rem !important;
        font-size: 1rem !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 0.5rem !important;
        background: #f9fafb !important;
        color: #1e3a5f !important;
        box-sizing: border-box !important;
  }

  .wpcf7-form input[type="text"]:focus,
  .wpcf7-form input[type="email"]:focus,
  .wpcf7-form input[type="tel"]:focus,
  .wpcf7-form textarea:focus {
        outline: none !important;
        border-color: #e56239 !important;
        box-shadow: 0 0 0 3px rgba(229, 98, 57, 0.1) !important;
        background: #fff !important;
  }

  /* Textarea */
  .wpcf7-form textarea {
        min-height: 150px !important;
        resize: vertical;
  }

  /* Submit button */
  .wpcf7-form input[type="submit"] {
        background: #e56239 !important;
        color: #fff !important;
        font-weight: 600 !important;
        padding: 0.875rem 2rem !important;
        border: none !important;
        border-radius: 0.5rem !important;
        cursor: pointer !important;
        font-size: 1rem !important;
        width: 100% !important;
        margin-top: 0.5rem;
  }

  .wpcf7-form input[type="submit"]:hover {
        background: #d4532e !important;
  }

  /* Error styling */
  .wpcf7-form .wpcf7-not-valid {
        border-color: #dc2626 !important;
  }

  .wpcf7-form .wpcf7-not-valid-tip {
        color: #dc2626;
        font-size: 0.75rem;
        margin-top: 0.25rem;
  }

  /* Response messages */
  .wpcf7-form .wpcf7-response-output {
        margin: 1rem 0 0 0 !important;
        padding: 1rem !important;
        border-radius: 0.5rem !important;
  }