@font-face {
  font-family: 'BentonSans-Medium';
  src: url('fonts/BentonSans-Medium.woff2') format('woff2'),
       url('fonts/BentonSans-Medium.woff') format('woff'),
       url('fonts/BentonSans-Medium.ttf') format('truetype'),
       url('fonts/BentonSans-Medium.eot') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'BentonSans-Bold';
  src: url('fonts/BentonSans-Bold.woff2') format('woff2'),
  url('fonts/BentonSans-Bold.woff') format('woff'),
  url('fonts/BentonSans-Bold.ttf') format('truetype'),
  url('fonts/BentonSans-Bold.eot') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BentonSans-Regular';
  src: url('fonts/BentonSans-Regular.woff2') format('woff2'),
  url('fonts/BentonSans-Regular.woff') format('woff'),
  url('fonts/BentonSans-Regular.ttf') format('truetype'),
  url('fonts/BentonSans-Regular.eot') format('embedded-opentype');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

/* Algemene stijlen */
body, html {
  margin: 0;
  padding: 0;
  height: 150%; /* Scrollruimte */
  font-family: 'BentonSans-Medium';
  background: #efefef; /* Witte achtergrond */
  color: #0A0E1C;
  line-height: 1.4;
}

body {
  margin: 0;
  padding: 0;
  transition: background-color 0.3s ease; /* Soepele overgang van kleur */
}

.image-grid::after {
  font-family: 'BentonSans-Medium';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 85%, #efefef 100%);
  pointer-events: none; /* Zodat het niet de interactie van andere elementen blokkeert */
  z-index: 3; /* Zorg ervoor dat het boven de afbeeldingen komt */
}

.bold-text {
  font-family: 'BentonSans-Bold';
}
/* Vaste header */
.top-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
   /* Donkere achtergrond */
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
}

/* Container voor logo en knop */
.header-content {
  position: relative;
  width: 90%; /* Max breedte */
  display: flex;
  align-items: center;
  justify-content: space-between; /* Verspreid logo en knop */
}


/* Logo gecentreerd */
.logo {
  position: relative; /* In de normale flow van flexbox */
  object-fit: contain; /* Zorgt ervoor dat het logo niet wordt uitgerekt */
  width: 11%; /* Dynamische breedte gebaseerd op de pagina */
  max-width: 150px; /* Maximale grootte voor grote schermen */
  min-width: 50px; /* Minimale grootte voor kleine schermen */
  height: auto; /* Zorg dat de hoogte proportioneel blijft */
  margin-bottom: 10px;
}


/* Knop rechts */
.contact-button {
  font-family: 'BentonSans-medium';
  font-size: 17px;
  padding: 5px 21px;
  background-color: #0A0E1C;
  color: #efefef;
  /* border: 1px solid #ffffff; */
  border-radius: 100px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease;
  text-decoration: none;
  line-height: 2;
}

/* Hover-effect voor de knop */
.contact-button:hover {
   /* Iets lichtere oranje kleur */
   /* Klein vergrotingseffect */
   background-color: #EC6528; /* Iets lichtere oranje kleur */
   transform: scale(1.05); /* Klein vergrotingseffect */
}


/* Button Styling */
.button-container {
  margin-top: 20px; /* Witruimte boven de knop */
  display: flex;
  justify-content: center; /* Horizontaal gecentreerd */
}

.portfolio-button {
  display: inline-flex;
  font-size: 1.3em;
  font-family: 'BentonSans-Medium';
  padding: 15px 30px;
  color: #fff;
  background-color: #ec6528;
  border: none;
  border-radius: 100px;
  text-decoration: none; /* Verwijder standaard linkstijl */
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-content: center;
}

.portfolio-button:hover {
  background-color: #ff8247; /* Lichtere oranje tint bij hover */
  transform: scale(1.05); /* Kleine vergroting bij hover */
}



.portfolio-button-all {
  display: inline-flex;
  font-size: 1.1em;
  font-family: 'BentonSans-Medium';
  padding: 10px 20px;
  color: #fff;
  background-color: #ec6528;
  border: none;
  border-radius: 100px;
  text-decoration: none; /* Verwijder standaard linkstijl */
  transition: background-color 0.3s ease, transform 0.2s ease;
  align-content: center;
}

.portfolio-button-all:hover {
  background-color: #ec6528; /* Lichtere oranje tint bij hover */
  transform: scale(1.05); /* Kleine vergroting bij hover */
}

/* Zorg dat de inhoud onder de vaste header valt */
.image-grid {
  margin-top: 80px; /* Hoogte van de vaste header */
    position: relative;
    overflow: hidden;
  }
  


.content {
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  font-size: 20px;
  line-height: 25px;
}

.content-over-glenn {
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  font-size: 2em;
  line-height: 40px;
}

.content-over-glenn-2 {
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  font-size: 1.8em;
  line-height: 37px;
  padding-left: 16em;
  padding-right: 5em;
  padding-top: 0em;
}

.image-grid {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  perspective: 1000px;
  margin-top: inherit;
}

body .image-grid {
  background: #efefef !important;
}

.grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: calc(3px + 20px * var(--scroll-fraction)); /* Start met 3px en groeit tot maximaal 10px */
  width: 120vw; /* Groter starten voor beeldvulling */
  height: 120vh; /* Groter starten voor beeldvulling */
  position: relative;
  transform-origin: center;
  transform: rotate(-20deg) scale(1); /* Start schuin */
   /* Zwart kader */
  transition: transform 0.2s linear;
}
  

.image {
  background-size: cover;
  background-position: center;
  border-radius: 15px; /* Afgeronde hoeken */
  transition: transform 0.2s ease, opacity 0.2s ease;
  
}

.image.main {
  z-index: 3;
  position: fixed;
  top: 0;
  left: 50%;
  transform-origin: center;
  transform: translate(-50%, 0) scale(1);
  width: auto; /* Schaal dynamisch */
  height: 100%; /* Vul volledige hoogte */
  border-radius: 20px; /* Afgeronde hoeken */
  transition: transform 0.2s ease, border-radius 0.2s ease;
  overflow: hidden;
}



.header-title {
  position: absolute;
  z-index: 3;
  color: white;
  font-size: 6em;
  font-family: 'BentonSans-Bold';
  line-height: 0px;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
  opacity: 1; /* Volledig zichtbaar */
  filter: blur(0); /* Geen blur */
  transition: opacity 0.2s ease, filter 0.2s ease;
  text-align: center;
}



.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 45%); /* Zwarte laag met 50% dekking */
  z-index: 2; /* Onder de tekst maar boven de grid */
  transition: opacity 0.2s ease;
  /* will-change: opacity; */ /* Forceer hardware-acceleratie */
}

.overlay-portfolio {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgb(0 0 0 / 55%); /* Zwarte laag met 50% dekking */
  z-index: 2; /* Onder de tekst maar boven de grid */
  transition: opacity 0.2s ease;
  will-change: opacity; /* Forceer hardware-acceleratie */
}

.image.main {
  will-change: transform; /* Voor de animatie van transform */
}





/* Voor grotere schermen */
@media (min-width: 1200px) {
  .logo {
      width: 8%; /* Kleiner logo op brede schermen */
      max-width: 200px; /* Iets grotere max breedte */
  }
}

/* Voor tablets en kleinere schermen */
@media (max-width: 768px) {
  .logo {
      width: 20%; /* Groter logo op kleinere schermen */
      min-width: 40px; /* Kleinere minimale breedte */
  }
}

/* Voor heel smalle schermen (mobiel) */
@media (max-width: 480px) {
  .logo {
      width: 20%; /* Nog groter logo op mobiele apparaten */
      margin-bottom: 5px; /* Minder ruimte aan de onderkant */
  }
}



.content-block-wrapper {
  background-color: #efefef; /* Background color for the entire section */
  padding-top: 0em;
  padding-bottom: 9em;
}


.content-block {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0px;
  gap: 30px;
  max-width: 1301px;
  margin: 0 auto; /* Centraal op de pagina */
}

.content-block-over-glenn {
  color: #0A0E1C;
  justify-content: flex-end;
  font-size: 1rem;
  display: flex;
  font-family: 'BentonSans-Regular';
}

.left-block {
  flex: 1; /* Linker blok neemt evenredig ruimte in */
}

.left-block h1 {
  font-size: 4.5em; /* Grote titel */
  font-family: 'BentonSans-Bold';
  margin: 0;
  color: #0A0E1C; /* Zwarte tekst */
}

