/*!
Theme Name: Brandeniers starter
Theme URI: https://brandeniers.nl
Author: Brandeniers
Description: Een starter thama
Version: 1.0.0
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: brandeniers
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready
*/
html {
  overflow-x: hidden;
}

body {
  background: #ffffff;
  font-family: "poppins", sans-serif;
  overflow-x: hidden;
}

* {
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

:root {
  --column-gap: 54px;
  --row-gap: 12px;
  /* Define the column gap */
}

.mx-30 {
  margin-block: 30px;
}

a {
  text-decoration: none;
  color: black;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-word;
  hyphens: auto;
  /* letter-spacing: 0.04em; */
	text-wrap: balance
}

/* Default font sizes (for screens wider than 980px) */
h1 {
  font-size: 65px;
  font-weight: 500;
  font-style: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
  /* text-shadow: 0px 3px 6px #1b676b89; */
  line-height: 1.2em;
}

h2 {
  font-size: 40px;
  font-weight: 500;
  font-style: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
  padding-bottom: 12px;
}

h3 {
  font-size: 30px;
  font-weight: 500;
  font-style: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}

h4 {
  font-size: 25px;
  font-weight: 500;
  font-style: normal;
  margin-block-start: 0px;
  margin-block-end: 0px;
}

h5 {
  font-weight: bold;

  margin-block-start: 0px;
  margin-block-end: 0px;
  font-weight: 500;
  font-size: 20px;
}

h6 {
  font-size: 20px;
  font-weight: 500;
  font-style: normal;

  margin-block-start: 0px;
  margin-block-end: 0px;
}

/* Media query for screens up to 980px wide */
@media (max-width: 980px) {
  h1 {
    font-size: 50px;
  }

  h2 {
    font-size: 35px;
  }

  h3 {
    font-size: 26px;
  }

  h4 {
    font-size: 22px;
  }

  h5 {
    font-size: 20px;
  }

  h6 {
    font-size: 18px;
  }
}

/* Media query for screens up to 767px wide */
@media (max-width: 767px) {
  h1 {
    font-size: 35px;
  }

  h2 {
    font-size: 26px;
  }

  h3 {
    font-size: 22px;
  }

  h4 {
    font-size: 19px;
  }

  h5 {
    font-size: 17px;
  }

  h6 {
    font-size: 15px;
  }
}

/* Media query for screens up to 500px wide */
@media (max-width: 500px) {
  h1 {
    font-size: 32px;
  }

  h2 {
    font-size: 25px;
  }

  h3 {
    font-size: 19px;
  }

  h4 {
    font-size: 17px;
  }

  h5 {
    font-size: 15px;
  }

  h6 {
    font-size: 14px;
  }
}

footer,
section {
  padding: 54px 0px;
  position: relative;
  background: #dadada;
}

.producten-overzicht {
  padding-bottom: 125px;
}

.align-center {
  align-items: center;
}

.row {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  /* 12-column grid system */
  gap: var(--column-gap);
  /* Consistent gap between columns */
  width: 80%;
  margin: auto;
  max-width: 1400px;
  row-gap: 0px;
  height: 100%;
}

.flex-end {
  justify-content: flex-end;
  align-items: flex-end;
}

.f-24 {
  font-size: 24px;
}

.h-100 {
  height: 100%;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
}

@media all and (max-width: 980px) {
  .row {
    width: 80%;
  }
}

body {
  font-size: 16px;
  letter-spacing: 1px;
}

.row.volle-breedte {
  max-width: 100%;
  width: 100%;
  gap: 0px;
  /* Remove gap for full-width rows */
}

/* Column Styling */
.column {
  grid-column: span 12;
  /* Default to full width on small screens */
  box-sizing: border-box;
  position: relative;
}

.column img {
  max-width: 100%;
  display: block;

  /* Ensure images don't overflow */
}

/* Full width column */
.column.column_1_1 {
  grid-column: span 12;
  /* Takes all 12 grid columns */
}

/* Half width column */
.column.column_1_2 {
  grid-column: span 6;
  /* Takes 6 out of 12 columns */
}

/* One-third width column */
.column.column_1_3 {
  grid-column: span 4;
  /* Takes 4 out of 12 columns */
}

/* One-fourth width column */
.column.column_1_4 {
  grid-column: span 3;
  /* Takes 3 out of 12 columns */
}

/* One-fifth width column */
.column.column_1_5 {
  grid-column: span 2.4;
  /* Adjust for 1/5 of 12 columns */
}

/* One-sixth width column */
.column.column_1_6 {
  grid-column: span 2;
  /* Takes 2 out of 12 columns */
}

/* Two-sixths width column (equivalent to one-third) */
.column.column_2_6 {
  grid-column: span 4;
  /* Takes 4 out of 12 columns */
}

/* Four-sixths width column (equivalent to two-thirds) */
.column.column_4_6 {
  grid-column: span 8;
  /* Takes 8 out of 12 columns */
}

/* Two-thirds width column */
.column.column_2_3 {
  grid-column: span 8;
  /* Takes 8 out of 12 columns */
}

/* Two-fifths width column */
.column.column_2_5 {
  grid-column: span 4.8;
  /* Adjust for 2/5 of 12 columns */
}

/* Three-fourths width column */
.column.column_3_4 {
  grid-column: span 9;
  /* Takes 9 out of 12 columns */
}

/* Three-fifths width column */
.column.column_3_5 {
  grid-column: span 7.2;
  /* Adjust for 3/5 of 12 columns */
}

/* Four-fifths width column */
.column.column_4_5 {
  grid-column: span 9.6;
  /* Adjust for 4/5 of 12 columns */
}

/* Responsive adjustments */
@media (min-width: 768px) and (max-width: 980px) {
  .column.column_1_1 {
    grid-column: span 12;
  }

  .column.column_1_4,
  .column.column_1_2 {
    grid-column: span 6;
    /* Make half-width for medium screens */
  }

  .column.column_1_6 {
    grid-column: span 6;
    /* Adjust to 50% for better layout */
  }

  /* Stack remaining columns at full width */
  .column.column_1_3,
  .column.column_1_5,
  .column.column_2_3,
  .column.column_2_5,
  .column.column_3_4,
  .column.column_3_5,
  .column.column_4_5,
  .column.column_2_6,
  .column.column_4_6 {
    grid-column: span 12;
  }
}

@media (max-width: 767px) {

  /* Zorg dat alle kolommen de volledige breedte innemen */
  .column {
    grid-column: 1 / -1 !important;
  }

  .row {
    grid-template-columns: 1fr;
    /* EÃ©n kolom op mobiel */
    column-gap: var(--column-gap);
    row-gap: var(--row-gap);
  }
}

/*---hero home----*/

.hero {
  background-image: url("/wp-content/uploads/2025/11/Oku-office-Amsterdam-5-rolgordijn-Florence-410.002-scaled.jpg");
  background-size: cover;
  background-position: center;
  padding-top: 300px;
  min-height: 20vh;
  display: flex;
  align-items: center;
  position: relative;
}

.page-id-174 .hero {
	background-image: url(/wp-content/uploads/2025/11/Oku-office-Amsterdam-3-rolgordijn-Florence-410.002-scaled.jpg);
}

.post-type-archive-project .hero {
	background-image: url(/wp-content/uploads/2025/11/Oku-office-Amsterdam-1-rolgordijn-Florence-410.002-scaled.jpg
);
}

.post-type-archive-producten .hero {
	background-image: url(/wp-content/uploads/2025/11/Oku-office-Amsterdam-9-rolgordijn-Florence-410.002-scaled.jpg

);
}




.blog {
  margin-top: 0px;
}

.hero::after {
  content: "";
  position: absolute;
    background: linear-gradient(to bottom, #000000, #000000 70%);
  z-index: 1;
  width: 100%;
  height: 100%;
  bottom: 0px;
	opacity: .6;
}
 
.hero-content,
.blog-content,
.product-content {
  position: relative;
  z-index: 2;
  max-width: 75%;
}



.hero-content p,
.hero-content h1 {
	    color: white;
/*     text-shadow: -1px -1px 0 #6b6b6b, 1px -1px 0 #6b6b6b, -1px 1px 0 #6b6b6b, 1px 1px 0 #6b6b6b; */
}


.blog-content {
  position: sticky;
  top: 150px;
}

.blog-content.white {
  background-color: #fff;
  padding: 25px;
  border-radius: 15px;
  width: 100%;
  max-width: 100%;
}

.chips {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  padding-block: 25px;
}

.post-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.post-content>* {
  width: 33.33%;
}

@media (max-width: 768px) {
  .post-content>* {
    width: 50%;
  }
}

.share>a {
  text-decoration: underline !important;
}

.chip {
  border: 1px solid black;
  border-radius: 30px;
  padding: 10px 20px;
  width: fit-content;
}

.chip.category {
  display: flex;
  gap: 5px;
}

.post-categories {
  list-style-type: none;
}

.product-title {
  z-index: 2;
  position: relative;
}

.desktop {
  display: block;
}

.mobile {
  display: none;
}

.blog-grid {
  display: flex;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 50px;
}

.blog {
  min-width: 450px;
}

.blog-card img {
  border: 1px solid black;
  aspect-ratio: 2 / 1;
  width: 100%;
  object-fit: cover;
  margin-bottom: 15px;
}


@media (max-width: 768px) {

  .blog {
    min-width: 250px;
  }

  .hero-content,
  .product-content,
  .blog-content {
    max-width: 100%;
  }
	
	.product-content.mobile {
		    padding-top: 27px;
	}

  .desktop {
    display: none;
  }

  .mobile {
    display: block;
  }
}

.hero-buttons {
  margin-top: 50px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

li.knop,
a.knop {
  padding: 10px 17px;
  text-decoration: none;
  border-radius: 20px;
  background-color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #000;
  transition: 300ms ease-in-out all;
  width: fit-content;
}

a.button-secondary,
a.knop.knop-donker {
	  background-color: #000;
	  color: #fff;
}

.product-block {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.product-block .product-image {
	margin-bottom: 12px;
}

.product-hero-image img {
	    border-radius: 12px;
}

.inner-product-overzicht {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

@media all and (max-width: 980px) {
  .inner-product-overzicht {
    grid-template-columns: 1fr;
  }
}

.product-categorie {
  aspect-ratio: 791 / 231;
  border-radius: 20px;
  display: flex;
  align-items: flex-end;
  position: relative;
	background-size: cover;
}

.category-box {
	  border-radius: 20px;
}

.inner-product-overzicht h3 {
  padding: 5%;
  z-index: 1;
}

.product-categorie:after {
  content: "";
  position: absolute;
/*   background: linear-gradient(to bottom, #ffffff00, #ffffff); */
	background: linear-gradient(0deg, #00000090, transparent);
  z-index: 1;
  width: 100%;
  height: 60%;
  bottom: 0px;
  border-radius: 20px;
  transition: 300ms ease-in all;
}

.product-categorie:hover::before {
  background: linear-gradient(0deg, #00000090, transparent);
}

.product-categorie {
  overflow: hidden;
  transition: .35s;
  transition: 300ms ease-in all;
}

.product-categorie:hover {
  /*   margin-top: -5px; */
}

.product-categorie h3 a,
.product-categorie h3 {
  color: #fff;
}

.inner-product-overzicht .category-box {
  display: block;
  overflow: hidden;
  position: relative;
}

.inner-product-overzicht .product-categorie {
  background-size: cover;
  background-position: center;
  position: relative;
}

.inner-product-overzicht .product-categorie::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: inherit;
	    background-color: #6b6b6b;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
  z-index: 1;
	height: 100%;
}

.inner-product-overzicht .category-box:hover .product-categorie::before {
  transform: scale(1.08);
}

.inner-product-overzicht .product-categorie h3 {
  position: relative;
  z-index: 2;
}

@media all and (max-width: 980px) {
	.product-categorie {
		min-height: 104px;
		aspect-ratio: inherit;
	}
}

/*----cta ----*/
.cta-bedrijf {
  padding-bottom: 0px;
}

.bedrijf-wrapper {
  background-color: #ffffff;
  padding-top: 27px;
  padding-left: 27px;
  padding-right: 27px;
  border-radius: 20px 20px 0px 0px;
}

.detail-overzicht {
  background: linear-gradient(to top, #dadada, #ffffff);
}

.detail-overzicht img {
  aspect-ratio: 791 / 231;
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}

@media (max-width: 768px) {
  .detail-overzicht img {
    aspect-ratio: 2/1.5;
  }
}

.cta-bedrijf {
  min-height: 450px;
  background-image: url(/wp-content/uploads/2025/10/JST-Exterieur-3-scaled.jpg);
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
	aspect-ratio: 2660 / 1208;
}

.bedrijf-wrapper {
  position: absolute;
  width: 45%;
  bottom: 0;
	min-width: 220px;

}

@media all and (min-width: 981px) {
	.cta-bedrijf {
			aspect-ratio: 2660 / 1208;
	}
}
@media all and (max-width: 980px) {
	.cta-bedrijf {
			aspect-ratio: initial;
		  min-height: 450px;
	}
	
	
}



.detail-overzicht {
  padding-block: 100px;
}

.detail-header {
  padding-bottom: 100px;
}

.button-group {
  display: flex;
  flex-wrap: wrap;
  gap: 27px;
	margin-top: 12px;
}

.cta-contact {
  min-height: 350px;
  display: flex;
}

@media all and (max-width: 980px) {
	.cta-contact {
		  min-height: inherit;
	}
}

.cta-contact:after {
content: "";
    position: absolute;
    background: linear-gradient(to bottom, #000000, #000000 70%);
    z-index: 1;
    width: 100%;
    height: 100%;
    bottom: 0px;
    opacity: .2;
}
.cta-contact > div{
	z-index: 2;
	
}
.navbar {
  top: 0;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 35px;
background-color: #6b6b6b;
    color: white;
  z-index: 999;
}

@media (max-width: 980px) {
	.cta-contact > div {
		display: block;
	}
	
	.cta-contact .column_2_3  {
		padding-top: 27px;
	}
	
  .navbar>.row {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
}

.logo {
  font-weight: bold;
  font-size: 24px;
  letter-spacing: 2px;
  margin-right: 30px;
}

.footer-top img,
header .logo img {
	width: 170px;
	   
}
header .logo img {
	 filter: invert(1);
}

@media all and (max-width: 980px) {
	.footer-top img,
	header .logo img {
			max-width: 50vw;
	}
}

.nav-links {
  align-items: center;
  display: flex;
  gap: 25px;
  list-style-type: none;
	flex-wrap: wrap;
	    color: white;
}

.nav-links a {
  text-decoration: none;
  color: white;
  font-weight: 400;
  text-transform: uppercase;
	    font-size: 14px;
}

.nav-links .knop a {
	color: black;
}

.icons {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  font-size: 20px;
}

.hamburger {
  display: none;
  font-size: 26px;
  cursor: pointer;
}


.flex {
  display: flex;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 768px) {

  .nav-links {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .hamburger.hidden {
    display: none;
  }
}

.product-specs {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  position: relative;
  z-index: 2;
  margin-block: 40px;
}

.specs-card {
  background: white;
  padding: 40px 30px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  width: 100%;
}

.specs-card h2 {
  font-size: 28px;
  margin-bottom: 25px;
}

.specs-card p {
  font-size: 16px;
  margin-bottom: 20px;
  line-height: 1.6;
}

.specs-card strong {
  display: inline-block;
  margin-bottom: 5px;
}

.brochure::before {
  content: '';
  background: #00000090;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

.brochure {
  position: relative;
  background: url('http://jewel-2025.is-een-geweldige-klant.nl/wp-content/uploads/2025/06/36890ebe8b19d9bb24d3160aefe552e1e6067d55.jpg');
  background-size: cover;
  background-repeat: no-repeat;
  height: 33vh;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-end;
  padding-block: 100px;
}

.brochure h2 {
  color: #fff;
}

.hero {
  padding-top: 240px;
}

.highlighted {
  color: black;
  font-weight: 300;
}

.invert {
  display: inline-block;
  filter: invert(1);
  mix-blend-mode: difference;
}
/* content-page*/
.hero.content-page {
    padding-bottom: 54px !important;
    margin-bottom: 0px;
    min-height: 0;
	    padding-top: 240px;
}

.content-content-page.content-page {
	padding-top: 54px;
}

@media all and (max-width: 980px) {
	.hero {
		padding-top: 140px;
	}
}
/*---footer---*/

footer {
  background-color: #6b6b6b;
  color: white;
}


.witte-fake-2::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: white;
  top: 0px;
  right: -100%;
}

@media (max-width: 768px) {

  .product-block,
  .button-group {
    gap: 5px;
  }
}
    div#gform_wrapper_1, 
div#gform_wrapper_2 {
    background: #fff;
    padding: 50px;
    border-radius: 12px;
}



    input,
    textarea {
        background: #f1f1f1 !important;
        border: 0 !important;
    }
#input_2_13 {
	width:100%;
}
    #gform_wrapper_2 label,
    #gform_wrapper_1 label {
        display: none;
    }

    #gform_submit_button_2,
    #gform_submit_button_1 {
        background: black !important;
        border-radius: 30px;
        width: 300px;
        padding: 20px;
		max-width: 60vw;
    }

#label_2_14_1 {
	display: block!important;
}

.seo-tekst-row > div.column {
	max-width: 1000px;
}

.seo-tekst-row ul {
	padding-left: 12px;
}

.navbar .column {
	width: 100%;
}

#menu-item-479 > ul {
	width: 100px;
	min-width: 100px;
}



/* Default section padding */
.content-page {
    padding: 54px 0px;
}

/* Remove bottom padding when followed by specific sections with SAME background */
.text-section.content-page:not(.bg-white) + .text-section.content-page:not(.bg-white),
.text-section.content-page:not(.bg-white) + .text-image-section.content-page:not(.bg-white),
.text-image-section.content-page:not(.bg-white) + .text-section.content-page:not(.bg-white),
.text-image-section.content-page:not(.bg-white) + .text-image-section.content-page:not(.bg-white),
.text-section.content-page.bg-white + .text-section.content-page.bg-white,
.text-section.content-page.bg-white + .text-image-section.content-page.bg-white,
.text-image-section.content-page.bg-white + .text-section.content-page.bg-white,
.text-image-section.content-page.bg-white + .text-image-section.content-page.bg-white {
    padding-top: 0;
}

/* Paragraph spacing in text and text-image sections */
.text-section.content-page p,
.text-image-section.content-page p {
    padding-bottom: 12px;
}

/* Remove padding from last paragraph */
.text-section.content-page p:last-child,
.text-image-section.content-page p:last-child {
    padding-bottom: 0;
}
.text-image-section img {
	border-radius: 12px;
}

.bg-white {
    background-color: #ffffff;
}