/* ------------------ */
/* ROOT + BASE        */
/* ------------------ */
:root {
  --gap: 20px;
  --container-max-width: 1350px;
  --sticky-top-offset: 80px; /* Increased to account for header */
  --header-height: 80px;
  --header-height-scrolled: 70px;
  --primary-color: #06191F;
  --primary-dark: #e55a2b;
  --text-dark: rgba(0, 25, 31, 1);
  --text-light: rgba(63, 67, 94, 1);
  --bg-light: #f8f9fa;
  --bg-purple: rgba(244, 244, 255, 1);
  --bg-orange: #FF6A00;
  --border-radius: 12px;
  --border-radius-large: 16px;
  --border-radius-xl: 24px;
  --shadow-light: 0 2px 10px rgba(0,0,0,0.05);
  --shadow-medium: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-heavy: 0 8px 30px rgba(0,0,0,0.12);
  --table-spacing: calc(6vw);
}

/* Base Layout */
.container {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gap);
}

.bg_wrapper {
  width: 100%;
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 var(--gap);
  background-color: transparent;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 0;
  margin: 0;
  border-radius: 20px;
  overflow: hidden;
}

.bg_toekomst { background-image: url(../images/bg_toekomst.png); }
.bg_mission { background-image: url(../images/bg_mission.png); }
/*.bg_regio { background-image: url(../images/bg_regio.png); background-size: contain; background-position: right;}*/
.bg_vernieuwen { background-image: url(../images/bg_vernieuwen.png); background-size: contain; background-position: right;}



/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: white;
  z-index: 1000;
  transition: all 0.3s ease;
  /*box-shadow: 0px 0px 20px -3px rgba(0,0,0,0.1);*/
  padding: 15px 0;
}

.site-header.header-hidden {
  transform: translateY(-100%);
}

.site-header.scrolled {
  padding: 10px 0;
  height: var(--header-height-scrolled);
}

.site-header .wrapper_relative {
  height: 100%;
}

.site-header .row {
  height: 100%;
  margin: 0;
}

.site-header .logo {
  display: flex;
  align-items: left;
  width: 200px;
  height: 35px;
  padding: 0;
  margin: 0;
  flex-shrink: 0;
}

.site-header .logo a {
  float: left;
  width: 100%;
  height: 35px;
  background-color: transparent;
  background-repeat: no-repeat;
  background-position: left;
  background-image: url(../images/logo_dvg.svg);
  background-size: cover;
  text-decoration: none;
}

.site-header.scrolled .logo a {
  transform: none;
  margin-top: 2px;
}

.site-content { }

/* Add margin to account for fixed header */
body {
  padding-top: var(--header-height);
  font-family: sans-serif;
  color: var(--text-dark);
}

.row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--gap);
  width: 100%;
  margin-bottom: 0;
}

/* Basic Column System */
.col {
  flex: 1;
  min-width: 0;
  padding: var(--gap);
}

/* Desktop First Approach */
[class^="col-"] {
  box-sizing: border-box;
}

/* Desktop Grid - 12 Column System with proper gap compensation */
.col-12 { flex: 0 0 100%; max-width: 100%; }
.col-11 { flex: 0 0 calc(91.666667% - (var(--gap) * 1/12)); max-width: calc(91.666667% - (var(--gap) * 1/12)); }
.col-10 { flex: 0 0 calc(83.333333% - (var(--gap) * 2/12)); max-width: calc(83.333333% - (var(--gap) * 2/12)); }
.col-9  { flex: 0 0 calc(75% - (var(--gap) * 3/12)); max-width: calc(75% - (var(--gap) * 3/12)); }
.col-8  { flex: 0 0 calc(66.666667% - (var(--gap) * 4/12)); max-width: calc(66.666667% - (var(--gap) * 4/12)); }
.col-7  { flex: 0 0 calc(58.333333% - (var(--gap) * 5/12)); max-width: calc(58.333333% - (var(--gap) * 5/12)); }
.col-6-5 { flex: 0 0 calc(54.166667% - var(--gap) * 0.458333); max-width: calc(54.166667% - var(--gap) * 0.458333); }
.col-6 {  flex: 0 0 calc((100% - var(--gap)) / 2);  max-width: calc((100% - var(--gap)) / 2);}
.col-5-5 { flex: 0 0 calc(45.833333% - var(--gap) * 0.541667); max-width: calc(45.833333% - var(--gap) * 0.541667);}
.col-5  { flex: 0 0 calc(41.666667% - (var(--gap) * 7/12)); max-width: calc(41.666667% - (var(--gap) * 7/12)); }
.col-4 {  flex: 0 0 calc((100% - 2 * var(--gap)) / 3); max-width: calc((100% - 2 * var(--gap)) / 3);}
.col-3 {  flex: 0 0 calc((100% - 3 * var(--gap)) / 4); max-width: calc((100% - 3 * var(--gap)) / 4); }
.col-2-5 { flex: 0 0 calc(20.833333% - var(--gap) * 0.79165);  max-width: calc(20.833333% - var(--gap) * 0.79165); } /* for footer only */
.col-2  { flex: 0 0 calc(16.666667% - (var(--gap) * 10/12)); max-width: calc(16.666667% - (var(--gap) * 10/12)); }
.col-1  { flex: 0 0 calc(8.333333% - (var(--gap) * 11/12)); max-width: calc(8.333333% - (var(--gap) * 11/12)); }