.left-block-over-glenn {
  /* flex: 1; */ /* Linker blok neemt evenredig ruimte in */
  padding-left: 25em;
}

.left-block-over-glenn h1 {
  font-size: 4.5em; /* Grote titel */
  font-family: 'BentonSans-Bold';
  margin: 0;
  color: #0A0E1C; /* Zwarte tekst */
}

.left-block-over-glenn-2 {
  /* flex: 1; */ /* Linker blok neemt evenredig ruimte in */
  padding-left: 25em;
}

.left-block-over-glenn-2 h1 {
  font-size: 4.5em; /* Grote titel */
  font-family: 'BentonSans-Bold';
  margin: 0;
  color: #0A0E1C; /* Zwarte tekst */
}


.left-block-diensten {
  flex: 1; /* Linker blok neemt evenredig ruimte in */
}

.left-block-diensten h1 {
  font-size: 4.5em; /* Grote titel */
  font-family: 'BentonSans-Bold';
  margin: 0;
  color: #0A0E1C; /* Zwarte tekst */
}

.left-block-diensten {
  /* flex: 1; */ /* Linker blok neemt evenredig ruimte in */
  padding-left: 25em;
}

.left-block-diensten h1 {
  font-size: 4.5em; /* Grote titel */
  font-family: 'BentonSans-Bold';
  margin: 0;
  color: #0A0E1C; /* Zwarte tekst */
}

.left-block-diensten {
  /* flex: 1; */ /* Linker blok neemt evenredig ruimte in */
  padding: 2em;
  /* margin-left: 28em; */
}

.left-block-diensten h1 {
  font-size: 4.5em; /* Grote titel */
  font-family: 'BentonSans-Bold';
  margin: 0;
  color: #0A0E1C; /* Zwarte tekst */
  margin-left: 6em;
}

.right-block {
  flex: 1; /* Rechter blok neemt evenredig ruimte in */
  padding-top: 25%;
  /* margin-top: 21em; */
}

.right-block p {
  font-size: 1.1em; /* Grotere paragraaftekst */
  margin-bottom: 25px;
  color: #0A0E1C; /* Grijze tekst */
}

.right-block-over-glenn {
  flex: 1; /* Rechter blok neemt evenredig ruimte in */
  padding-right: 8em;
  padding-bottom: 5em;
}

.right-block-over-glenn p {
  font-size: 1em; /* Grotere paragraaftekst */
  margin-bottom: 25px;
  color: #0A0E1C; /* Grijze tekst */
}

.right-block-over-glenn-2 {
  flex: 1; /* Rechter blok neemt evenredig ruimte in */
  padding-right: 8em;
}

.right-block-over-glenn-2 p {
  font-size: 1.1em; /* Grotere paragraaftekst */
  margin-bottom: 25px;
  color: #0A0E1C; /* Grijze tekst */
}

.cta-button {
  display: inline-block;
  font-size: 1em;
  padding: 10px 20px;
  color: #fff; /* Witte tekst */
  background-color: #ec6528; /* Oranje achtergrondkleur */
  border: none;
  border-radius: 5px;
  text-decoration: none; /* Verwijder standaard linkstijl */
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.cta-button:hover {
  background-color: #ec6528; /* Lichtere oranje tint bij hover */
  transform: scale(1.05); /* Kleine vergroting bij hover */
}

/* Responsive weergave voor kleine schermen */
@media (max-width: 768px) {
  .content-block {
    flex-direction: column; /* Onder elkaar in plaats van naast elkaar */
    text-align: center; /* Tekst gecentreerd */
  }

  .left-block h1 {
    font-size: 3em; /* Kleiner formaat op mobiele apparaten */
  }

  .cta-button {
    margin-top: 20px;
  }
}



/* /* Portfolio Grid Styling */
.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* Twee kolommen */
  gap: 10px;
  padding: 25px;
}

.portfolio-grid-item {
  position: relative;
  overflow: hidden; /* Zorg dat de overlay niet buiten het element komt */
  border-radius: 10px; /* Afronde hoeken */
}

.portfolio-grid img {
  width: 100%; /* Vul de volledige breedte */
  height: auto; /* Behoud de originele verhouding */
  display: block; /* Verwijder eventuele inline-afwijkingen */
  transition: transform 0.3s ease; /* Soepel inzoomen bij hover */
}

.portfolio-grid img:hover {
  transform: scale(1.1); /* Lichte zoom bij hover */
}

/* Overlay */
.portfolio-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6); /* Donkere overlay */
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  opacity: 0; /* Begin onzichtbaar */
  transition: opacity 0.3s ease; /* Soepel tonen bij hover */
}

.portfolio-grid-item:hover .portfolio-overlay {
  opacity: 1; /* Toon overlay bij hover */
}

/* Titel en ondertitel styling */
.portfolio-title {
  font-size: 1.5rem;
  font-family: 'BentonSans-Bold';
  margin: 0;
}

.portfolio-subtitle {
  font-size: 1rem;
  font-family: 'BentonSans-Regular';
  margin-top: 5px;
}

/* Button styling */
.portfolio-button {
  margin-top: 0px;
  padding: 7px 10px;
  font-size: 13px;
  font-family: 'BentonSans-Regular';
  color: white;
  background-color: #ec6528;
  border: none;
  border-radius: 29px;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.portfolio-button:hover {
  background-color: #ec6528; /* Lichtere kleur bij hover */
  transform: scale(1.05); /* Subtiele vergroting */
}

/* Opdrachtgever-tekst styling */
.portfolio-client {
  position: absolute;
  bottom: 10px; /* Positie vanaf de onderkant */
  right: 10px; /* Positie vanaf de rechterkant */
  font-size: 0.8rem;
  font-family: 'BentonSans-Medium';
  color: rgb(255 255 255); /* Witte tekst met een lichte transparantie */
  background: #0A0E1C; /* Zachte achtergrond voor leesbaarheid */
  padding: 10px 10px;
  border-radius: 15px; /* Afronde hoeken */
  pointer-events: none; /* Zorg dat de tekst niet klikbaar is */
}

/* Responsieve aanpassingen */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: 1fr; /* EÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©n kolom op mobiele apparaten */
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .portfolio-title {
    font-size: 1.2rem; /* Kleinere titel op kleine schermen */
  }

  .portfolio-subtitle {
    font-size: 0.9rem; /* Kleinere ondertitel op kleine schermen */
  }
}



/* Content block styling */
.content-block {
  display: flex;
  padding: 0px 20px;
  gap: 20px;
}

.content-block-over-glenn-2 {
  display: flex;
  padding: 10em 3em;
  gap: 20em;
}

.left-block {
  flex: 1;
}

.right-block {
  flex: 1;
}

.right-block p {
  font-size: 1.1em;
  line-height: 1.5;
  font-family: 'BentonSans-Regular';
}





.accordion {
  max-width: 65em;
  margin: 12em auto;
  padding: 0 20px;
}

.accordion-over-glenn {
  max-width: 65em;
  margin: 12em auto;
  padding: 0 20px;
  margin-top: 9em;
}

.accordion-header h2 {
  margin-top: 0;
  margin-bottom: 30px;
  font-size: 4.4rem;
  font-weight: 400;
  line-height: 1
}

.accordion-header .highlight {
  color: #EC6528;
  font-family: 'BentonSans-Bold';
}

.accordion-item {
  border-top: 1px solid #444;
  padding: 20px 0;
}

.accordion-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.accordion-title h3 {
  margin: 0;
  font-size: 2rem;
  font-family: 'BentonSans-Medium';
}

.accordion-title span {
  color: #EC6528;
}

.accordion-toggle {
  font-size: 3.5rem;
  color: #ec6528;
  background: none;
  border: none;
  cursor: pointer;
}

.accordion-content {
  display: none;
  margin-top: 0px;
  font-size: 1rem;
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  line-height: 21px;
}

.accordion-content p {
  margin: 0;
}

/* Container voor de track */
#image-track {
  display: flex;
  gap: 10px; /* Ruimte tussen de afbeeldingen */
  position: relative;
  overflow: hidden; /* Voorkom dat afbeeldingen buiten de container zichtbaar zijn */
  width: 100%; /* Container vult altijd de breedte van het scherm */
  height: 28%; /* Hoogte van de track */
  margin-top: 40px;
}

@media (max-width: 768px) {
  .image-carousel {
    aspect-ratio: 4 / 3; /* Gebruik een andere verhouding voor kleinere schermen */
  }
}

