/* ==========================================================================
   Roxit Clean — statische utility-klassen (vervangt de Tailwind-CDN-runtime).
   Live gebruikt deze utilities in de Webflow/Elementor-markup; de CDN-runtime
   is gestript (troep), maar de utilities zijn nodig voor de layout. Hier
   statisch (geen runtime-JS), met de EXACTE waarden uit de live inline-styles
   + de standaard Tailwind-utilities die ontbraken. Site-breed geladen.
   ========================================================================== */

/* Tailwind-preflight resets (waren weg na het strippen van de CDN-runtime):
   border-box voorkomt te-brede elementen (horizontale overflow/scrollbar);
   body margin:0 verwijdert de 8px browser-default (witte randen + ruimte boven
   het absolute menu). */
*, ::before, ::after { box-sizing: border-box; }
html, body { margin: 0 !important; } /* !important: een inline-snippet zet body{margin:20px} op desktop */
/* extra vangnet tegen horizontale overflow van off-canvas/marquee-elementen */
html, body { overflow-x: clip; }
/* border-width:0 zodat Elementor-containers met alleen "border-style: solid"
   (geen expliciete breedte/kleur gezet) onzichtbaar blijven zoals op live —
   zonder deze reset valt border-width terug op de browser-default "medium"
   (~3px), zichtbaar als een ongewenste rand (bv. de blog-cards op /blogs/). */
*, ::before, ::after { border-width: 0; border-style: solid; border-color: currentColor; }

/* display */
.flex { display: flex; }
.inline-flex { display: inline-flex; }
.grid { display: grid; }
.block { display: block; }
.inline-block { display: inline-block; }
.hidden { display: none; }

/* flex-richting / wrap */
.flex-col { flex-direction: column; }
.flex-row { flex-direction: row; }
.flex-wrap { flex-wrap: wrap; }
.flex-1 { flex: 1 1 0%; }

/* uitlijning */
.items-center { align-items: center; }
.items-start { align-items: flex-start; }
.items-end { align-items: flex-end; }
.justify-center { justify-content: center; }
.justify-between { justify-content: space-between; }
.justify-start { justify-content: flex-start; }
.justify-end { justify-content: flex-end; }

/* tekst-uitlijning */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

/* positie */
.relative { position: relative; }
.absolute { position: absolute; }
.fixed { position: fixed; }
.top-11 { top: 0.6rem; }
.right-11 { right: 0.85rem; }

/* afmetingen */
.w-full { width: 100%; }
.h-full { height: 100%; }
.w-10 { width: 1rem; }
.w-11 { width: 1.1rem; }
.w-15 { width: 1.5rem; }
.w-28 { width: 2.8rem; }
.w-50 { width: 5rem; }
.h-10 { height: 1.5rem; }
.h-15 { height: 1.5rem; }
.h-28 { height: 2.8rem; }
.h-50 { height: 5rem; }
.h-85 { height: 8.5rem; }

/* padding (custom config: N/10 rem) */
.px-35 { padding-left: 3.2rem; padding-right: 3.2rem; }
.px-38 { padding-left: 3.8rem; padding-right: 3.8rem; }
.px-40 { padding-left: 4rem; padding-right: 4rem; }

/* diversen */
.overflow-hidden { overflow: hidden; }
.rounded-full { border-radius: 9999px; }
.leading-none { line-height: 1; }
.z-2 { z-index: 2; }

/* kleuren (uit live inline-styles) */
.bg-darkroxit { background: linear-gradient(329deg, #143f26, #143f26); }
.bg-lightblue { background-color: #48af6d; }
.bg-whites { background-color: #fff; }
.bg-yellow { background-color: #4da86d; }
.text-black { color: #000; }
.text-white { color: #fff; }
.fill-current { fill: #fefee3; }

/* typografie-utilities (live) */
.font-medium { font-weight: 300; font-family: "studiopro", sans-serif; }
.p3 { font-size: 1.2rem !important; }

/* Sectie-spacing-klassen (Webflow/Tailwind, kwamen van de gestripte laag).
   Geven verticale ruimte tussen secties — anders plakken ze tegen elkaar. */
.spacing-top-bottom { padding-top: clamp(56px, 6vw, 100px); padding-bottom: clamp(56px, 6vw, 100px); }
.spacing-bottom { padding-bottom: clamp(56px, 6vw, 100px); }
.spacing-top { padding-top: clamp(56px, 6vw, 100px); }
.spacingbottom-lg { padding-bottom: clamp(80px, 9vw, 140px); }
.section.mb-120, .mb-120 { margin-bottom: clamp(64px, 8vw, 120px); }