/* Full Bleed Column (no left/right spacing or padding) */
.col-fullbleed {
  flex: 0 0 100vw;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Utility Classes */
.hide { display: none !important; }
.show { display: block !important; }
.flex { display: flex !important; }

/* Alignment Classes */
.text-center { text-align: center; }
.align-items-center { align-items: center; }
.align-items-left, .hero-section .align-items-left  { align-items: left !important; }
.align-left { align-items: left !important; float: left; text-align: left;}
.justify-content-center { justify-content: center; }
.justify-content-between { justify-content: space-between; }

/* helper classes */
.wrapper_relative {
  position: relative;
  top: 0;
  left: 0;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.cleardiv { clear: both; padding: 0; margin: 0; height: 0; }

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

header,
footer {
  background: #e3e3e3;
  color: white;
  padding: 0;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: normal;
  line-height: 1.2;
  color: var(--text-dark);
  margin: 0.5em auto 1.5rem auto;
  text-align: center;
  max-width: 850px;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  text-align: center;
  margin: 0 auto 3rem;
}

.section-title {
  font-size: 2.5rem;
  font-weight: normal;
  line-height: 1.3;
  color: var(--text-dark);
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-dark);
  margin-bottom: 3rem;
  text-align: center;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* buttons */
.btn {
  background: var(--text-dark);
  color: white;
  padding: 0.75rem 1.5rem;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: bold;
  transition: all 0.3s ease;
  display: inline-block;
  border: none;
  cursor: pointer;
  margin-left: auto;
  line-height: 1.2;
  font-weight: 400;
}

.site-header.scrolled .btn { padding: 0.50rem 1.5rem; }

.btn:hover {
  background: var(--primary-dark);
  box-shadow: var(--shadow-medium);
}
.btn.orange {  background: var(--bg-orange); color: #fff; }
.btn.orange:hover { opacity: 0.5; }
.btn.orange.active { opacity: 0.5; }
.btn.orange span { padding: 0 30px 0 0; background-image: url(../images/ic_arrow_right.svg); background-repeat: no-repeat; background-size: 24px 24px; background-position: right center;}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 var(--gap);
}

.header-right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  flex-shrink: 0;
  order: 3;
}

.menu-open .header-right .btn { display: none;}

/* Section Styling */
.hero-section {
  padding: 6rem 0 4rem;
  background: #fff;
  text-align: center;
}

/* Card Components */
.card {
  background: #fff;
  border-radius: var(--border-radius);
  padding: 2rem 1rem;
  margin-bottom: 40px;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  text-align: center;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-medium);
}

.card--large {
  padding: 2.5rem;
  border-radius: var(--border-radius-large);
  box-shadow: var(--shadow-medium);
}

.card--large:hover {
  box-shadow: var(--shadow-heavy);
}