/* Afbeeldingen binnen de track */
.image-carousel {
  flex: 0 0 calc((100% / 2) - 5px); /* 50% breedte, minus de helft van de gap */
  height: auto; /* Hoogte wordt bepaald door de verhouding */
  aspect-ratio: 16 / 9; /* Behoud een vaste breedte-hoogteverhouding, bijvoorbeeld 16:9 */
  position: relative; /* Voor het positioneren van de inhoud */
  overflow: hidden; /* Zorg ervoor dat de inhoud niet buiten de container komt */
  border-radius: 15px; /* Afgeronde hoeken voor een nette uitstraling */
  background: #f0f0f0; /* Achtergrondkleur als placeholder */
  background-size: cover; /* Schaal de achtergrondafbeelding om de hele container te vullen */
  background-position: center; /* Centreer de afbeelding in de container */
}
  

/* Afbeelding zelf (binnen de container) */
.image img {
  width: 100%; /* Vul de volledige breedte van de container */
  height: 100%; /* Vul de volledige hoogte van de container */
  object-fit: cover; /* Zorg dat de afbeelding wordt bijgesneden en geen lege ruimte achterlaat */
  object-position: center; /* Center de afbeelding binnen de container */
  display: block; /* Voorkom inline-afwijkingen van afbeeldingen */
  border-radius: 15px; /* Zorg dat de afbeelding de afgeronde hoeken van de container overneemt */
}

/* Responsieve aanpassing voor mobiele apparaten */
@media (max-width: 768px) {
  /* Zorg dat er slechts ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â©n afbeelding per pagina zichtbaar is */
  .image {
    flex: 0 0 100%; /* Afbeelding neemt 100% van de breedte in */
  }

  #image-track {
     /* Verminder de ruimte tussen afbeeldingen op kleinere schermen */
     height: fit-content;
     margin-top: 2em;
     margin-bottom: 3em;
  }
}

/* General Styles */
.footer {
  background-color: #0A0E1C;
  color: #fff;
  font-family: 'BentonSans-Medium';
  padding: 40px 20px;
  text-align: center;
  margin-top: 0em;
}


.footer a {
  color: #fff;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer a:hover {
  color: #ec6528;
}

/* Base Styles (Desktop Default) */
.footer-nav {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  border-bottom: 1px solid #333;
  padding-bottom: 20px;
  justify-content: space-around;
  font-size: 2em;
  font-family: 'BentonSans-Medium';
}

.footer-nav a {
  font-size: 1.2em;
  font-family: 'BentonSans-Bold';
}

.footer-middle {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.footer-project {
  text-align: left;
}

.footer-project h2 {
  font-size: 4em;
  font-style: italic;
  margin-bottom: 10px;
  padding-left: 25px;
}

.footer-project span {
  font-style: normal;
  font-weight: bold;
}

.footer-contact-person {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding-left: 25px;
}

.footer-contact-person img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.footer-info {
  display: flex;
  justify-content: center; /* Zet alle secties horizontaal in het midden */
  align-items: center; /* Zorg ervoor dat ze verticaal uitgelijnd zijn */
  gap: 34px; /* Ruimte tussen de secties */
  padding: 82px 0px; /* Voeg ruimte boven en onder toe */
  text-align: left; /* Tekst centreren */
  line-height: 25px;
}

.footer-info div {
  flex: 1; /* Verdeel gelijke ruimte onder secties, maar blijft flexibel */
}

@media (max-width: 768px) {
  .footer-info {
    flex-direction: column; /* Zet de secties onder elkaar op mobiel */
    text-align: center; /* Tekst centreren */
    gap: 20px; /* Verminder de ruimte tussen secties */
    padding: 20px 0; /* Minder ruimte boven en onder op mobiel */
  }

  .footer-info div {
    flex: unset; /* Breedte aan inhoud aanpassen */
  }
}


.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #2f2f2f;
  padding: 20px 25px;
  font-size: 0.9em;
}

.footer-links {
  display: flex;
  gap: 15px;
}

.footer-extra {
  font-size: 0.9em;
  text-align: right;
}

.footer-extra a {
  font-style: italic;
}

/* Tablet (iPad) Styles */
@media (max-width: 1024px) {
  .footer-nav {
    font-size: 1.5em;
  }

  .footer-middle {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .footer-project h2 {
    font-size: 3em;
    padding-left: 15px;
  }

  .footer-contact-person {
    padding-left: 15px;
  }

  .footer-info {
    text-align: center;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .footer-extra {
    text-align: center;
  }
}

/* Mobile Styles */
@media (max-width: 768px) {
  .footer-nav {
    font-size: 1.2em;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-middle {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-project {
    text-align: center;
  }

  .footer-project h2 {
    font-size: 3em;
    padding: 0;
  }

  .footer-contact-person {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0;
  }

  .footer-contact-person img {
    width: 40px;
    height: 40px;
  }

  .footer-info {
    text-align: center;
    padding: 0;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
  }

  .footer-extra {
    text-align: center;
    margin-top: 10px;
  }
}






/* Hamburger menu container */
.hamburger-menu {
  position: fixed;
  bottom: 20px; /* Plaats menu onderaan */
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 60px; /* Begint als een rondje */
  height: 60px; /* Rondje */
  background: #0A0E1C;
  border-radius: 50%;
  transition: width 0.3s ease, height 0.3s ease;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  z-index: 1000;
  cursor: pointer;
}

/* Hamburger icoon */
.hamburger-icon {
  font-size: 24px;
  color: #fff;
  cursor: pointer;
  padding: 19px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Menu-items verborgen standaard */
.menu-items {
  display: flex;
  flex-direction: row;
  gap: 15px;
  opacity: 0;
  pointer-events: none;
  margin-left: 10px;
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.menu-items a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  white-space: nowrap;
  transition: color 0.3s ease;
}

.menu-items a:hover {
  color: #ec6528; /* Oranje hover kleur */
}

/* Hover-effect: menu opent */
.hamburger-menu.open {
  width: fit-content; /* Schuift uit naar rechts */
  height: 60px; /* Behoudt dezelfde hoogte */
  border-radius: 30px; /* Maak het ovaal */
  padding-right: 28px;
}

.hamburger-menu.open .menu-items {
  opacity: 1;
  pointer-events: auto;
}

.hamburger-menu.open .hamburger-icon {
  transform: rotate(90deg);
}

/* Responsive */
@media (max-width: 768px) {
  .hamburger-menu {
    width: 50px;
    height: 50px;
  }
  .hamburger-menu.open {
    width: fit-content;
  }
  .menu-items a {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .hamburger-menu {
    width: 50px;
    height: 50px;
  }
  .hamburger-menu.open {
    width: fit-content;
  }
  .menu-items a {
    font-size: 12px;
  }
}


/* Tablet (iPad) specifieke aanpassingen */
@media (max-width: 1024px) {
  .grid-container {
    grid-template-columns: repeat(2, 1fr); /* Twee kolommen op tablets */
    gap: 15px; /* Minder ruimte tussen items */
  }

  .portfolio-button {
    font-size: 1.1em; /* Iets kleinere knoppen */
    padding: 12px 25px;
  }

  .header-title {
    font-size: 4em; /* Iets kleiner op tablets */
  }

  .logo {
    width: 15%; /* Grotere logo weergave op tablets */
  }

  .content-block {
    padding: 20px;
  }
}

/* Mobiele apparaten */
@media (max-width: 768px) {
  .grid-container {
    grid-template-columns: 1fr; /* EÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â©n kolom op mobiel */
    gap: 10px; /* Compactere layout */
  }

  .image-grid {
    height: auto; /* Laat de hoogte meeschalen */
  }

  .header-title {
    font-size: 3em;
    text-align: center; /* Titel centreren op mobiel */
  }

  .logo {
    width: 20%; /* Groter logo op mobiel */
  }

  .content-block {
    flex-direction: column;
    padding: 20px;
  }

  .left-block h1 {
    font-size: 2.5em; /* Kleiner formaat op mobiel */
    margin-bottom: -2em;
  }

  .right-block p {
    font-size: 18px; /* Kleinere tekst */
    font-family: 'BentonSans-Medium';
  }

  .portfolio-button {
    font-size: 1em;
    padding: 10px 20px;
  }

  .footer-info {
    flex-direction: column; /* Footer secties onder elkaar */
    text-align: center; /* Tekst centreren */
    gap: 20px; /* Meer ruimte tussen secties */
  }
}

/* Voor zeer kleine mobiele apparaten */
@media (max-width: 480px) {
  .grid-container {
    gap: 5px; /* Compactere ruimte */
  }

  .logo {
    width: 25%; /* Nog groter logo */
  }

  .hamburger-menu {
    width: 45px;
    height: 45px;
  }

  .hamburger-icon {
    font-size: 20px; /* Kleiner icoon */
  }

  .header-title {
    font-size: 2em;
     /* Meer ruimte tussen regels */
    font-family: 'BentonSans-Bold';
  }

  .footer-info div {
    margin-bottom: 20px; /* Extra ruimte tussen secties */
  }

  .portfolio-button {
    font-size: 0.9em;
    padding: 8px 15px;
  }
}




/* Voor desktop: Open menu bij hover */
@media (min-width: 1025px) {
  .hamburger-menu:hover {
    width: fit-content; /* Schuift uit naar rechts */
    height: 60px;
    border-radius: 30px; /* Maak het ovaal */
    padding-right: 28px;
  }

  .hamburger-menu:hover .menu-items {
    opacity: 1;
    pointer-events: auto;
  }

  .hamburger-menu:hover .hamburger-icon {
    transform: rotate(90deg);
  }
}


/* Responsive */
@media (max-width: 768px) {
  .hamburger-icon {
  padding: 14px;
  }

}


/* Titel en subtitel styling */
.title {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
}

.subtitle {
  font-size: 1rem;
  margin: 10px 0 0;
  padding: 0;
}


/* Standaard stijl voor de woorden */
.highlight {
  color: #0A0E1C;
  transition: color 0.3s ease; /* Animatie voor een vloeiende overgang */
}

/* Kleurverandering bij hover */
#jouw:hover {
  color: #EC6528;
 
}

#beelden:hover {
  color: #EC6528; /* Kies een kleur voor 'beelden' */
}


/* Contact form */ 




.form {
  border: 1px solid var(--base-color--neutral-light);
  color: var(--base-color--black);
  background-color: #161B32;
  border-radius: 1rem;
  min-width: 100%;
  max-width: 100%;
  min-height: 4.5rem;
  margin-bottom: 0;
  padding: 1.25rem 1rem 1.25rem 2rem;
  font-size: 1.25rem;
  transition: border-color .3s
}

.container {
  text-align: center;
  padding: 10em;
}

.container-investering-contact {
  text-align: center;
  padding: 1em;
  padding-bottom: 10em;
}

.container-over-glenn {
  text-align: center;
  padding-top: 0em;
  padding-bottom: 11em;
}

h1 {
  font-size: 3.5rem;
  margin-bottom: -10px;
  font-family: 'BentonSans-Bold';
}

.highlight-left h1.regular-style {
  font-size: 5em;
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
}

.subheading {
  font-size: 20px;
  margin-bottom: 50px;
  color: #EC6528;
}

input[type="email"] {
  padding: 20px;
  border: 1px solid #ccc;
  border-radius: 15px;
  /* margin-bottom: 15px; */
  background: transparent;
}

button {
  padding: 18px 20px;
  background-color: #efefef;
  color: #000000;
  border: none;
  border-radius: 2em;
  cursor: pointer;
  font-size: 15px;
  border: 1px solid #ccc;
}



.disclaimer {
  font-size: 0.8rem;
  margin-top: 15px;
  color: #777;
}

.disclaimer a {
  text-decoration: none;
  color: #0A0E1C;
}


input::placeholder {
  font-size: 20px; /* Pas dit aan naar de gewenste grootte */
  color: #8888886d; /* Dit is optioneel, om de kleur van de placeholder te veranderen */
  font-family: 'BentonSans-Medium';
}

input {
  font-size: 20px; /* Pas dit aan naar de gewenste grootte voor de ingevoerde tekst */
  color: #333; /* Kleur van de ingevoerde tekst */
  font-family: 'BentonSans-Medium'; /* Lettertype */
}




.input-wrapper {
  position: relative;
  display: inline-block;
}

input {
  font-size: 16px;
  padding: 10px;
  border: 2px solid #ccc;
  border-radius: 4px;
  width: 41em;
}

label.border-text {
  position: absolute;
  top: -6px;  /* Pas de positie aan voor de gewenste plaats */
  left: 27px;
  font-size: 17px;
  background-color: #f1f0f0;  /* Dit zorgt ervoor dat de tekst leesbaar is boven de rand */
  padding: 0 10px;
  font-family: 'BentonSans-Medium';
}



/* Responsive Design */





@media (max-width: 1200px) {
  .container {
    padding: 5em;
  }

  h1 {
    font-size: 3rem;
  }

  .subheading {
    font-size: 18px;
  }

  input {
    width: 93%;
    font-size: 18px;
  }

  .input-wrapper {
    width: 80%;
  }

  label.border-text {
    font-size: 16px;
  }
}

@media (max-width: 768px) {
  .form {
    padding: 1rem;
    font-size: 1rem;
  }

  .container {
    padding: 3em;
  }

  h1 {
    font-size: 2.5rem;
  }

  .subheading {
    font-size: 16px;
  }

  input {
    width: 100%;
    padding: 15px;
    font-size: 16px;
  }

  button {
    font-size: 0.9rem;
    padding: 15px 18px;
  }

  label.border-text {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .form {
    padding: 0.75rem;
    font-size: 0.9rem;
  }

  .container {
    padding: 2em;
  }

  h1 {
    font-size: 20px;
  }

  .subheading {
    font-size: 9px;
    margin-top: 20px;
    margin-bottom: 20px;
  }

  input {
    width: 80%;
    padding: 10px;
    font-size: 14px;
  }

  button {
    font-size: 0.8rem;
    padding: 20px 15px;
  }

  label.border-text {
    font-size: 12px;
  }

  .disclaimer {
    font-size: 0.7rem;
  }
}





/* Styling voor het woord 'fotograaf' */
.content .hover-image {
  position: relative;
  display: inline-block; /* Zorg dat de afbeelding relatief aan het woord wordt weergegeven */
  cursor: pointer; /* Laat een pointer zien bij hover */
}

.content-over-glenn .hover-image {
  position: relative;
  display: inline-block; /* Zorg dat de afbeelding relatief aan het woord wordt weergegeven */
  cursor: pointer; /* Laat een pointer zien bij hover */
}

/* De verborgen afbeelding */
.content .hover-image .popup-image {
  position: absolute;
  top: -120px; /* Plaats de afbeelding boven het woord */
  left: 50%; /* Centreer de afbeelding ten opzichte van het woord */
  transform: translateX(-50%); /* Houd de afbeelding gecentreerd */
  width: 150px; /* Breedte van de afbeelding */
  height: auto; /* Behoud de aspect ratio */
  border-radius: 10px; /* Maak de hoeken afgerond */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schaduw voor diepte */
  opacity: 0; /* Verberg de afbeelding standaard */
  visibility: hidden; /* Verberg de afbeelding standaard */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Soepel zichtbaar maken */
  z-index: 10; /* Zorg dat de afbeelding boven andere elementen staat */
}

/* De verborgen afbeelding */
.content-over-glenn .hover-image .popup-image {
  position: absolute;
  top: -120px; /* Plaats de afbeelding boven het woord */
  left: 50%; /* Centreer de afbeelding ten opzichte van het woord */
  transform: translateX(-50%); /* Houd de afbeelding gecentreerd */
  width: 150px; /* Breedte van de afbeelding */
  height: auto; /* Behoud de aspect ratio */
  border-radius: 10px; /* Maak de hoeken afgerond */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); /* Schaduw voor diepte */
  opacity: 0; /* Verberg de afbeelding standaard */
  visibility: hidden; /* Verberg de afbeelding standaard */
  transition: opacity 0.3s ease, visibility 0.3s ease; /* Soepel zichtbaar maken */
  z-index: 10; /* Zorg dat de afbeelding boven andere elementen staat */
}

/* Toon de afbeelding bij hover */
.content .hover-image:hover .popup-image {
  opacity: 1;
  visibility: visible;
  margin-top: -30px;
}

/* Toon de afbeelding bij hover */
.content-over-glenn .hover-image:hover .popup-image {
  opacity: 1;
  visibility: visible;
  margin-top: 9px;
}

.portfolio-grid-item {
  display: none; /* Standaard verborgen */
}

.portfolio-grid-item.show {
  display: block; /* Zichtbaar bij het toepassen van de filter */
}



/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
}

.filter-btn {
  padding: 10px 20px;
  border: none;
  background-color: #0A0E1C;
  color: white;
  cursor: pointer;
  border-radius: 5px;
  transition: background-color 0.3s ease;
}

.filter-btn:hover {
  background-color: #ec6528;
}

.filter-btn.active {
  background-color: #ec6528;
}



/* Filter Buttons */
.filter-buttons {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 35px 0;
  margin-top: 10em;
}

.btn-portfolio {
  border: none;
  outline: none;
  padding: 12px 20px;
  background-color: #161B32;
  color: white;
  cursor: pointer;
  border-radius: 30px;
  transition: background-color 0.3s ease;
  font-family: 'BentonSans-Medium';
}

.btn-portfolio:hover {
  background-color: #ec6528;
}

.btn-portfolio.active {
  background-color: #ec6528;
}

/* Portfolio Grid */
.portfolio-grid {
  display: grid;
  gap: 10px;
}

.portfolio-grid-item {
  background: transparent;
  border-radius: 15px;
  overflow: hidden;
  text-align: center;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: none; /* Default hidden */
  height: 99%;
}

.portfolio-grid-item img {
  width: 100%;
  height: auto;
  border-bottom: 2px solid #f4f4f4;
}

.portfolio-grid-item.show {
  display: block;
}

.portfolio-overlay {
  padding: 15px;
}

.portfolio-title {
  font-size: 1.2rem;
  font-family: 'BentonSans-Bold';
  margin-bottom: 10px;
}

.portfolio-subtitle {
  font-size: 1rem;
  font-family: 'BentonSans-Regular';
  color: #ffffff;
}

/* Voor tablets (iPad en vergelijkbaar) */
@media (max-width: 1024px) {
  .portfolio-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* Twee kolommen */
    gap: 15px;
  }

  .filter-buttons {
    flex-wrap: wrap;
    gap: 8px; /* Kleiner gat tussen knoppen */
  }

  .filter-btn {
    padding: 8px 16px; /* Kleinere knoppen */
    font-size: 14px;
  }

  .btn-portfolio {
    padding: 10px 18px;
    font-size: 14px;
  }
}

/* Voor mobiele apparaten (smartphones) */
@media (max-width: 768px) {
  .portfolio-grid {
    grid-template-columns: repeat(1, 1fr); /* EÃƒÂ©n kolom */
    gap: 10px;
  }

  .filter-buttons {
     /* Knoppen onder elkaar */
     align-items: center;
     gap: 6px;
     max-width: 15em;
     padding-left: 40px;
     margin-top: 2em;
     margin-bottom: 0em;
  }

  .filter-btn,
  .btn-portfolio {
    padding: 10px 15px;
    font-size: 12px;
     /* Breedte aangepast voor kleinere schermen */
  }

  .portfolio-grid-item {
    margin: 0 auto;
    width: 90%;
  }

  .portfolio-title {
    font-size: 1rem; /* Kleinere titeltekst */
  }

  .portfolio-subtitle {
    font-size: 0.9rem; /* Kleinere subtiteltekst */
  }
}


.scroll-container {
  position: relative;
  width: 100%;
  height: 20em;
  display: flex;
  justify-content: center;
  align-items: center;
}

.mask {
  position: relative;
  width: 80%;
  height: 305px;
   /* Zwart masker */
  overflow: hidden;
}

.text {
  font-size: 4rem;
  font-family: 'BentonSans-Bold';
  color: #0A0E1C;
  transform: translateY(100%); /* Tekst verborgen onderaan */
  transition: transform 0.3s ease-in-out;
  white-space: nowrap;
}

.mask.visible .text {
  transform: translateY(0%); /* Tekst zichtbaar */
}

.text span {
  color: #ec6528; /* Rode punt */
}




/* Originele stijl voor grote schermen blijft behouden */
.slider-container {
  display: flex;
  gap: 2rem;
  max-width: 90%;
  align-items: center;
  padding: 4em;
  margin-left: 2em;
  margin-top: 15em;
}

.slider-text {
  max-width: 25em;
  margin-bottom: 6em;
}

.slider-text h1 {
  font-size: 5rem;
  margin-bottom: 0rem;
  font-family: 'BentonSans-Bold';
  color: #EDF5FC;
}

.slider-text p {
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  font-family: 'BentonSans-Regular';
}


#carousel-body {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Overlay toevoegen */
#carousel-body::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.35); /* Semi-transparante overlay */
  z-index: 1; /* Zorgt ervoor dat het onder de inhoud blijft */
}

/* Zorg ervoor dat de inhoud zichtbaar blijft */
#carousel-body > * {
  position: relative;
  z-index: 2;
}