/* icons */
.icon {
  float: left;
  width: 35px;
  height: 35px;
  padding: 0;
  margin: 10px 10px 10px 0;
  background-color: transparent;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.stat-item .icon {
  width: 32px;
  height: 32px;
  margin: 8px 10px 10px 0;
}

/* Center social media icons */
.width_full {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.width_full .icon {
  float: none;
  margin: 0;
}

.icon.ic_agreed { background-image: url(../images/ic_agreed.svg); }
.icon.ic_brain { background-image: url(../images/ic_brain.svg); }
.icon.ic_card { background-image: url(../images/ic_card.svg); }
.icon.ic_euro { background-image: url(../images/ic_euro.svg); }
.icon.ic_honest { background-image: url(../images/ic_honest.svg); }
.icon.ic_houses { background-image: url(../images/ic_houses.svg); }
.icon.ic_leaf { background-image: url(../images/ic_leaf.svg); }
.icon.ic_network { background-image: url(../images/ic_network.svg); }
.icon.ic_office { background-image: url(../images/ic_office.svg); }
.icon.ic_plaza { background-image: url(../images/ic_plaza.svg); }
.icon.ic_leaf { background-image: url(../images/ic_leaf.svg); }
.icon.ic_ruler { background-image: url(../images/ic_ruler.svg); }

/* Icon Base Class */
i.icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-size: 20px auto;
  background-position: 0 1px;
  margin: 0 8px 0 0 !important;
  padding: 0 !important;
  line-height: 1.5;
}

i.icon.ic_call { background-image: url(../images/ic_call.svg); }
i.icon.ic_mail { background-image: url(../images/ic_mail.svg); }

a.icon {
  width: 32px;
  height: 32px;
  text-decoration: none;
}

a.icon.ic_linkedin { background-image: url(../images/ic_linkedin.svg); }
a.icon.ic_whatsapp { background-image: url(../images/ic_whatsapp.svg); }

/* Stats Section */
.stat-item {
  text-align: left;
  padding: 1.2rem 1.6rem;
  background: #fff;
  border-radius: var(--border-radius-xl);
  margin: 0;
  box-shadow: var(--shadow-light);
  transition: transform 0.3s ease;
  font-weight: 400;
  width: 100%;
  font-family: 'Bricolage Grotesque 72pt', sans-serif;
}

.stat-item:hover {
  box-shadow: var(--shadow-medium);
}

.stat-number {
  font-size: 1.6rem;
  font-weight: normal;
  color: var(--text-dark);
  margin: 0;
  letter-spacing: -1px;
}

.stat-label, .stat-label-visible {
  clear: both;
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  text-transform: none;
  letter-spacing: 0;
  text-align: left;
  color: var(--text-dark);
}

.content-label {
  color: var(--text-dark);
  display: inline-block;
  padding: 6px 15px 5px 15px;
  background-color: var(--bg-purple);
  font-size: 1rem;
  border-radius:  var(--border-radius);
  line-height: 1.6;
}

/* contact */
.contact-option {
  display: flex;
  margin-top: 30px;
  padding: 0;
}

.contact-content { font-size: 0.9em;}

.contact-content a:link, .contact-content a:visited {
  text-decoration: none;
  color: var(--text-dark);
  padding: 0 !important;
  margin: 0 !important;
  height: auto !important;
  min-height: auto;
}

.contact-content ul {
  float: left;
  width: 100%;
  list-style: none;
  padding: 0;
  line-height: 1.5;
}

.contact-content li {
  float: left;
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 15px;
}

/* quote */
.page-quote {
  padding-top: 2em !important;
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Push contact-option to bottom within page-quote */
.page-quote .contact-option {
  margin-top: auto;
}

/* Ensure the row has equal height columns */
.row.align-items-center {
  display: flex;
  align-items: stretch;
}

.row.align-items-center > .col {
  display: flex;
  flex-direction: column;
}

.row.align-items-center > .col > .page-quote {
  flex: 1;
}

/* Center text content vertically in mission section */
.row.align-items-center > .col > .page-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}

/* Keep labels at normal height, center only the text content */
.row.align-items-center > .col > .page-content .content-label {
  align-self: flex-start;
  margin-bottom: 1rem;
}

.row.align-items-center > .col > .page-content h2,
.row.align-items-center > .col > .page-content p {
  margin: 0;
}

/* Ensure content-label has normal width, not 100% */
.content-label {
  display: inline-block;
  width: auto;
  max-width: fit-content;
}

/* Align button to the left on desktop */
.row.align-items-center > .col > .page-content .btn {
  align-self: flex-start;
  margin-left: 0;
}

/* Position contact-option at the bottom of each quote box */
.page-quote .contact-option {
  margin-top: auto;
  align-self: flex-start;
}

/* Mission Content */
.bg-photo {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow-medium);
}

table.oprichters {
  width: calc(100% - var(--table-spacing));
  border: 1px solid rgba(234, 232, 237, 1);
  padding: 10px 15px;
  margin: 0 3vw 20px 3vw;
  border-radius: 16px;
}