.carousel {
  flex: 1;
  position: relative;
  overflow: hidden;
  width: 900px;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  height: 30em;
  margin-top: 2em;
}

.carousel-item {
  flex: 0 0 300px;
  margin-right: 20px;
  overflow: hidden;
  position: relative;
  border-radius: 15px;
}


.carousel-item img {
  width: 100%;
  height: 500px;
  object-fit: cover;
}

.carousel-item .caption {
  position: absolute;
  bottom: 1em;
  left: 1em;
  color: #fff;
}

.carousel-item .caption h3 {
  margin: 0;
  font-size: 1.2rem;
}

.carousel-item .caption p {
  margin: 0;
  font-size: 0.9rem;
}

.carousel-buttons {
  display: flex;
  margin-top: 15px;
  padding: 0em;
  gap: 10px;
}

.carousel-button {
  background: #EDF5FC;
  color: #0A0E1C;
  border: none;
  padding: 1em;
  border-radius: 50%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}

.carousel-button:hover {
  background: #EDF5FC;
}

/* Responsieve stijlen voor schermen kleiner dan 1024px */
@media (max-width: 1024px) {
  .slider-container {
    flex-wrap: wrap;
    padding: 2em;
    margin-left: auto;
    margin-right: auto;
  }

  .slider-text {
    flex: 1 1 100%;
    max-width: 100%;
    text-align: center;
    margin-bottom: 0;
  }

  .carousel {
    flex: 1 1 100%;
    width: 100%;
  }

  .carousel-track {
    margin-top: 1em;
    height: auto;
  }

  .carousel-item {
    flex: 0 0 calc(100% - 20px); /* Volledige breedte op kleinere schermen */
    max-width: 100%;
  }

  .carousel-item img {
    height: 300px; /* Aanpassen aan kleinere schermen */
  }

  .carousel-buttons {
    justify-content: center;
  }
}

/* Extra aanpassingen voor schermen kleiner dan 768px */
@media (max-width: 768px) {
  .slider-text h1 {
    font-size: 2rem;
  }

  .slider-text p {
    font-size: 16px;
  }

  .carousel-item img {
    height: 250px;
  }

  .carousel-button {
    width: 40px;
    height: 40px;
    padding: 0.8em;
  }
}

/* Aanpassingen voor schermen kleiner dan 480px */
@media (max-width: 480px) {
  .slider-text h1 {
    font-size: 1.5rem;
  }

  .slider-text p {
    font-size: 14px;
  }

  .carousel-item img {
    height: 200px;
  }
}


.section-title {
  text-align: center;
  font-size: 5em; /* Standaard grootte */
  font-family: 'BentonSans-Bold';
  margin: 0; /* Ruimte boven en onder */
  line-height: 1.2; /* Ruimte tussen regels */
  padding-bottom: 1em;
}

.section-title span {
  display: inline-block;
}

.section-title .mijn {
  color: #efefef;
}

.section-title .diensten {
  color: #EC6528;
}

.service-section-wrapper {
  background-color: #0A0E1C; /* Background color for the entire section */
  padding-top: 8em;
  padding-bottom: 10em;
}

.service-section {
  border-bottom: 1px solid #333;
  padding: 20px 0;
  max-width: 65em;
  margin: 0 auto;
}

.service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 3em;
  color: #EFEFEF;
  cursor: pointer;
  padding: 10px 0;
  font-family: 'BentonSans-Bold';
}

.service-header span {
  font-size: 1em;
  margin-right: 10px;
  color: #EC6528;
  text-align: left;
}

.service-header:hover {
  color: #EC6528;
}

.service-header .icon {
  width: 28px;
  height: 28px;
  border: 2px solid #EC6528;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #EC6528;
  transition: transform 0.3s;
  font-size: 14px;
  margin-left: auto; /* Push the icon to the far right */
}

.service-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: #EFEFEF;
  padding-left: 20px;
  font-size: 16px;
  font-family: 'BentonSans-Regular';
}

.service-content p {
  margin: 5px 0;
  font-size: 1em;
}

.open .service-content {
  max-height: 150px;
  padding-right: 6em;
  font-family: 'BentonSans-Regular';
  line-height: 28px;
}

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

/* Media queries for responsiveness */
@media (max-width: 768px) {
  .service-header {
    flex-direction: row;
    justify-content: space-between;
    font-size: 1.8em;
    padding: 18px 0;
    padding-left: 1em;
    padding-right: 1em;
  }

  .service-header .icon {
    margin-left: auto;
    font-size: 12px;
    width: 24px;
    height: 24px;
  }

  .service-content {
    font-size: 14px;
    padding-left: 15px;
  }
}

@media (max-width: 480px) {
  .service-section {
    padding: 15px 10px;
  }

  .service-header {
    font-size: 1.5em;
  }

  .service-header span {
    font-size: 0.9em;
  }

  .service-content {
    font-size: 13px;
    padding-left: 10px;
  }
}

/* Responsive Design */
@media (max-width: 1024px) { /* Voor tablets */
  .section-title {
    font-size: 2rem; /* Kleiner lettertype voor tablets */
    margin: 30px 0; /* Iets minder ruimte boven en onder */
  }
}

@media (max-width: 768px) { /* Voor mobiele apparaten */
  .section-title {
    font-size: 1.8rem; /* Nog kleiner lettertype voor mobiel */
    margin: 20px 0; /* Compactere ruimte boven en onder */
  }
}



.social-gallery-wrapper {
   /* Background color for the entire section */
   padding-top: 1em;
   padding-bottom: 10em;
   background: linear-gradient(0deg, rgba(239,239,239,1) 0%, rgba(10,14,28,1) 91%);
}


.social-gallery {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 3.5em;
  justify-content: center;
  margin-top: 0em;
  margin-bottom: -9em;
}

.social-gallery-item {
  flex: 0 0 auto;
  width: 20em; /* Default size */
  height: 24em; /* Maintains aspect ratio for 1080x1350 */
  position: relative;
  scroll-snap-align: start;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  background: white;
  transition: transform 0.3s ease;
}

.social-gallery-item img {
  object-fit: cover; /* Zorgt voor beeldvulling */
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease; /* Laat de transitie-effecten staan */
  transform-origin: center center; /* Zorgt dat de vergroting vanuit het midden gebeurt */
}

.social-gallery-item:hover {
  z-index: 10; /* Zet de vergrote item boven andere content */
}

.social-gallery-item:hover img {
  transform: scale(1.2); /* Vergroot de afbeelding verder */
}

/* Vergroot de container zelf ook als je wilt dat het groter wordt */
.social-gallery-item:hover {
  height: 480px; /* Vergroot de container als je wilt dat het over de rest heen valt */
  margin-top: -50px; /* Verplaatst het item naar boven, zodat het over andere content valt */
  margin-bottom: -3em;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .social-gallery {
    flex-direction: column;
    align-items: center;
  }

  .social-gallery-item {
    width: 90%;
    height: auto;
  }

  .social-gallery-item:hover {
    height: auto;
  }
}


.button-container {
  display: flex;
  justify-content: center; /* Horizontaal centreren */
  align-items: center;     /* Verticaal centreren */
             /* Zorgt ervoor dat de container de volledige hoogte van het scherm beslaat */
  margin: 0;               /* Verwijdert standaard marges */
}

.custom-button {
  background-color: transparent; /* Zorg ervoor dat de achtergrond transparant is */
  border: 2px solid #ec6528; /* Border kleur */
  color: #0a0e1c; /* Tekst kleur */
  padding: 10px 20px; /* Ruimte rond de tekst */
  font-size: 1.2em; /* Lettergrootte */
  cursor: pointer; /* Geeft aan dat het een knop is */
  transition: background-color 0.3s ease, color 0.3s ease; /* Voeg een overgang toe voor interactie */
  font-family: 'BentonSans-Medium';
}

.custom-button:hover {
  background-color: #ec6528; /* Achtergrondkleur verandert wanneer de knop wordt ingedrukt */
  color: #ffffff; /* Verander de tekstkleur bij hover */
}




.team-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 50px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 90px;
}

.image-container {
  position: relative;
  width: 500px;
  opacity: 0;
  transform: translateX(-100px);
  transition: all 1s ease-in-out;
}

.image-container img.team-image {
  width: 100%;
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.2);
}

.image-container .image-text {
  position: absolute;
  bottom: 0;
  left: 20px;
  color: #fff;
  font-size: 1.2em;
  font-family: 'BentonSans-Regular';
}

.team-content {
  flex: 1;
  max-width: 600px;
}

h5 {
  font-size: 4em;
  margin-bottom: 20px;
  font-family: 'BentonSans-Bold';
  margin-bottom: 30px;
  margin-left: 25px;
}

h2 {
  font-size: 4.25em;
  font-family: 'BentonSans-Bold';
  margin-bottom: 10px;
  line-height: 1;
}

h3 {
  font-size: 1.4rem;
  line-height: 0.1;
  margin-bottom: 18px;
  font-family: 'BentonSans-Bold';
  margin-top: 2em;
}

.h2-meet {
  font-size: 1em;
  margin-bottom: 20px;
  font-family: 'BentonSans-Regular';
  line-height: 28px;
}

.contact-info {
  display: flex;
  align-items: center;
  margin-top: 20px;
  gap: 10px;
}

.contact-info img.profile-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
}