.contact-thumb {
  float: left;
  width: auto;
  height: 58px;
  padding: 0;
  margin: 0 20px 0 0;
}

.contact-thumb img {
  width: auto;
  height: 58px;
}

/* invest */
.rounded-image {
  display: flex;
  padding: 0 !important;
  margin: 0 !important;
}

.rounded-image img {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

.name_large {
  margin-top: 1.4rem;
  font-size: 1.3rem;
  line-height: 1;
}

.name_function {
  margin-top: 0.4rem;
  margin-bottom: 2.4rem;
  font-size: 1em;
  line-height: 1;
}

/* Footer Styling */
.site-footer {
  background-color: var(--bg-purple);
  background-image: url(../images/bg_pattern_right.svg);
  background-repeat: repeat-y;
  background-size: auto 470px;
  background-position: right top;
  color: white;
  padding: 4rem 0 2rem;
}

.footer-logo {
  display: flex;
  align-items: left;
  text-decoration: none;
  padding: 0 0 20px 0;
}

.footer-logo a:link, .footer-logo a:visited {
  float: left;
  width: 100%;
  height: 40px;
  background-image: url(../images/logo_dvg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: left;
}

.footer-description {
  font-size: 0.9rem;
  color: #ccc;
  margin-bottom: 2rem;
}

.site-footer h4 {
  font-size: 0.9rem;
  font-weight: normal;
  color: #8B8D9C;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.site-footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.site-footer ul li {
  margin-bottom: 0.5rem;
}

.site-footer ul a {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  color: #0C161F;
  text-decoration: none;
  transition: color 0.3s ease;
}

.site-footer ul a:hover {
  color: var(--primary-color);
}

.footer-bottom {
  padding-top: 2rem;
  margin-top: 3rem;
}

.copyright {
  font-family: 'Lato', sans-serif;
  margin: 0;
  text-align: left;
}

.footer-links {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 2rem;
  justify-content: flex-end;
}

.footer-links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.8rem;
  color: #999;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--primary-color);
}

/* border */
.border_radius_large { border-radius: var(--border-radius-large);}
.border_radius_xl { border-radius: var(--border-radius-xl);}

/* spacing helpers */
.padding_top_xs { padding-top: 0.5em; }
.padding_top_s { padding-top: 1em; }
.padding_top_m { padding-top: 3.6em; }
.padding_top { padding-top: 5em; }
.padding_bottom { padding-bottom: 5em; }
.padding_bottom_s { padding-bottom: 2em; }
.padding_bottom_xs { padding-bottom: 0.5em; }
.padding_left { padding-left: 4em; }
.padding_right_s { padding-right: 1em; }
.padding_right { padding-right: 4em; }
.padding_full { padding: 4em 5em; }
.space { float: left; width: 100%; height: 10vh; min-height: 100px; }
.no_space { padding: 0 !important; margin: 0 !important; }
.margin_top_s { margin-top: 1.2em; }

/* widths */
.width_full { width: 100%; }
.max_width_544 { max-width: 554px; }

/* gradient / backgrounds */
.bg_gradient { background: linear-gradient(to right, rgba(246, 245, 247, 1) 30%, rgba(229, 233, 255, 0.8) 60%, rgba(229, 233, 255, 0) 100%); }
.bg_gradient_vert { background: linear-gradient(to bottom, #E5E9FF 0%, rgba(246, 245, 247, 1) 100%); }
.bg_gradient_vert_quotes { background: linear-gradient(to bottom, rgba(230, 233, 255, 0.8) 0%, rgba(229, 233, 255, 0.2) 100%); }
.bg_gradient_vert_light { background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(253, 247, 239, 1) 100%); }
.bg_image {  min-height: 30vw; background-color: transparent; background-position: top center; background-size: 100% auto; background-repeat: no-repeat; }
.bg_clouds {  background-image: url(../images/bg_clouds.png);}
.bg_white { background-color: #fff;}
.bg_pattern_left { background-repeat: no-repeat; background-position: left 250px; background-size: auto 316px; background-image: url(../images/bg_pattern_left.svg); }

/* testing only */
.bg_red { background-color: red;}
.bg_blue { background-color: blue;}
.bg_yellow { background-color: yellow;}
.bg_green { background-color: green;}


.padding_inside { padding: 1em 2em; }

/* font styles */
.handwriting {
    font-family: 'Grape Nuts';
    font-weight: normal;
    font-style: normal;
    font-size: 40px;
    line-height: 1;
    padding-bottom: 20px;
}