.contact-info a {
  color: #0078ff;
  text-decoration: none;
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Klasse voor de animatie bij scroll */
.image-container.visible {
  opacity: 1;
  transform: translateX(0);
}

/* Responsive Design */

/* Tablets (iPad) */
@media screen and (max-width: 1024px) {
  .team-section {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .image-container {
    width: 50%;
  }

  .team-content {
    max-width: 80%;
  }
}

/* Mobiele apparaten */
@media screen and (max-width: 768px) {
  .team-section {
    flex-direction: column;
    text-align: center;
    gap: 20px;
    padding: 20px;
  }

  .image-container {
    width: 80%;
    margin: 0 auto;
  }

  .team-content {
    max-width: 100%;
  }

  h2 {
    font-size: 2.5em;
  }

  .h2-meet {
    font-size: 1em;
    margin-bottom: 20px;
    font-family: 'BentonSans-Regular';
    line-height: 29px;
  }

  .contact-info {
    flex-direction: column;
    gap: 5px;
  }

  .contact-info img.profile-icon {
    width: 40px;
    height: 40px;
  }
}




.hero {
  position: relative;
  display: flex;
  align-items: flex-end; /* Plaatst de content onderin */
  justify-content: flex-end; /* Plaatst de content aan de rechterkant */
  height: 100vh;
  overflow: hidden;
  color: white;
  margin-left: auto;
  margin-right: auto;
  width: min(100vw - 3rem,85.333rem);
  margin-top: 5em;
}

.hero-image {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 98%;
  height: 96%;
  object-fit: cover; /* Zorgt ervoor dat de afbeelding de container vult */
   /* Zet de afbeelding achter de tekst */
  border-radius: 15px;
  z-index: 1;
}

.overlay-hero {
  position: absolute;
  top: 20px;
  left: 15px;
  width: 98%;
  height: 96%;
  background: rgb(0 0 0 / 45%); /* Zwarte laag met 50% dekking */
  z-index: 2; /* Onder de tekst maar boven de grid */
  transition: opacity 0.2s ease;
  border-radius: 15px; /* Forceer hardware-acceleratie */
}


.hero-content {
  position: relative;
   /* Afstand vanaf de rechter- en onderkant */
  max-width: 500px;
   /* Transparant donker overlay */
  text-align: left;
  animation: fadeIn 2s ease-in-out;
  left: -6em;
  top: -4em;
  z-index: 3;
}

.hero-description {
  font-size: 1.1rem;
  line-height: 1.6;
  font-family: 'BentonSans-Regular';
}

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




/* Algemene stijl voor de sectie */
.project-hero {
   /* Roze achtergrondkleur */
   padding: 40px;
   display: flex;
   justify-content: center;
   align-items: center;
   text-align: left;
   margin-top: 5em;
}

.project-container {
  display: flex;
  flex-wrap: wrap; /* Zorgt ervoor dat content zich aanpast op kleinere schermen */
  justify-content: space-between;
  max-width: 1200px;
  width: 100%;
}

.project-text {
  flex: 1;
  padding: 20px;
  min-width: 300px;
  font-family: 'BentonSans-Regular';
}

.project-text h2 {
  font-size: 2rem;
  margin-bottom: 20px;
  font-family: 'BentonSans-Bold';
  color: #0A0E1C;
}

.project-text p {
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 20px;
  font-family: 'BentonSans-Regular';
  color: #0A0E1C;
}

.project-text blockquote {
  font-size: 1.5rem;
  margin: 20px 0;
  text-align: center;
  font-family: 'BentonSans-Medium';
  color: #0A0E1C;
  margin-left: -11px;
}

.project-button {
  display: inline-block;
  background-color: #EC6528;
  color: #EDF5FC;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 35px;
  font-size: 1rem;
  margin-top: 10px;
  transition: background-color 0.3s ease;
  font-family: 'BentonSans-Medium';
}

.project-button:hover {
  background-color: #0A0E1C; /* Lichtere rode kleur bij hover */
}

.project-image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  min-width: 300px;
}

.project-phone {
  max-width: 25em;
  margin: 0 10px;
  transform: rotate(-3deg);
  transition: transform 0.3s ease;
  border-radius: 15px;
}

.project-phone:nth-child(2) {
  transform: rotate(10deg); /* Draait de tweede telefoon iets naar rechts */
}

.project-phone:hover {
  transform: scale(1.1) rotate(0); /* Zoomt in en reset rotatie bij hover */
  margin-top: -2em;
}

/* Masonry image gallery styling */
.gallery {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.gallery .images {
  gap: 15px;
  max-width: 92%;
  margin: 38px 0px;
  columns: 2;
  list-style: none;
  padding-right: 2.5em;
}
.gallery .images .img {
  display: flex;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  margin-bottom: 14px;
  border-radius: 15px;
}
.gallery .images img {
  width: 100%;
  transition: transform 0.2s ease;
}
.gallery .images .img:hover img {
  transform: scale(1.1);
}
/* Image lightbox styling */
.lightbox {
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  position: fixed;
  visibility: hidden;
  background: rgba(0,0,0,0.65);
}
.lightbox.show {
  visibility: visible;
}
.lightbox .wrapper {
  position: fixed;
  left: 50%;
  top: 50%;
  width: 100%;
  padding: 20px;
  max-width: 850px;
  border-radius: 6px;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0.9);
  transition: transform 0.1s ease;
}
.lightbox.show .wrapper {
  opacity: 1;
  pointer-events: auto;
  transform: translate(-50%, -50%) scale(1);
}
.wrapper :where(header, .details) {
  display: flex;
  align-items: center;
}
.wrapper header {
  justify-content: space-between;
}
header .details i {
  font-size: 1.7rem;
}
header .details span {
  font-size: 1.2rem;
  margin-left: 10px;
}
header .buttons i {
  height: 40px;
  width: 40px;
  cursor: pointer;
  display: inline-block;
  color: #fff;
  margin-left: 10px;
  background: #EC6528;
  font-size: 1.25rem;
  line-height: 40px;
  text-align: center;
  border-radius: 4px;
  transition: 0.2s ease;
}
header .buttons i:hover {
  background: #EC6528;
}
.wrapper .preview-img {
  display: flex;
  justify-content: center;
  /* margin-top: 25px; */
}
.preview-img .img {
  max-height: 65vh;
}
.preview-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
/* Responsive media query code */
@media screen and (max-width: 688px) {
  .lightbox .wrapper {
    padding: 12px;
    max-width: calc(100% - 26px);
  }
  .wrapper .preview-img {
    margin-top: 15px;
  }
  .gallery .images {
    max-width: 100%;
    padding: 0 13px;
    margin-top: 20px;
  }
}


.project-info-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  height: 50vh; /* Zorgt ervoor dat de container de volledige hoogte van het scherm inneemt */
  margin-bottom: 0em;
}

.project-title {
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 0rem;
  font-family: 'BentonSans-Bold';
  color: #0A0E1C;
}

.project-highlight {
  display: block;
  margin-top: 1rem;
}

.project-link {
  color: #EC6528;
  text-decoration: none;
  position: relative;
  font-size: 2.5rem;
  font-weight: bold;
  margin: 0 5px;
}

.project-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background-color: #2b002b;
  transition: width 0.3s ease;
}

.project-link:hover::after {
  width: 100%;
}

.project-next {
  display: inline-block;
  margin-top: 4rem;
  font-size: 1.3rem;
  font-style: italic;
  color: #0A0E1C;
  text-decoration: none;
  font-family: Caveat;
  font-weight: bold;
  margin-left: 31em;
  margin-bottom: 10em;
}

.project-next:hover {
  text-decoration: underline;
}








.fullscreen-container {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 93%;
  margin-left: 50px;
}

.grid-item {
  background-color: #EDF5FC;
  border-radius: 10px;
  height: 30em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
  padding: 20px;
}

.grid-item .content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin-top: -10em;
  margin-left: 1em;
}

.grid-item .number {
  font-size: 6rem;
  color: #EC6528;
  font-family: 'BentonSans-Bold';
}

.grid-item .description {
  font-size: 2rem;
  color: #0A0E1C;
  margin-top: 38px;
  font-family: 'BentonSans-regular';
}

.grid-item .hover-content {
  margin-top: 0px;
  opacity: 0;
  max-height: 0;
  text-align: center;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.grid-item:hover .hover-content {
  opacity: 1;
  max-height: 85px;
}

.hover-content p {
  font-size: 2.5rem;
  line-height: 45px;
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  margin-top: 1em;
  text-align: start;
}

.btn {
  text-decoration: none;
  background-color: #EC6528;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
  margin-left: -13em;
}

.btn:hover {
  background-color: #0A0E1C;
}



.floating-buttons {
  position: fixed;
  bottom: 15px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.floating-buttons button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #0A0E1C;
  color: #EDF5FC;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.floating-buttons button:hover {
  background-color: #EC6528;
  transform: scale(1.1);
}

.floating-buttons button:active {
  transform: scale(0.9);
}




/* investerings pagina */ 

.investment-content-text {
  margin-top: 10px;
  font-size: 1.3em;
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  text-align: left;
}

section.investment-content {
  justify-content: space-between;
  padding: 0px;
  gap: 0px;
  margin-right: 10em;
  margin-left: 45em;
  margin-top: 9em;
}

/* Linkerblok */
.investment-left {
  flex: 1;
  /* background-color: #ddd; */
  /* padding: 20px; */
  /* border-radius: 8px; */
  margin-left: -10em;
}

/* Rechterblok */
.investment-right {
  flex: 1;
  padding: 0px;
  margin-right: 11em;
}

.investment-description p {
  line-height: 1.2;
  font-size: 2em;
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  margin-left: -11em;
}

/* Hover-afbeelding */
.hover-investment {
  position: relative;
  cursor: pointer;
}

.hover-investment .popup-investment-image {
  position: absolute;
  top: -20px;
  left: 0;
  width: 150px;
  height: auto;
  display: none;
  border-radius: 8px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.hover-investment:hover .popup-investment-image {
  display: block;
}



section.investment-highlight {
  display: flex;
  justify-content: space-between;
  padding: 20px;
  gap: 20px;
}

.highlight-left {
  margin-left: 6em;
  margin-top: -2em;
}

.highlight-left h1 {
  font-size: 4.25em;
  color: #0A0E1C;
  font-family: 'BentonSans-Bold';
}

.highlight-right {
  flex: 2;
  padding: 39px;
}


.style-tekst-right {line-height: 25px;margin-top: -6px;}

section.investment-details {margin-left: 8em;margin-right: 18em;margin-top: -3em;margin-bottom: 7em;}

.investment-details p {
  line-height: 1.6;
  font-size: 2em;
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
}

.investment-details-ondertitel {
  line-height: 1.9;
  font-size: 1.1em;
  color: #0A0E1C;
  font-family: 'BentonSans-medium';
  margin-left: 27.4em;
  margin-top: -2em;
}

.hover-investment-card p {
  font-size: 2.5rem;
  line-height: 45px;
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  margin-top: 1em;
  text-align: start;
}






.investment-fullscreen-container {
  text-align: center;
  width: 100%;
  padding: 20px;
}

.investment-subtitle {
  font-size: 1rem;
  color: #666;
  margin-bottom: 30px;
}

.investment-grid-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 93%;
  margin-left: 50px;
  margin-bottom: 1em;
}

.investment-grid-item {
  background-color: #eaeaea;
  border-radius: 10px;
  height: 30em;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  transition: background-color 0.3s, transform 0.3s;
  cursor: pointer;
  position: relative;
  padding: 20px;
}

.investment-grid-item .investment-content {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.investment-grid-item .investment-number {
  font-size: 6rem;
  color: #EC6528;
  font-family: 'BentonSans-Bold';
}

.investment-grid-item .investment-description {
  font-size: 2rem;
  color: #0A0E1C;
  margin-top: 0px;
  font-family: 'BentonSans-bold';
}

.investment-grid-item .investment-hover-content {
  margin-top: 0px;
  opacity: 0;
  max-height: 0;
  text-align: center;
  transition: opacity 0.3s ease, max-height 0.3s ease;
}

.investment-grid-item:hover .investment-hover-content {
  opacity: 1;
  max-height: 85px;
}

.investment-hover-content p {
  font-size: 1.5rem;
  line-height: 34px;
  color: #0A0E1C;
  font-family: 'BentonSans-Regular';
  margin-top: 1em;
  text-align: start;
}

.investment-btn {
  text-decoration: none;
  background-color: #EC6528;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1rem;
  transition: background-color 0.3s;
}

.investment-btn:hover {
  background-color: #0A0E1C;
}

.investment-floating-buttons {
  position: fixed;
  bottom: 15px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.investment-floating-buttons button {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background-color: #0A0E1C;
  color: #EDF5FC;
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: background-color 0.3s, transform 0.2s;
}

.investment-floating-buttons button:hover {
  background-color: #EC6528;
  transform: scale(1.1);
}

.investment-floating-buttons button:active {
  transform: scale(0.9);
}


.investment-fullscreen-img {
  display: block; /* Voorkomt ongewenste ruimte rondom de afbeelding */
  height: 100%; /* Maakt de afbeelding net zo hoog als het scherm */
  width: 100%; /* Maakt de afbeelding net zo breed als het scherm */
  object-fit: cover; /* Zorgt ervoor dat de afbeelding het hele scherm vult zonder vervorming */
  margin-top: 7em;
  margin-bottom: 5em;
}

.investment-image-item-container {
  display: flex;
  justify-content: space-between;
  gap: 20px; /* Ruimte tussen de afbeeldingen */
  width: 84%;
  margin-left: 7em;
}

.investment-image-item {
  flex: 1;
  text-align: center;
    /* Toevoeging van een rand voor een visueel effect */
  border-radius: 8px;  /* Hoekronding */
  transition: transform 0.3s ease-in-out;
}

/* Hover effect voor de investment-image-item */
.investment-image-item:hover {
  transform: scale(1.05);  /* Vergroot het item een beetje wanneer erover wordt gehoverd */
}

/* Specifieke stijl voor de afbeeldingen binnen investment-image-item */
.investment-image-item img {
  width: 100%;
  height: auto;
  /* border-radius: 15px; */
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}




.investment-slider {
  overflow: hidden; /* Zorg dat de witte ruimte buiten het zicht blijft */
  margin-top: 10em;
  margin-bottom: 5em;
}
.investment-images {
  display: flex;
  transition: transform 0.5s ease;
  will-change: transform; /* Voor betere prestaties */
}
.investment-images img {
  flex-shrink: 0;
  height: 17em;
  object-fit: contain;
  width: auto;
  margin: 0;
}
.investment-buttons {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
}
.investment-button {
  color: #0A0E1C;
  border: none;
  padding: 5px;
  cursor: pointer;
  font-size: 2em;
  margin-top: -5px;
}


.price-title {
  text-align: center;
  font-size: 4.25rem;
  margin-bottom: 10px;
  font-family: 'BentonSans-Bold';
}
.price-subtitle {
  text-align: center;
  font-size: 1rem;
  color: #0A0E1C;
  margin-bottom: 5em;
  font-family: 'BentonSans-Regular';
}
.price-content {
  display: flex;
  gap: 0em;
  padding: 0 10em;
}
.price-container {
  background: #fff;
  padding: 20px;
  box-shadow: 0 2px 12px 6px rgb(0 0 0 / 7%);
  flex: 2;
  max-width: 29em;
  margin-left: 0em;
  margin-bottom: 0em;
}
.price-info-container {
  flex: 1;
  background: transparent;
  padding: 0;
  padding-left: 3em;
  margin-top: -17px;
}
.price-container h2, .price-info-container h2 {
  margin-bottom: 20px;
  font-size: 1.5rem;
}
.price-list {
  list-style: none;
  padding: 1px;
  border-radius: 8px;
  margin: 0 0 20px;
}
.price-list li {
  margin: 10px 0;
  font-size: 1rem;
}
.price-highlight {
  font-weight: bold;
  color: #000;
}
.price-cta-button {
  display: inline-block;
  margin-top: 2em;
  padding: 10px 20px;
  background: #EC6528;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
  text-align: center;
}
.price-cta-button:hover {
  background: #0A0E1C;
}



.info-text-price {
  font-size: 1rem;
  color: #0A0E1C;
  margin-bottom: 10px;
  font-family: 'BentonSans-Regular';
  margin-top: 2px;
}



/* Header-styling */
.simple-header {
  position: relative;
  height: 100vh;
  background-image: url('images/image6.webp'); /* Jouw achtergrondafbeelding */
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  text-align: center;
  overflow: hidden;
}

/* Overlay */
.simple-header .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5); /* Donkere overlay */
  z-index: 1;
}

/* Titel-styling */
.simple-header .header-title {
  position: relative;
  z-index: 2;
  font-size: 6rem;
  line-height: 1.2;
  font-family: 'BentonSans-Bold';
  letter-spacing: 3px;
  margin: 0;
}

.simple-header .header-title p {
  font-size: 1.5rem;
  margin: 0;
}




/* investerings pagina responsive styles */

/* Standaard desktop styles blijven zoals ze zijn */

@media (max-width: 1024px) {
  /* Tablet */
  .investment-content-text {
    font-size: 1.1em;
    text-align: center;
  }

  section.investment-content {
    margin-right: 2em;
    margin-left: 2em;
    margin-top: 5em;
    flex-direction: column;
    align-items: center;
  }

  .investment-left {
    margin-left: 0;
  }

  .investment-right {
    margin-right: 0;
  }

  .investment-description p {
    margin-left: 0;
    font-size: 1.8em;
    line-height: 1.5;
  }

  .highlight-left {
    margin-left: 0;
  }

  .highlight-left h1 {
    font-size: 2.5em;
  }

  .highlight-right {
    padding: 20px;
  }

  section.investment-details {
    margin-left: 1em;
    margin-right: 1em;
  }

  .investment-details-ondertitel {
    margin-left: 0;
    text-align: center;
  }

  .investment-grid-container {
    grid-template-columns: 1fr 1fr;
    margin-left: 0;
  }

  .investment-grid-item {
    height: auto;
  }

  .investment-hover-content p {
    font-size: 1.2rem;
    text-align: center;
  }

  .price-title {
    font-size: 3em;
  }

  .price-subtitle {
    font-size: 0.9em;
  }

  .price-content {
    flex-direction: column;
    padding: 0 0em;
    margin-left: 3em;
  }

  .price-container {
    max-width: 100%;
    margin-bottom: 2em;
  }

  .price-info-container {
    padding-left: 0;
  }

  .investment-image-item-container {
    flex-direction: column;
    margin-left: 50px;
  }

  .simple-header .header-title {
    font-size: 3rem;
  }

  .simple-header .header-title p {
    font-size: 1rem;
  }
}

@media (max-width: 768px) {
  /* Mobiel */
  .investment-content-text {
    font-size: 1em;
    padding: 0 1em;
  }

  .investment-description p,
  .investment-hover-content p {
    font-size: 1rem;
  }

  section.investment-content {
    margin-left: 1em;
    margin-right: 1em;
  }

  .highlight-left h1 {
    font-size: 2em;
  }

  .investment-grid-container {
    grid-template-columns: 1fr;
  }

  .investment-details-ondertitel {
    font-size: 1em;
  }

  .investment-slider {
    margin-top: 2em;
    margin-bottom: 2em;
    width: 115%;
  }

  .investment-images img {
    height: 12em;
  }

  .price-title {
    font-size: 2.5em;
    margin-left: 1.3em;
  }

  .price-subtitle {
    font-size: 0.8em;
    margin-left: 4em;
  }

  .simple-header .header-title {
    font-size: 2rem;
  }

  .investment-floating-buttons button {
    width: 40px;
    height: 40px;
    font-size: 14px;
  }
}

/* Tablet (1024px of kleiner) */
@media (max-width: 1024px) {
  h3 {
    font-size: 1.5rem; /* Kleinere tekst op tablets */
    margin: 15px 0;
  }
}

/* Mobiel (768px of kleiner) */
@media (max-width: 768px) {
  h3 {
    font-size: 1.2rem; /* Nog kleiner op mobiele schermen */
    margin: 10px 0;
  }
}