@font-face {
    font-family: 'Raleway';
    src: url('/fonts/Raleway-Regular.woff2') format('woff2'),
         url('/fonts/Raleway-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
  }
  
  /* Bold (700) */
  @font-face {
    font-family: 'Raleway';
    src: url('/fonts/Raleway-Bold.woff2') format('woff2'),
         url('/fonts/Raleway-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
  }
  
  /* Italic (400) */
  @font-face {
    font-family: 'Raleway';
    src: url('/fonts/Raleway-Italic.woff2') format('woff2'),
         url('/fonts/Raleway-Italic.woff') format('woff');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
  }  
  
  /* Niconne font instellingen */
  @font-face {
    font-family: 'Niconne';
    src: url('/fonts/Niconne-Regular.woff2') format('woff2'),
        url('/fonts/Niconne-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
/* Tangerine font instellingen */
@font-face {
    font-family: 'Tangerine';
    src: url('/fonts/Tangerine-Bold.woff2') format('woff2'),
        url('/fonts/Tangerine-Bold.woff') format('woff');
    font-weight: bold;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Tangerine';
    src: url('/fonts/Tangerine-Regular.woff2') format('woff2'),
        url('/fonts/Tangerine-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
  html, body {
    width: 100%;
  margin: 0;
  padding: 0;
  overflow-x: hidden; /* voorkomt lege ruimte */
  box-sizing: border-box;
    font-display: swap; /* Voorkomt vertraging bij het laden van webfonts */  
  }
  body {
    position: relative;   
    width: 100%; 
    font-family: 'Raleway', Arial, sans-serif; /* Gebruik een generiek sans-serif lettertype als fallback */
    font-display: swap;
    font-size: 16px;
    line-height: 1.5;
    color: #000619;
    background: url(../afbeeldingen/achtergrond_website_lgr.jpg);
    background-attachment: fixed;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;    
    height: 100%; /* Zorg ervoor dat de body en html de volledige hoogte van het scherm nemen */
    margin: 0 auto; /* Verwijder de standaard marge */    
    display: flex; /* Zet de body in een flexbox-container */
    flex-direction: column; /* Zorg ervoor dat de elementen verticaal worden gestapeld */
    align-items: center; /* Horizontaal centreren van de inhoud */  
    padding-right: 0; /* Geen extra padding voor scrollbar */  
  } 
  .wrapper {
    min-height: 100%; /* Zorg ervoor dat de wrapper altijd minimaal de hoogte van het scherm heeft */
    padding-right: 0; /* Zorg ervoor dat er geen padding is door de scrollbar */  
   overflow-x: hidden; /* Verberg horizontale scroll */
  } 
  /* Als WebP wordt ondersteund, vervang dan de achtergrond */
@supports (background-image: url("../afbeeldingen/achtergrond_website_lgr.webp")) {
  body {
      background-image: url("../afbeeldingen/achtergrond_website_lgr.webp");
  }
}
  /* Algemene stijlen */
  *, *::before, *::after {
    box-sizing: border-box;
}
  .header {    
    color: #fff;
    width:100%;
  }
  /* Dynamische header */
#dynamic-header-content {
  position: absolute;
  top: calc(50% + 230px);
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
#dynamic-header-content.visible {
  opacity: 1;
}
  .row {
    display: flex;
    flex-wrap: wrap;
    gap: 1px; /* Voeg ruimte tussen de items toe */
  }
  .row8 #mySidenav a {
    font-weight:normal; 
  }
  .row8 a.tablinks1 {
    font-size:3rem;
  }
  .row8 .submenu a {
    font-size:1rem;
     text-shadow: 
    -1px -1px 0 #042f24,  
     1px -1px 0 #042f24,
    -1px  1px 0 #042f24,
     1px  1px 0 #042f24; 
  }
  .row8 .submenu a:hover {
    font-size:1rem;
    color:#bacfcb;
  }
  .row8 {
    width:100%;
     max-width: 1200px;    
  }
  .row8::after {
    content: "";
    clear: both;
    display: block;
  }
  .row8 a,
  .row8 span {
    color:#bacfcb;
    font-size:0.8rem;  
    text-decoration: none; 
    font-weight:600; 
    text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; 
  }
.row8 a:hover {
    color:#fff;
    font-size:0.8rem;  
    text-decoration: none;  
  }
  
  [class*="col-"] {
    padding: 15px;
    margin-left: auto;
    margin-right: auto;
  }
  /* For desktop: */
  .col-1 {
    width: 8.33%;
  }
  .col-2 {
    width: 16.66%;
  }
  .col-3 {
    width: 25%;
  }
  .col-4 {
    width: 33.33%;
  }
  .col-5 {
    width: 41.66%;
  }
  .col-6 {
    width: 50%;
  }
  .col-7 {
    width: 58.33%;
  }
  .col-8 {
    width: 66.66%;
  }
  .col-9 {
    width: 75%;
  }
  .col-10 {
    width: 83.33%;
  }
  .col-11 {
    width: 91.66%;
  }
  .col-12 {
    width: 100%;
  }
  
  /* Kolombreedtes voor mobiele apparaten */
  @media only screen and (max-width: 767px) {
    [class*="col-"] {
      width: 100%;
    }
    .header {
      padding: 10px 0;
    }
    body {
      font-size: 1rem;
    }    
  }
  /* Voor tablets */
  @media only screen and (min-width: 768px) and (max-width: 1200px) {
    [class*="col-"] {
      padding: 10px;
    }
  
    body {
      font-size: 1rem;
    }  
  }
  
  /* Voor desktops */
  @media only screen and (min-width: 1200px) {
    [class*="col-"] {
      padding: 15px;
    }
  
    body {
      font-size: 1rem;
    }
  }
  
  
  /* Overlay with gradient */
  div.overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height:100%;
    max-height:500px;
    background: linear-gradient(
      to right,
      rgba(0, 9, 9, 0.4) 100px,
      rgba(0, 15, 15, 0) 400px
    ); /* Zwart naar transparant bij 50px */
    color: white;
    display: flex;
    justify-content: flex-start;
    align-items: center;  
    z-index: 3;
  }
  
  /* Tekst elementen */
/* Koppen */
.margin {
    margin: 0px 20px;
  }
  .margin2 {
    margin-bottom: 10px;
  }
  .margin3 {
    margin-top:50px;
  }
  span.hoofdletter {
    font-family: "Niconne", "Brush Script MT", "Cursive", sans-serif;
    font-size: 3rem;
    vertical-align: -0.2rem;
    font-weight: normal;
    color: #4C7474;
    line-height: 1.5rem;
  }
  span.hoofdletterGroen {
    font-family: "Niconne", "Brush Script MT", "Cursive", sans-serif;
    font-size: 3rem;
    vertical-align: -0.3rem;
    font-weight: 100;
    color: #224c4c;
  }
  span.hoofdletterWit {
    font-family: "Niconne", "Brush Script MT", "Cursive", sans-serif;
    font-size: 6rem;
    font-weight: normal;
    vertical-align: -0.8rem;
    color: white; 
    margin-right:0.3rem;
    text-shadow: -2px -1px 2px #00513f;
    letter-spacing: -0.4rem;
  }
  span.hoofdletterWit-S {
    font-family: "Niconne", "Brush Script MT", "Cursive", sans-serif;
    font-size: 6rem;
    font-weight: normal;
    vertical-align: -0.8rem;
    color: white; 
    margin-right:0.3rem;
    text-shadow: -2px -1px 2px #00513f;
    letter-spacing: -1rem;
  }
  .color-wit {
      font-size:2.5rem;
    } 
  span.color-wit {
    font-family: "Raleway", Arial, sans-serif;
      color: white;
      font-weight:bold;    
      font-size:2rem;     
      line-height: 3rem;       
      text-shadow: -2px -1px 2px #00513f;
  }
  span.break {
    position:relative;
    hyphens: auto;
  }
  span.color-wit1 {
    font-family: "Niconne", "Brush Script MT", "Cursive", sans-serif;
      color: white;
      font-size:4rem; 
      font-weight:normal;     
      line-height: 5rem;       
      text-shadow: -2px -1px 2px #00513f;
      letter-spacing:0.2rem;
  }
  span.color-wit3 {
    font-family: "Raleway", Arial, sans-serif;
      color: white;
      font-weight:normal;    
      font-size:0.8rem;        
      text-shadow: -2px -1px 2px #b9ad8d;
  }
   span.color-yellow {
    font-family: "Raleway", Arial, sans-serif;
    color:#f0daaf;
    font-weight: bold;
      font-size:2.5rem;      
      line-height: 3rem;
      display: inline-block; /* Zorg ervoor dat de tekst inline is voor de animatie */     
      text-shadow: -2px -1px 2px rgb(0, 0, 0);
   }
 

  span.color-yellow a {
    font-family: "Raleway", Arial, sans-serif;
    color:#f0daaf;
    font-weight: bold;
      font-size:5rem;      
      line-height: 3rem;
      display: inline-block; /* Zorg ervoor dat de tekst inline is voor de animatie */     
      text-shadow: -2px -1px 2px #514524;
  }
   span.color-yellow-H a {
    font-family: "Raleway", Arial, sans-serif;
    color:#f0daaf;
    font-weight: bold;
      font-size:2.5rem;      
      line-height: 3rem;
      display: inline-block; /* Zorg ervoor dat de tekst inline is voor de animatie */     
      text-shadow: -2px -1px 2px rgb(0, 0, 0);
      text-decoration: none; 
      font-size:2rem;
  }
  span.reg {
    font-size: 15px;
    color:#c2a159;
  }
  .color-groen {
      font-size:2rem;
      text-shadow:none;
    }
  span.groen {
    color:#8c6f10;
    font-weight:normal;
  }
  span.color-orange {
    color:rgb(247, 167, 110);
  }
  span.color-orange-groot {
    font-size:2.5rem;
    color:rgb(189, 110, 53);
    font-weight:600;
  }
 
  span.color-text {
    font-family: "Raleway", Arial, sans-serif;
    color:#92a7a3;
    font-weight: bold;
    font-size:1.5rem;
    letter-spacing: 0.1rem;
    line-height: 2rem;    
    text-shadow: -2px -1px 2px rgb(0, 0, 0); 
  }
  span.color-text1 {
    font-family: "Raleway", Arial, sans-serif;
    color:#f0daaf;
    font-weight: bold;
    font-size:1.6rem;
    letter-spacing: 0.1rem;
    line-height: 2.5rem;
    display: inline-block; /* Zorg ervoor dat de tekst inline is voor de animatie */
   
    text-shadow: -2px -1px 2px hsl(154, 100%, 18%); 
  }
  span.color-text2 {
    font-family: "Raleway", Arial, sans-serif;
    color:#d1b373;
    font-weight: bold;
    font-size:1.6rem;
    letter-spacing: 0.1rem;
    line-height: 2.5rem;
    display: inline-block; /* Zorg ervoor dat de tekst inline is voor de animatie */
   
    text-shadow: -2px -1px 2px rgb(0, 0, 0); 
  }
  @media screen and (min-width:769px) and (max-width:900px) {
    span.color-wit1 {
      line-height:5rem;
      font-size:4rem;
    } 
    span.color-wit {
      line-height:3.3rem;
      font-size:2rem;
    } 
    span.color-yellow {
      line-height:2rem;
      font-size:2.5rem;
    } 
  span.color-text1 {
    font-size:1.3rem;
    letter-spacing: 0.1rem;
    line-height:2.5rem;  
    text-shadow: -2px -1px 2px rgb(0, 0, 0); /* X, Y, blur, kleur */ 
  }
  }
  @media screen and (min-width:401px) and (max-width:768px) {
    span.color-wit1 {
      line-height:4rem;
      font-size:3rem;
    } 
    span.color-wit {
      line-height:3rem;
      font-size:2rem;
    } 
  span.color-text1 {
    font-size:1.2rem;
    letter-spacing: 0.1rem;
    line-height: 2rem;  
    text-shadow: -2px -1px 2px rgb(0, 0, 0); /* X, Y, blur, kleur */ 
  }
  }
  @media screen and (max-width:400px) {
    span.color-wit {
      line-height:3.3rem;
      font-size:2.2rem;
      letter-spacing: 0rem;
    } 
    span.color-wit1 {     
        font-size:3.3rem;        
        line-height:5rem;        
    }
  span.color-text1 {
    font-size:1.2rem;
    letter-spacing: 0.1rem;
    line-height: 1.5rem;  
    text-shadow: -2px -1px 2px rgb(0, 0, 0); /* X, Y, blur, kleur */ 
  }
  }
  span.accent4 {
    font-family: "Tangerine", "Brush Script MT", "Cursive", sans-serif;
    font-size: 3rem;
    font-weight: 100;
    color: #3c5a55;
  } 
  span.accent1 {
    color: #fff;
    letter-spacing: 0.6px;
    font-size:1rem;
  }  
  .accent {
    color: #6e8380;
    font-size: 1.2rem;
    font-family: "Raleway", Arial, sans-serif;
    letter-spacing: 0.5px;
  }
  span.accent2 {
    color: #92e7de;
    letter-spacing: 0.5px;
    font-size:1rem;
  }
  span.accent2:hover {
    color:#fff;
  }
  span.accent5 {
    color:#718E83 ;
    font-weight: inherit;  
  }
  span.fotoNaam { 
    display:inline-block;
    position:relative;
    z-index:9999; 
    color:#bacfcb;
    font-family: 'Times New Roman', Times, serif;
    font-size:0.8rem;
    top:-28px;
  }
  .hoofdletter {
    font-family: "Tangerine", "Brush Script MT", "Cursive", sans-serif;
    font-size: 2rem;
    vertical-align: -0.1rem;
    font-weight: 100;
    color: #022323;
  }
  .hoofdletter1 {
    font-family: "Tangerine", "Brush Script MT", "Cursive", sans-serif;
    font-size: 2rem;
    vertical-align: -0.1rem;
    font-weight: 100;
    color: #fff;
  }
  sup {
    font-size: 0.8rem;
    color:#000619 ;
  }
  h1, h2, h3, h4, h5, h6 {
  z-index: 99999;
  font-family: "Raleway", Arial, sans-serif;
  text-align: center;
  color: #fff;
  font-weight:normal;
  font-size: 1.3rem; 
  padding:30px 20px;
  text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.5);  /* Meer schaduw, minder uitvloeiing */
 
  } 

   h3 .color-text, h4 .color-text {
      font-size:2rem;
    }
  h1 span {
    position: relative; /* BELANGRIJK: Zorgt ervoor dat z-index werkt */
    z-index:9999; 
    
  }
  h4 {
      padding:0;
    }
    h4 .subkop {
      text-shadow:none;
      font-size:2rem;
    }  
  b {
    letter-spacing:0.03rem;
    color:#000619;
  }
  i {
    font-weight:bold;
  }
  
  .subkop {
    font-family: "Raleway", Arial, sans-serif;
    text-align: center;
    color: #4C7474;
    font-weight:bold;
    font-size: 1.1rem;
    padding-top:30px;
    padding-bottom:30px; 
    text-shadow: none; 
  }
  .subkopA {
    font-family: "Raleway", Arial, sans-serif;
    text-align: center;
    color: #4C7474;
    font-weight:bold;
    font-size: 1.1rem;
    padding:50px;  
  }
  /* .subkop1 {
    font-family: "Raleway", Arial, sans-serif;
    text-align: center;
    color: #000619;
    font-size: 1.2rem;
    line-height: 1.5rem;
    margin-bottom: 20px;
    padding: 15px;
  } */
  .subkop1 {
    font-family: "Raleway", Arial, sans-serif;
    text-align: center;
    color: #000619;
    font-weight:bolder;
    font-size: 1rem;
    letter-spacing:0.04rem;
    transform: scaleY(1.2); /* Verhoog de hoogte van de tekst */
    line-height: 1.8rem;  
    padding:50px 30px;  
  }
  .subkop2 {
    font-family: "Raleway", Arial, sans-serif;
    font-size: 1.5rem;
    text-align: center;
    font-weight: 600;
    margin: 20px;
    color: #6e8380;
    text-shadow: none;
  }
  .subkop3 {
    font-family: "Raleway", Arial, sans-serif;
    margin: 0;
    font-size: 1.1rem;
    line-height: 1.2rem;
    color: #5f240b;
    text-align: center;
    font-weight: 600;
    padding: 10px;
  }
  .subkop4 {
    font-family: "Raleway", Arial, sans-serif;
    margin: 5px;
    font-size: 1.1rem;
    text-decoration: underline;
    text-underline-offset: 2px; /* Pas deze waarde aan naar wens */
    color: #4c7474;
    text-align: center;
    font-weight: 600;  
  }
  .subkop5 {
    font-family: "Raleway", Arial, sans-serif;
    top: 0;
    font-size: 2.7rem;  
    color: #c8a85d;
    text-align: center;
    font-weight: 800; 
    max-width:98%;
  }
   @media screen and (max-width:768px) {
    .subkop5 {
      font-size:2rem;
    }

  } @media screen and (max-width:400px) {
    .subkop5 {
      font-size:1.8rem;
    }
    
  }
  .subkop6 {
    font-family: "Raleway", Arial, sans-serif;
    padding-top:40px;
    padding-bottom:40px;
    font-size: 1.1rem;  
    color: #224c4c;
    text-align: center;
    font-weight: 800; 
  }
  .subkop7 {
    font-family: "Raleway", Arial, sans-serif;
    bottom: 0;
    font-size: 1.4rem;  
    color: #fff;
    text-align: center;
    font-weight: 800; 
    margin-top:30px;
    letter-spacing:0.01rem; 
    line-height: 2.2rem;  
  text-shadow: 2px 1px 0px rgba(0, 0, 0, 0.7);
  }
  .subkop8 {
    font-family: "Raleway", Arial, sans-serif;
    bottom: 0;
    padding-top:20px;
    padding-bottom:40px;
    font-size: 1.2rem;  
    color: #224c4c;
    text-align: center;
    font-weight: 800; 
    margin-top:30px;
    letter-spacing:0.01rem; 
    transform: scaleY(1.2); /* Verhoog de hoogte van de tekst */
  line-height: 2.2rem;  
  }
  .subkop_klein_links {
    font-family: "Raleway", Arial, sans-serif;
    padding-top:0px;
    padding-bottom:0px;
    font-size: 0.9rem;  
    color: #000619;
    text-align: left;
    font-weight: normal; 
  }
  .subkopH2 {
    font-family: "Raleway", Arial, sans-serif;
    font-size:2rem;
    color: #4C7474;
    font-weight:bold;
    text-shadow: none;
    margin:0;
    padding:0; 
    margin-top:20px;
  }
  p {
    text-align: left;
    margin-right: auto;
    margin-left: auto;    
    line-height: 1.5rem;  
    font-size: 1rem; 
    padding:2%;  
  }
  a {
    text-decoration: underline;
    text-underline-offset: 2px; /* Pas deze waarde aan naar wens */
    color: #638888;
    font-size: 1rem;
    overflow-wrap: break-word;
  }
  ul {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-right: 20px;
    padding-left: 40px;
    text-align:left;
  }
  ul li a {
    padding-right: 20px;
    padding-left: 20px;
    list-style-type: none;
  }

  .narrow li a {
    padding:0;
  }
  ol li {
    font-size: 1rem;
    line-height: 1.5rem;
    padding-right: 20px;
  }
  ol li a {
    padding-right: 20px;
    word-break: break-all;
  }
  li::marker {
    color: #638888;

  }
  hr {
    margin-right:20px;
    margin-left:20px;
  }
  span {
    color: #a09259;
  }
  span.colorgreen {
    opacity:0.4;
    color:#4C7474;
    padding-right:3px;
    cursor:pointer;
  }
  span.colorgreen:hover {
    opacity:1;
  }
  .links {
    text-align:left;
  }
  .center {
    display:flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
  }
  .uitgelicht1 {
    display:flex;
    flex-direction: column;
  }
  .uitgelicht1 img {
max-width:600px;
  }
  .uitgelicht1 figure {
    box-sizing: border-box;
    margin:0;
    padding:0;
  }
  /* SLUITKNOP */
.sluit-knop {
    float: right;
    padding-right: 10px;
  }
/* FOTOCREDIT */
  .fotocredit {
  font-size: 0.8rem;        
  color: #08403E;
  text-align: right;        
  margin-top: 4px;         
  width: 100%; 
  max-width:1200px;      
  display: block;
}

.fotocredit a {
  color: #08403E;  
  text-decoration: none;
  font-size: 0.8rem; 
}

.fotocredit a:hover {
  text-decoration: underline; /* subtiel effect bij hover */
}

  /* INDEXPAGINA */
  div.container_ribbon1a {
    width: 100%;
    float: right;
    text-align: center;    
    margin-bottom: 0px;
  }
  div.hoogblokland {
    display: inline-block;
    position: relative;
    margin-top: 0;
    margin-left: 0;
    margin-right: auto;
    text-align: center;
    width: 100%;
    max-width: 500px;
    z-index: 0;
  }
 .containerIndex {
    display: flex;    
    flex-wrap: wrap;           /* Laat kolommen naar nieuwe regel gaan als nodig */
    justify-content: center;   /* Centraal uitlijnen */
    gap: 20px;
}
.containerIndex .column1,
.containerIndex .column2 {
    flex: 1 1 400px;           /* Kolommen groeien, krimpen en beginnen bij 400px */
    max-width: 500px;          /* Zorgt dat ze niet te breed worden */
}

.containerIndex figure {
    margin: 0;
    width: 100%;
}

.containerIndex img {
    width: 100%;
    height: auto;
    display: block;
}

/* Extra marge voor kleinere schermen (optioneel) */
@media (max-width: 768px) {
    .containerIndex {
        gap: 15px;
    }

    .containerIndex .column1,
    .containerIndex .column2 {
        flex: 0 1 auto;       /* Laat kolommen hun eigen breedte behouden */
        width: 100%;           /* Klein beetje marge aan zijkanten */
    }
}

.waaromHoogblokland {
  display: flex;  
  justify-content: center;      
  align-items: flex-start;
  position: relative;
  margin: 0 auto;
  margin-bottom:30px;
  width:100%; 
  max-width:600px;
}
.waaromHoogblokland .sum1 {
  flex: 1;
  max-width: 50%;
}
.waaromHoogblokland summary {
  padding-top:18px;
  padding-bottom:12px;
}
.hoogblokland1 {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 9999;
  width: 100%;
  background: #e9eceb; 
  border:1px solid #4C7474;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  padding: 10px;
}
@media screen and (max-width:375px) {
  #meerInfo {
  height:89px;
}
}

#meerInfo, #meerInfo1 {
  flex: 1;
  max-width: 50%;
  padding:20px 0;
}
#meerInfo1 {
  margin-top:-70px;
  padding:20px 20px;
  margin-bottom:0;
}
#meerInfo a,  #meerInfo1 a {
  text-decoration: none; 
  color: #000619; 
  font-size: 1rem; 
  padding:25px 0;
}
#InfoLaur {  
  display: flex;
 align-items: center;
 width:100%;
 max-width:600px; 
 height:64px;
  cursor: pointer;         /* verandert de cursor naar handje */ 
  padding-top: 10px; 
  text-align: center;      /* centreert de linktekst */
  box-sizing: border-box;  /* voorkomt overflow door padding */
}

#InfoLaur a {  
  text-decoration: none; 
  color: #000619;
   display: inline-block;   /* maakt het aanklikbaar als blok */
  width: 100%;             /* laat de link ook volledig breed zijn */
}
#InfoVersch {  
 display: flex;
 align-items: center;
 width:100%; 
 height:64px;
  cursor: pointer;         /* verandert de cursor naar handje */ 
  padding-top: 10px; 
  text-align: center;      /* centreert de linktekst */
  box-sizing: border-box;  /* voorkomt overflow door padding */
}

#InfoVersch a {  
  text-decoration: none; 
  color: #000619;
  display: inline-block;   /* maakt het aanklikbaar als blok */
  width: 100%;             /* laat de link ook volledig breed zijn */
}

/* Eventueel: op mobiel iets meer lucht */
@media (max-width: 600px) {
  #InfoVersch, #InfoLaur {   
    height: auto;          /* laat de hoogte meegroeien met inhoud */
    min-height:64px;
  }
}

/* INDEX UITGELICHT */
#uitgelicht {
  background-color: #e9eceb;  
  width: 100%;
  border-radius: 10px;
  padding:0;
  margin:0;
  box-sizing: border-box;
}
span.gedraaid_accent4 {
  display: inline-block;
  position: relative;
  transform: rotate(-8deg);
  color: #fff;  
  right: 2%;
  font-size: 2rem;
  z-index: 0;
  margin: 12px 10px;
  padding-top: 12px;
  background-color: #7a4f10;
  border-radius: 10px;
  height: 65px;
  max-width: 400px;
  width:100%;
}
#uitgelicht h2 span.subkop5 {
  font-family: Inter, sans-serif;
  font-weight: 700; /* Zwaarder gewicht */
  font-style: normal;
  font-size: 1.5em;
  color: chocolate; 
  line-height: 2.5rem;
  margin:0; 
}

#uitgelicht h5 span.color-groen,
h2 span.color-groen,
span.color-groen {
  color:#4C7474;
}
#uitgelicht figure {
  width: 100%;               
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
#uitgelicht figure img {
  width:100%; 
  max-width:600px;
  height:auto;
  border-radius:0;
}
.uitgelicht div.tweeDemos {
  margin-top:-22px;
}
#meerInfoSchiedam a {
  text-decoration: none; color: #000619; font-size: 1rem;
}
#uitgelicht p {
  color: #000619;    
}
#uitgelicht img:hover {
  opacity: 1;
}
@media screen and (max-width:768px) {
  #uitgelicht {
    padding:0 20px;
  }
}
.uitgelicht figure {
margin:0;
}
/* INDEX STARTERSET */
.starterSet {
  display:flex;
  flex-direction: column;
  align-items: center;
  flex-wrap: wrap;  
  background-color:#fff;
  border-radius:10px;
  color:#000619;  
  width:100%;
  max-width:1200px;
}

.starterSet h2.subkop2 {
  text-align: center;
  width: 100%;
  margin:0 auto;
  padding:20px 0px;
   text-shadow: 
    -1px -1px 0 #847c53,  
     1px -1px 0 #847c53,
    -1px  1px 0 #847c53,
     1px  1px 0 #847c53;
}
.starterSet h2.subkop5 {
color:#cabf8d;
font-size:2.2rem;
}
.starterSet span.subkop5 {
display:block;
position:relative;
width:auto;
font-weight:normal;
top:30px;
transform: rotate(-15deg);
color:rgb(97, 42, 2);
text-shadow:none;
}
.starterSet ul {
  display:inline-block;
  margin:0 auto;
 
}
.starterSet li {
 padding-top:20px;
}
.starterSet ul li a {
 color:#022323;
 
}
.starterSet ul li a:hover {
 color:#979572;
}
.starterButton {
display: block;
position:relative;
    border: none;
    outline: none;
    padding-top: 7px;
    cursor: pointer;
    color: #fdfdfd;
    border-radius: 5px;
    height: 35px;
    text-decoration: none;
    width: 180px;
    margin: 5px;
    background-color: #988e5f;
    text-align:center;
    font-weight:600;
     text-shadow: 
    -1px -1px 0 #4d472a,  
     1px -1px 0 #4d472a,
    -1px  1px 0 #4d472a,
     1px  1px 0 #4d472a;
}
.starterButton:hover {
  cursor:pointer;
  background-color:#4d472a;
  text-shadow:none;
}
@media screen and (max-width:400px) {
  .starterSet {
padding:10px; 
  }
}
  /* COOKIEBANNER */
/* Basisstijl voor de cookie-banner */
#cookie-banner {
  display: none; /* Standaard niet zichtbaar */
  position: fixed;
  bottom: 0;      
  width:100%;
  max-width:1200px; 
  height:auto; 
  background-color: #4C7474;      
  padding: 20px;
  z-index: 99999;   
}
#cookie-banner strong {
  color:#fff;
}
#cookie-banner p {
text-align: left;
font-size:1.3rem;
letter-spacing:0.4px;
margin-bottom:5px;
color:#fff;
font-weight:600;
padding:0 30px;
}
#cookie-banner .split-text1 p {
  text-align:left;
  font-size:0.9rem;  
}
#cookie-banner.visible {
  display: block; /* Banner zichtbaar */
}
/* Stijl voor de button */
.split-text1 button {
  display: inline;
  justify-content: center;
  align-items: center;
  width:220px;
  height: 40px;  
  border-radius:10px;
  border:none; 
  padding-right:0; 
  cursor:pointer;
  margin-bottom:20px;
  margin-left:20px;  
}
.split-text1 button span.cookie {
  color:#08403E;
  font-size:1rem;
  font-weight:700;
  margin-left:0;
}
.split-text1 span {
  display: inline; /* Zinnen staan naast elkaar op grotere schermen */
  color: #fff;
  font-weight: normal; 
  text-align: left;
}
.split-text1 a span {  
  color: #fff;  
  text-decoration: none;
  margin-left:30px;
}

/* Stijlen voor schermen met een breedte tot 768px */
@media screen and (max-width: 768px) {
  .split-text1 span {
    display: block; /* Zinnen staan onder elkaar op kleinere schermen */
  }
  .cookie1 {
    padding-bottom:20px;
  }
  .split-text1 button span.cookie {
    padding-left:30px;
  }
}
         
      /* Verhoog de knop-kwaliteit wanneer je eroverheen hovert */
      #cookie-banner button:hover {
          opacity:0.6;
      }

.cookie1 {
  color:#fff;
  margin-left:40px;
  font-size:0.9rem;
}
      /* Optionele stijl voor de tekstlink */
      #cookie-banner a {
          color:#fff;
          font-style: italic;
          text-decoration: none;
      }

      #cookie-banner a:hover {
          text-decoration: underline;
      }
      
    img {
      vertical-align: middle;
      max-width: 1200px;
      width: 100%;
      height: auto;
    }
  /* Verwijder standaardstijlen van de summary-tag */
  summary::-webkit-details-marker {
    display: none;
  }
  summary {
    list-style: none;
    cursor: pointer;
    padding-bottom: 15px;
    margin-left: 5px;
    margin-right: 5px;
  }
  summary img:hover {
    border: 3px solid #e1edf5;
  }
  div.play-button1 {
    position: relative;
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .play-button.green {
    box-shadow: 0 1px 5px rgba(0, 28, 0, 0.5) inset;
    background-color: #f3f5f5;
    color:#4c7474;
  }
  .play-button.grey {
    box-shadow: 0 1px 5px rgba(0, 28, 0, 0.5);
  }
  summary.play-button {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 28, 0, 0.5);
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding-top: 14px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
    margin-bottom: 0px;
  }
  div.play-button {
    padding-left: 10px;
    padding-right: 10px;
    padding-bottom: 20px;
    border-radius: 10px;
    box-shadow: 0 1px 5px rgba(0, 28, 0, 0.5);
    max-width: 600px;
    width: 100%;
    text-align: center;
    padding-top: 14px;
    margin-left: auto;
    margin-right: auto;
    margin-top: -10px;
    margin-bottom: 0px;
  }
  .play-button img {
    width: 20px;
  }
  img.play-button {
    width: 20px;
  }
  
  .summary audio {
    height: 25px;
    margin-left: 0px;
  }
  .summary {
    border-radius: 10px;
    box-shadow: 0 0.3rem 0.75rem 0 grey;
    background-color: #f5f9fd;
    border: 1px solid #638888;
    cursor: pointer;
    z-index: 0;
  }
  .summary summary {
    padding-top: 7px;
  }
  .summary summary:hover {
    font-size: 1.02rem;
  }
  .summary2 summary {
    color: #e1edf5;
    text-align: center;
    padding: 5px;
    cursor: pointer;
    height: 100%;
  }
  
  details.summary3, .summary3 .sum2 {
    background-color:#f6f7f7;
    cursor:pointer;
  } 
  
  .figtekst {
    text-align: center;
    padding: 10px;
    font-style: normal;
    font-size: 1rem;
  }
  .demotekst {
    display: block;
    text-align: center;
    width: 96%;
  } 
  
  /* AUDIOPLAYERCONTAINER */
 #audioPlayerContainer {
  display: flex; 
  justify-content: center;  /* Alles in het midden uitlijnen */
  align-items: center;  /* Verticale centrering */
    position: fixed;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 1200px;
    background-color: #08403E;
    padding: 10px;
    z-index: 99999999 !important;
    color: #fff;
    font-size: 0.8rem;
    text-align: center;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
   max-height:500px;
    height:100%;
}
#audioPlayerContainer .naarDemos { 
  display:flex;
  align-items: flex-end; 
  position:inherit;
  padding:10px;
  left:30px;
  color:white;
  font-size:0.8rem
}
@media (max-width: 768px) {
  #audioPlayerContainer {
      max-width: 100%;
      padding-left: 10px;
      padding-right: 10px;
  }
}
#audioPlayerContainer.active {
  visibility: visible;
  opacity: 1;}

  #audioPlayerContainer div.text h4 {
    color: #fff;
  }
  #audioPlayerContainer audio {
    position: relative;
    width: 95%;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    height: 50px;
    padding-bottom: 10px;
  }  
  #audioPlayer {
    height: 30px;
   top:0;
    max-width: 95%;
  }
  .text-container {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    min-height: auto; /* Zorgt dat de hoogte niet onnodig groot wordt */
    padding: 5px 0;
    white-space: wrap; /* Voorkomt dat de tekst breekt */
    overflow: auto;
    text-overflow: ellipsis; /* Voegt "..." toe als tekst te lang is */
   
}
.text-container div:empty {
  display: none;
}
#audioPlayerTekst,
#audioFileName,
#audioInfo {
    color: white;
    font-size: 0.8rem;
    padding: 5px 10px;
    white-space: wrap; /* Voorkomt dat de tekst breekt */
    overflow: auto;
    text-overflow: ellipsis; /* Voegt "..." toe als tekst te lang is */
}
  /*#audioPlayerTekst {
    flex-grow: 1; /* Zorgt ervoor dat de tekst de resterende ruimte vult */
    /*text-align: center; /* Optioneel: tekst centreren */
    /*color: white;
    margin-top: 5px;
    font-size: 0.8rem;
    padding:0 10px;
    padding-bottom: 20px;
    min-width: 200px; /* Zorgt dat de tekst niet te klein wordt */
    /*white-space: nowrap;  /* Voorkomt dat de tekst op een nieuwe regel springt */
    /*overflow: hidden;
    text-overflow: ellipsis;  /* Laat "..." zien als de tekst te lang is */
  /*}  
  #audioFileName {
    position: relative;
    padding-left: 5%; /* Add padding if needed */
    /*bottom: 20px;
    padding-top: 10px;
    padding-right:10%;
  }*/
  .small {
    font-size:0.8rem;
  }
  .small-text {
    font-size: 0.8rem; /* Kleinere tekstgrootte */
    position: absolute;
    top: 0px;
    left: 10px;
    width: 98%;
    max-width: 500px;
    margin: 0px; /* Ensure there is no margin */
    padding: 0px; /* Add padding if needed */
    text-align: left;
    color: #fff;
  }
  .audioEnDemos {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: center;
    text-align: center;
    flex-grow: 1;
    min-height: auto; /* Zorgt dat de hoogte niet onnodig groot wordt */
    padding: 5px 0;
    white-space: wrap; /* Voorkomt dat de tekst breekt */
    overflow: auto;
    text-overflow: ellipsis; /* Voegt "..." toe als tekst te lang is */
    gap:10px;
}
  span.meerDemos {
    display: flex;
    position: absolute;
    align-items: flex-start;
    justify-content: space-between;
    bottom:0;
    left:20px;
    cursor:pointer;
    border-radius:10px;
    padding:10px;
    color:#FFF;
    font-weight:normal;
    font-size:0.8rem;
  }
  span.meerDemos:hover {
    color:#bacfcb;
  }  
  
  /* AUDIOBUTTON */
  .buttonContainer {
    display: flex;
    flex-wrap:nowrap;
    align-items: center;
    justify-content: space-between;
    width: 100%;
  } 
  .pause-control {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 2rem;
    border: none;
    cursor: pointer;
    color: white;
    background-color: #08403E;
    flex-shrink: 0;  /* Voorkomt dat knoppen te klein worden */
  } 
  .minimize-control {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    font-size: 3rem;
    border: none;
    cursor: pointer;
    color: white;
    background-color: #08403E;
    flex-shrink: 0;  /* Voorkomt dat knoppen te klein worden */
  }
  
  /* Zorg ervoor dat het bereik van de cursor goed werkt */
.minimize-control:hover, .pause-control:hover {
  color:#a0bdbd;  
}

 /* Standaardinstellingen voor de audioplayer toggle knop */
#audioPlayerToggleButton {
  display: none; /* Standaard verborgen, wordt getoond wanneer de audioplayer geminimaliseerd is */
  position: fixed; 
  bottom: 20px; 
  right: 10%;
  background-color:#08403E;
  color:#fff;
  border: none;
  padding: 10px;
  font-size: 1rem; /* Maak de muzieknoot groter */
  cursor: pointer;
  border-radius: 10px; /* Maak de knop rond */
  font-family: Arial, sans-serif; /* Zorg ervoor dat het de juiste lettertype heeft voor de muzieknoot */
  transition: transform 2s, background-color 1s, opacity 10s; /* Transitie voor grootte, kleur en zichtbaarheid */
  z-index: 999999; /* Zorg ervoor dat de knop altijd bovenop zit */
  opacity: 0.3; /* Zet de zichtbaarheid van de knop iets lager in rusttoestand */
}

/* Als de gebruiker over de knop beweegt, verandert de kleur */
#audioPlayerToggleButton:hover {
  background-color: #08403E; /* Verander de kleur bij hover */
  opacity: 1; /* Zorg ervoor dat de knop volledig zichtbaar is bij hover */
}

/* Specifieke stijlen voor de audioplayer toggle knop */
.audio-player-toggle-btn {
  position: fixed;
  bottom: 20px;
  right: 10%;
  border: none;
  padding: 15px; /* Maak de knop groter zodat de muzieknoot goed zichtbaar is */
  border-radius: 50%; /* Zorg ervoor dat de knop rond is */
  font-size: 1.5rem; /* Maak de muzieknoot groter */
  cursor: pointer;
  z-index: 999999; /* Zorg ervoor dat de knop bovenop alles zit */
  opacity: 0.3; /* Zorg voor een lichte transparantie wanneer de knop inactief is */
  transition: opacity 0.5s; /* Maak de overgang van de transparantie vloeiender */
  background-color:#08403E;
}
@keyframes blinkEffect {
  0% { color:white; opacity: 1; background-color: #ff0000fe; }
  50% { color:black; opacity: 1; background-color: #00ffae; } /* Felgele kleur tussendoor */
  100% { color:white; opacity: 1; background-color: #ff0000fe; }
}
@keyframes redFlash {
  0% { color:black; opacity: 1; background-color: #00ffae; } /* Kort rood */
  100% { color:black; opacity: 1; background-color: #00ffae; } /* Terug naar groen */
}
#audioPlayerToggleButton.animate-blink {
  animation: blinkEffect 0.5s ease-in-out 5; /* Laat 5 keer knipperen */
}
#audioPlayerToggleButton.animate-red {
  animation: redFlash 0.5s ease-in-out; /* 1 keer rood flitsen */
}
  .pause-control2 {
    bottom: 1%;
    z-index: 99999;
    display: inline-block;
    position: inherit; /* Zorg ervoor dat de knop goed gepositioneerd is */
    border: none;
    cursor: pointer;
    color: #638787; /* Zorg ervoor dat de kleur goed zichtbaar is */
    right: 1%; /* Plaatsing aan de rechterkant */
    font-size: 2rem;
    background-color: transparent;
    font-family: Arial, sans-serif; /* Of een ander lettertype */
  }
  @media (max-width: 767px) {
    .pause-control2 {
      top: 2%;
    }  
  }
  .pause-control3 {
    top: 1%;
    z-index: 99999;
    display: inline-block;
    position: inherit; /* Zorg ervoor dat de knop goed gepositioneerd is */
    border: none;
    cursor: pointer;
    color: #638787; /* Zorg ervoor dat de kleur goed zichtbaar is */
    right: 20px; /* Plaatsing aan de rechterkant */
    font-size: 2rem;
    background-color: transparent;
    font-family: Arial, sans-serif; /* Of een ander lettertype */
  }
  button.pause-control5 {
    z-index: 99999;
    display: block;
    position: relative; /* Zorg ervoor dat de knop goed gepositioneerd is */
    border: none;
    cursor: pointer;
    color: #638787; /* Zorg ervoor dat de kleur goed zichtbaar is */
    font-size: 2rem;
    background-color: transparent;
    font-family: Arial, sans-serif; /* Of een ander lettertype */
  
    margin-left: auto;
    margin-right: auto;
  }
  
  @media (max-width: 480px) {
    .pause-control3 {
      top: 2%;
    }
    #audioPlayerContainer {
      height: auto;
      max-width: 767px;
      width: 100%;
      background-color:#08403E;
    }
    #audioPlayerContainer audio {
      bottom: 30px;
    }
    #audioFileName {
      bottom: 35px;
      padding-top:15px;
  }
  }
  @media screen and (min-width:481px) and (max-width: 518px) {
    #audioPlayerContainer {
      height:auto;
      max-width: 767px;
      width: 100%;
      background-color:#08403E;
    }
    #audioPlayerContainer audio {
      bottom: 30px;
    }
    #audioFileName {
      bottom: 35px;
      padding-top:15px;
    }
    .small-text {
      top: 15px;
    }
  }
  /* Media query voor grotere schermen */
  @media screen and (min-width: 519px) {
    #audioPlayerContainer {
      /* Aangepaste hoogte voor grotere schermen */
      height: auto;
      /* Plaatsing onderaan */
      bottom: 0;
      /* Overige stijlen */
      background-color:#08403E;
    }
    #audioPlayerContainer audio {
      padding-top: 0px;
      bottom: 25px;
    }
    #audioFileName {
      margin-top: 0px;
    }
    .small-text {
      top: 5px;
    }
  }
  /* AUDIO */
.fixed-audio {
    display: none; /* Standaard is de div verborgen */
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #f0f0f0;
    padding: 10px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
  }
  /* JAVASCRIPT hiddenAudio */
  .hiddenAudio {
    display: none;
  }
  .playSound::before {
    content: ""; /* Afspeelteken */
    display: inline-block;
    margin-right: 10px; /* Ruimte tussen het pictogram en de tekst */
  }
  .playing::before {
    content: "▶"; /* Afspeelteken */
  }
  .audio-button {
    padding: 10px 20px;
    font-size: 1rem;
    cursor: pointer;
    background-color: transparent;
    color: #000619;
    border: none;
    border-radius: 4px;
  }
  .audio-button:active {
    background-color: transparent;
  }
  span.dispDet {
    display: block;
    color: #000619;
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    margin-top: 30px;
  }
  div.centered span {
    display: block;
    text-align: center;
  }
  .detDisp {
    border: 1px solid #4c7474;
    padding: 5px 10px;
    border-radius: 10px;
  }
  .detDisp img {
    max-width: 20px;
    height: 20px;
    vertical-align: middle;
    box-shadow: none;
  }
  .detDisp a:hover {
    cursor: pointer;
  }
  .content3 img {
    display: block;
    width: 100%;
    margin: auto;
    z-index: 0;
  }
  div.faClose2 {
    margin-right: 40px;
    cursor: pointer;
    float: right;
  }
  .faClose2 .icon-close {
    position: fixed;
    font-size: 1.5rem;
    color: #08403e;
    font-style: normal;
    cursor: pointer;
    font-family: Arial, sans-serif; /* Of een ander lettertype */
  }
  .btn2 .icon-close {
    float: right;
    padding-right: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    font-family: Arial, sans-serif; /* Of een ander lettertype */
  }
  @media (min-width: 1px) and (max-width: 767px) {
    figure img {
      display: block;
      text-align: center;
      margin:auto;
    }
  }
  figcaption {
    text-align: center;
    font-size: 0.8rem;    
    font-style: italic;   
    color: #000619;
    padding-top: 3px;
  }
  figcaption p {  
    font-weight:normal; 
  }
  .demos figcaption {
    margin-bottom:0; 
  }
  /* Stijlen voor de verborgen afbeelding */
/* Stijl voor het verborgen div */
.verborgenDiv {
    display: none; /* start als verborgen */
    width: 100%;
    height: auto;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    overflow: scroll;
    background-color: #f5f9fd;
    cursor: pointer;
    z-index: 1000;
    margin: 0;
  }
  div.verborgenDiv img {
    box-shadow: none;
  }
  .hidden {
    display: none;
  }
  .active {
    display: block;
  }
  /* Stijl voor de sluitknop */
  .close-icon {
    position: absolute;
    top: 10px;
    right: 10px;
    background-color: transparent;
    cursor: pointer;
    color: white;
    border: none;
    font-size: 1.2rem;
    z-index: 1001;
  }
  .centered {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-color: #f5f9fd;
    z-index: 9999;
    overflow: scroll;
    cursor: pointer;
    padding: 10px;
    padding-bottom: 50px;
  }  
  /*Menu*/
.cover img {
    width: 100%; /* Zorg ervoor dat de afbeelding de breedte van de container vult */
    height: auto; /* Bewaar de beeldverhouding */
  }
  @media (max-width: 400px) {
    .cover img {
      content: url("../../afbeeldingen/Fotos/Heusden/Koororgel/koororgel_heusdenb.jpg"); /* Vervang de afbeelding voor kleine schermen */
    }
  }
  /* Inhoud */
  article { 
    display: flex;  
    flex-direction: column; /* Zorg ervoor dat de inhoud verticaal gestapeld wordt */ 
    align-items: center; /* Horizontaal centreren van de inhoud */
    flex-grow: 1; /* Dit zorgt ervoor dat de inhoud de resterende ruimte vult */
    width: 100%;
     max-width: 1200px;
    z-index: 3;  
    
  }
  .ruimte {
    height: 1200px;
  }
  .ruimteDisp {
    height:200px;
  }
  .inhoud {   
    display:block;
    position: inherit;
    background-color: #fbfdfd;  
     width: 100%;
    max-width: 1200px;  
    padding-top: 60px; 
    padding-left:40px;
    padding-right:40px;
    padding-bottom: 60px;
    margin-bottom:20px;
    text-align:center;
  }
  @media screen and (max-width:400px) {
    .inhoud {
    padding-left:5px;
    padding-right:5px;
    margin-top:0px;
    }
  }
  @media screen and (min-width:401px) and (max-width:768px) {
    .inhoud {
      padding-left:10px;
    padding-right:10px;
    margin-top:0;
    }  
  }
  @media screen and (min-width:769px) and (max-width:1000px) {
    .inhoud {
      padding-left:60px;
    padding-right:60px;
    }  
  }
  @media screen and (min-width:1001px) {
    .inhoud {
      padding-left:100px;
    padding-right:100px;
    }  
  }
  .inhoud ol li li {
    list-style-type: none;    
  }
  .active {
    color: #000619;
  }
  a.active {
    color: #000619;
    background-color: #e8eded;
    box-shadow: 0 0.3rem 0.75rem 0 black;
  }
  .tablinks1 {
    cursor:pointer;
    font-weight:bold; 
  }
  .tablinks1:hover {
    color:#acb9b9;
    font-weight:bold;
    cursor:pointer;
  }
  .tablinks1.active {
    color: #acb9b9; /* Dit zorgt ervoor dat de tekst in de knop wit is */   
    font-weight:bold;
  }  
  .tablinks {
    border-radius: 5px;
    cursor:pointer;
  }
  .tablinks:hover {
    background-color:#01322e;
    cursor:pointer;
  }
  .tablinks.active {
    color: #fff; /* Dit zorgt ervoor dat de tekst in de knop wit is */
    background-color:#7a8989;
  }
  #toggleMenu {
    background-color: #555;
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
  }
  
  /* Style the tab content */
  .tabcontent {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.tabcontent.active {
    display: block;
    opacity: 1;
}
  #backButton { 
    margin-top: 40px;
    margin-left:40px;
  }
  
  /* SUBMENU */  
  .logo-container {   
    flex-grow: 1; /* Zorgt ervoor dat het logo links blijft */
    background-color:transparent;
    width:100%;
    max-width: 1200px;
    z-index:9;    
    
  }   
  
  .vlaggen2 {
    position: absolute; /* Plaatst de vlaggen-container in de hoek van .submenu */
    top: 10px; /* Afstand vanaf de bovenkant */
    right: 10px; /* Afstand vanaf de rechterkant */
    text-decoration: none;
    color:#fff;
    font-size:0.9rem;
    z-index: 99999999;
    color:#4C7474;
  } 
  .vlaggen2 img { 
    margin-top:5px;   
    max-width:28px;   
    height:15px;
    padding-left:5px;
    z-index: 99999999;
  }   
  .orgelfront {
    position: relative;
    top:0;
    width:100%;
    max-width:1200px;
    height:650px;
    padding-bottom:20px;
    background-color:#08403E;
    z-index:1;
    display: flex;
    align-items: center; /* Centreer horizontaal */    
    text-align: center; /* Zorgt ervoor dat de tekst netjes gecentreerd wordt */
    overflow:hidden;
    justify-content: center; /* Zorgt dat de tekst onderaan komt */
  }  
  .orgelfront img {  
    position:relative;  
    width: auto;  /* Houdt de oorspronkelijke breedte van de afbeelding aan */
    height: 500px;  /* De afbeelding blijft altijd 500px hoog */
    max-width: 100%;  /* Zorgt ervoor dat de afbeelding niet breder wordt dan de container */
    z-index:2;
    top:0;    
    object-fit: cover; 
    overflow-x: hidden;
  } 
  div.overlay-text {
    position: absolute;
    top: 0; /* Zet de overlay aan de bovenkant */
    left: 0;
    height:730px;
    width: 100%;
    background: linear-gradient(
    to top, 
    rgb(0, 21, 20, 1) 20%,    /* Donker aan de onderkant */
        rgba(8, 64, 62, 0) 40%,  /* Lichter in het midden */
        rgba(8, 64, 62, 0) 80%,    /* Bijna transparant in het midden */
        rgba(0, 21, 20, 1) 100%  /* Iets donkerder aan de bovenkant */
  );
  text-align: center;
  z-index:3; /* Zorg ervoor dat de overlay boven de afbeelding komt */  
  } 
  @media screen and (min-width:401px) and (max-width: 768px) {     
     .orgelfront { 
     height:660px;
     top:0;
     }
     .orgelfront img {
      top:0;
     }
     div.overlay-text {
      height:750;
     }
  }
  @media screen and (max-width: 400px) {     
    .orgelfront { 
    height:720px;
    top:0;    
    }
    .orgelfront img {
     top:0;
    }
    div.overlay-text {
     height:750;
    }
 }
  .orgelfront h1 {
    position: absolute; /* Plaatst de tekst over de afbeelding */
    bottom:0;
    z-index:4; /* Zorgt ervoor dat de tekst boven de afbeelding staat */
    color: white;
    text-align: center;   
} 
/* SLIDESHOW */
.slideshow-container1 {
  display: block;
  top:0;
  width: 100%;
  max-width: 1200px;
  height:700px;
  position: relative;
  margin: auto;
  overflow:hidden;
}
/* Overlay with gradient */
.overlay1 {
  position: absolute;
  top: 0;
  left: 0;
  max-width:1200px;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.4) 100px,
    rgba(0, 0, 0, 0) 700px
  ); /* Zwart naar transparant bij 50px */
  color: white;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-left: 10px; /* Ruimte voor het logo */
}
/* Caption text */
.text2 {
  color: #d4d5d5;
  font-size: 1.5rem;
  font-weight:small;
  margin-top: -500px;
  position: absolute;
  left: 20px;
  width: 100%;
  text-align: left;
  z-index: 999999;
  font-family: "Niconne", cursive;
  text-shadow: -0.5px -0.5px 0 #013533b1, 0.5px -0.5px 0 #08403e,
    -0.5px 0.5px 0 #08403e, 0.5px 0.5px 0 #08403e; /* gekleurde rand */
}
@media screen and (max-width:768px) {
  .text2 {
    margin-top: -480px;
  }
}
.mySlides1 {  
  position: relative;
  top: 90px; 
  width: auto;
  height: 500px; 
  display: none; /* Alleen de actieve slide tonen */
}
.mySlides1 img {
  width: auto;
  height: 500px;  
}
.mySlides1.active {
  display: block;
}
#dynamic-header-content {
  position: absolute; /* Zet de tekst bovenop de afbeelding */
  width: 95%;
  max-width: 1200px;
  color: white; /* Stel de tekstkleur in (witte tekst in dit geval) */
  text-align: center; /* Center de tekst */
  z-index: 10; /* Zorg ervoor dat de tekst boven de afbeelding komt */
}

#dynamic-header-content h1, 
#dynamic-header-content h2, 
#dynamic-header-content h3, 
#dynamic-header-content h4, 
#dynamic-header-content h5, 
#dynamic-header-content h6 {
  display: block; /* Zorg ervoor dat de tekst altijd zichtbaar is in de dynamische header */  
}

  .submenu {
    display:flex;
    position: fixed;
    align-items:flex-end;
    justify-content:space-between;  
    z-index: 9999;
    color:white;
    top:0;
    width:100%;
    max-width:1200px;
    height:80px;    
    gap:20px;
    background-color:#052824;
    padding-bottom:10px;
  } 
  .submenu picture img {  
    position:relative; 
    width:230px;
    height:auto;
    top:9px;
    padding:0;
    padding-left:20px;
    z-index: 99999999999;
  } 
  
  @media screen and (max-width: 435px) {
    .submenu .logo-container picture {
      display: none;
    }
    .submenu .logo-container .icon1 {
      display: block;
    }
    .logo-container .icon1 img {
      position:absolute;
      left:20px;
      top:10px;
      width: 60px; /* Zorgt ervoor dat de afbeelding de grootte van de div overneemt */
      height: 60px; /* Zorgt ervoor dat de afbeelding niet vervormt */
      object-fit: contain; /* Zorgt ervoor dat de afbeelding binnen de opgegeven afmetingen blijft */
  }
  }
  
  /* Zorg ervoor dat icon1 standaard verborgen is */
  .logo-container .icon1 {
    display: none;
  }
  .submenu a.menu img {
    width:20px;
    height:20px;
    margin-top:3px;
  }  
  a.menu span {
    font-size:1.1rem;
    color:#fff;
    font-weight:600;
     text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000;
  } 
  #informatie {
    width:100%;
    max-width:250px;
}
  a.infoSampleset {
    font-weight:bold;
    text-decoration: none;
    color: #FFFFFF; 
    font-size: 1.1rem;  
    cursor: pointer; 
    letter-spacing:0.05rem;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);   
    opacity: 1; /* Zorg ervoor dat er geen vervaging is */
    mix-blend-mode: normal; /* Voorkomt dat de kleur zich vermengt met de achtergrond */
  }
  .submenu a.menu { 
    text-decoration: none;
    color: #FFFFFF; 
    font-size: 1.1rem; 
    gap:5px; 
    cursor: pointer; 
    letter-spacing:0.05rem;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);   
    opacity: 1; /* Zorg ervoor dat er geen vervaging is */
    mix-blend-mode: normal; /* Voorkomt dat de kleur zich vermengt met de achtergrond */
  }  
  .submenu a {
    display: flex; 
    text-decoration: none;
    width:100%;
    max-width:100px;
    padding-right:20px;
    cursor: pointer;
    color: #FFFFFF; 
    font-size: 1.1rem;   
    letter-spacing:0.05rem;
    text-shadow: 0px 0px 2px rgba(255, 255, 255, 0.5);   
    opacity: 1; /* Zorg ervoor dat er geen vervaging is */
    mix-blend-mode: normal; /* Voorkomt dat de kleur zich vermengt met de achtergrond */
  }  
  .submenu a.infoSampleset:hover, .submenu a.menu span:hover {
    color:#acb9b9;
  }
  .submenu-content {
    display: none; /* Verborgen submenu */
    position: absolute;
    background-color:#335553;  
    width:250px;
    right:10%;
    z-index: 9999;        
    box-shadow:none;
    border-radius:0px;
    padding:15px 0;   
  }  
  .submenu-content a {
    padding:10px 30px; 
    margin:0;
    font-size:1rem;
    text-align:left;
    text-shadow:none;
    width:100%;
    max-width:250px;
    font-family:"Raleway", Arial, sans-serif;
    box-shadow:none;
    border-radius:0px;
  }
  
  .submenu:hover + .submenu-content, .submenu-content:hover {
    display: block;  
    box-shadow:none;
    border-radius:0px;
  } 
  .show {
    display: block;
  }  
 
/* Animated Sidenav Example*/

.sidenav {
  position: fixed;
  top: 0;
  left:50;
  width:0; 
  max-width:1200px;
  height: 100%;  
  padding-top:150px;
  z-index: 999;
  background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
    url(../afbeeldingen/achtergrond1aac.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  overflow:hidden;
  transition: 0.7s ease-in-out; /* Zorgt voor de animatie */
  padding-bottom: 200px; 
}
 .scrollbar {
  display:block;
  position:relative; 
  height:1000px;  
  overflow-y:auto;
  width:100%;
  min-width: 0;
  margin:0 auto;
 
  /* Scrollbar verbergen (Chrome, Edge, Safari) */
  scrollbar-width: none;      /* Firefox */
  -ms-overflow-style: none;   /* IE/Edge legacy */
}
.scrollbar::-webkit-scrollbar {
  display: none; /* Chrome/Safari/Edge */
}
/* Wanneer de sidenav open is */
.sidenav.open {
  width: 100%;  /* Zet de breedte naar 100% als de sidenav open is */ 
  transform: translateX(0); /* Begin de sidenav verschoven naar links */
}
.sidenav a {
  font-family: "Raleway", Arial, sans-serif;
  display: block;
  background-color: transparent;
  padding: 8px 8px 8px 40px;
  text-decoration: none;
  color: #bacfcb;
  transition: 0.3s;
  line-height: 1.5rem;
  font-size: 1rem;
}
.sidenav a:hover {
  color: #fff;
  cursor: pointer;
  font-size: 1.02rem;
}
.sideNavDetails {
  margin-left:35px;
}
.sidenavSpan {
  font-weight:200;
}
/* INDEXPAGINA */
/* STORY */
#toggleStory, #toggleStory1 {
  display:flex;
  align-items:center;
  flex-wrap: nowrap;
  text-decoration: none; 
  color:#bacfcb;
  font-weight:600;
  text-shadow: 
    -1px -1px 0 #000,  
     1px -1px 0 #000,
    -1px  1px 0 #000,
     1px  1px 0 #000; 
}
#toggleStory:hover, #toggleStory1:hover {
    color:#fff;
    text-decoration: none;  
    font-weight:600;
  }
#toggleStory img, #toggleStory1 img {
  filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(0deg) brightness(100%)
  contrast(100%);
  cursor: pointer;
  width: 25px;
  height: 25px;
  margin-left:5px;
  height: auto;
  visibility: visible; /* Zorg ervoor dat de afbeelding altijd zichtbaar is */
}

#story { 
  display: none;
  opacity: 1;
  max-height: 100vh; /* Zet een maximale hoogte van 80% van de viewport hoogte */
  overflow-y: auto; /* Zorg ervoor dat er gescrold kan worden als de inhoud groter is dan de div */
  transform: translateX(-100%); /* Start buiten beeld (links) */
  transition: transform 0.5s ease-out;
}
.story {  
  position: fixed; /* Zorg ervoor dat het verhaal niet de flow van de pagina beïnvloedt */
  top: 40px; /* Plaats het verhaal direct onder het icoon */
  width: 100%; /* Maak het verhaal 100% van de breedte */
  max-width: 1200px;
  background-color: #fbfdfd;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 60px;
  z-index: 9999; /* Zorg ervoor dat het verhaal boven de andere elementen komt */
  box-shadow: 0 0.6rem 1.5rem 0 gray;
  margin-top: 40px;
  margin-bottom:20px;
  transition: transform 0.5s ease-in-out, opacity 0.5s ease-in-out;
  transform: translateX(0);
  opacity: 1;  
  will-change: transform, opacity; /* Verbeter de prestaties */
  pointer-events: none; /* Voorkomt klikken als het onzichtbaar is */
}  
.story.hide {
  transform: translateX(-100%);
  opacity: 0;
  pointer-events: none; /* Voorkomt interactie terwijl het verborgen is */
}
#story.show {
  display: block; /* Zorg ervoor dat het zichtbaar wordt wanneer 'show' wordt toegevoegd */  
  transform: translateX(0); /* Schuif naar binnen */
  pointer-events: auto; /* Klikken weer mogelijk */
}
.story .container_ribbon { 
  padding:20px;
}
.wij {
  text-align:center;
  margin-left:25%;
}
.wij p {
  font-size: 1rem;
  color: #022323;
  line-height: 1.8;
  font-style: italic;
  margin-top: 40px;
  z-index: 9999;
  width: 100%;
  background-color: #fbfdfd;  
} 
@media screen and (max-width:768px) {
  .story .container_ribbon {
    padding:0;
    }
  .story {  
    top: 40px;
    padding:20px;
  }
  .wij {
    margin-left:10px;
  }
  p.wij {
    padding-left: 20px;
    top: 1.3%;
  }
  
}

/* IMG DEMOS */
.FigureTweeDemos, .FigureDrieDemos {
  display: flex;
  align-items: center; 
}
.FigureTweeDemos figure, .FigureDrieDemos figure {
  margin:0;
  padding:0;
  margin-left:auto; 
  margin-right:auto;
  width:100%; 
  max-width:600px;
}
.FigureTweeDemos figure img, .FigureDrieDemos figure img {
  width:100%;
  max-width:600px;
  height:auto;
  display: block; 
  margin: 0 auto;
}
.uitgelicht .tweeDemos {
  margin-top:-20px;
}
.tweeDemos {
  display: flex; 
  flex-direction:row;
   flex-wrap: wrap; /* Zorgt ervoor dat de elementen netjes schalen */
  justify-content: space-between;
  width:100%; 
  max-width: 600px; 
  margin:0 auto;
  margin-top:-8px;
}
.tweeDemos > div {
  width: 50%;
}
@media (max-width: 300px) {
  .tweeDemos {
    flex-direction: column;
  }
  .tweeDemos > div {
    width: 100%;
    max-width: 600px;
  } 
   .tweeDemos .column2 a {
    padding:0px;
  }
}
@media screen and (min-width:301px) and (max-width:465px) {
  .tweeDemos .column2 a {
    padding:22px 0px;
  }
}
/* Zorgt dat beide kolommen (A & B) netjes naast elkaar staan */
.tweeDemos2 {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}

/* Maak ook de geneste .tweeDemos3 flexibel */
.tweeDemos3 {
  flex: 1;
  display: flex;
}

.tweeDemos2 .DemoA,
.tweeDemos3 .DemoB {
  flex: 1;
  text-align: center;
  padding-top: 10px;
  height: 64px;
}

/* Linkstijl */
.tweeDemos2 .DemoA a,
.tweeDemos3 .DemoB a {
  display: block;
  width: 100%;
  color: #000619;
  text-decoration: none;
  padding: 10px 0;
  box-sizing: border-box;
}

/* Mobiel: onder elkaar en volledig breed */
@media (max-width: 300px) {
  .tweeDemos2 {
    flex-direction: column;
  }

  .tweeDemos3 {
    width: 100%;
  }

  .tweeDemos2 .DemoA,
  .tweeDemos3 .DemoB {
    width: 100%;
    padding-top: 10px;
  }

  .tweeDemos2 .DemoA a,
  .tweeDemos3 .DemoB a {
    width: 100%;
  }
}
#demoMaar {
 display:block; position:relative;width:80%;box-shadow: 0.05rem 0.05rem 0.2rem 0.05rem grey; margin-right: auto; margin-left:auto;
}
.tweeDemos_350 {
  display: flex; 
  align-items: center;
  width: 100%; 
  max-width: 350px; 
  margin: auto;  
  padding-bottom:30px;
}

.tweeDemos .summary3,
.tweeDemos_350 .summary3 {
  display: flex;
  flex-wrap: wrap; /* Zorgt ervoor dat de elementen netjes schalen */
  width: 100%; 
  max-width: 600px; 
}
.drieDemos {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin: auto;
}

.drieDemos .summary3 {
  flex: 1 1 calc(33.333% - 2px); /* 3 naast elkaar, minuscule marge-correctie */
  text-align: center;
  cursor: pointer;
  margin-bottom:-9px;
}

.drieDemos .summary3 .sum1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}

/* 📱 Mobiel: onder elkaar, zonder ruimte ertussen */
@media screen and (max-width: 300px) {
  .drieDemos {
    flex-direction: column;
    align-items: stretch;
  }

  .drieDemos .summary3 {
    flex: none;
    width: 100%;
    margin: 0;          /* verwijdert eventuele marge */
    margin-bottom:-6px;
    border-bottom: none; /* voorkomt dubbele lijnen tussen knoppen */
  }
}
.drieDemosSchiedam {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 600px;
  margin: auto;
  margin-top:1px;
}
.drieDemosSchiedam .summary3 {
  flex: 1 1 calc(33.333% - 2px); /* 3 naast elkaar, minuscule marge-correctie */
  text-align: center;
  cursor: pointer;
  margin-bottom:-9px;
}

.drieDemosSchiedam .summary3 .sum1 {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
#meerInfoSchiedam {
  width: 50%;padding:20px;
}
#meerDemosSchiedam {
  width: 50%;padding:20px;
}
/* Container voor de twee links */
#linksContainer {
  display: flex;
  justify-content: space-between; /* links en rechts */
  width: 100%;
  max-width: 600px;                /* optioneel, zoals je demo container */
  margin:auto 0;             /* gecentreerd */
  box-sizing: border-box;
  margin-bottom:50px;
}

/* Beide links */
#linksContainer > div {
  flex: 1;                          /* even breed */
  text-align: center;
}

#linksContainer a {
  display: inline-block;
  width: 100%;
  text-decoration: none;
  color: #000619;
}

/* Mobiel: onder elkaar op <400px */
@media screen and (max-width: 400px) {
  #linksContainer {
    flex-direction: column;
    margin-top:0px; 
  }

  #linksContainer > div {
    width: 100%;
  }
}

/* 📱 Mobiel: onder elkaar, zonder ruimte ertussen */
@media screen and (max-width: 300px) {  
  .drieDemosSchiedam {
    flex-direction: column;
    align-items: stretch;
  }

  .drieDemosSchiedam .summary3 {
    flex: none;
    width: 100%;
    margin: 0;          /* verwijdert eventuele marge */
    margin-bottom:-6px;
    border-bottom: none; /* voorkomt dubbele lijnen tussen knoppen */
  }
}
.tweeDemos .summary3 .sum1,
.tweeDemos_350 .summary3 .sum1 {
  flex: 1; /* Zorgt ervoor dat beide divs even breed worden */
  text-align: center;
  width:50%;
  
}
  /* Style the buttons */
  .btn {
    display: inline-block;
    border: none;
    outline: none;
    padding-left: 15px;
    padding-top: 5px;
    cursor: pointer;
    color: #e1edf5;
    border-radius: 5px;
    height: 35px;
    text-decoration: none;
    width: 180px;
    margin: 5px;
    background-color: #335553;
  }
  @media only screen and (max-width: 900px) {
    .column {
      width: 50%;
      height: auto;
    }
    .btn {
      float: none;
      display: block;
      text-align: center;
      width: 100%;
    }
  }
  @media only screen and (max-width: 600px) {
    .column {
      width: 100%;
      height: auto;
    }
    .btn {
      float: none;
      display: block;
      text-align: center;
    }
  }
  .verborgen {
    display: none;
  }
  #closeButton {
    text-decoration: none;
    cursor: pointer;
    color: #022323;
  }
  #closeButton1 {
    text-decoration: none;
    cursor: pointer;
    color: #022323;
  }
  .sluitknop {
    width: 30px;
    height: auto;
    float: right;
    border-radius: 50%;
    box-shadow: 0 0.25rem 0.5rem 0 gray;
  }
  .icon-right {
    font-size: 0.8rem;
    font-style:normal;
    margin-top:3px;
  }
  /* COOKIEINSTELLINGEN */
@media screen and (min-width:900px) {
  .cookie-policy-container, .privacy-policy-container, .cookie-settings-container, .bedankt1, .container {
    margin:60px 20px;
    padding-left:10%;
    padding-right:10%;
  }
  
  }
  @media screen and (max-width:899px) {
    .cookie-policy-container, .privacy-policy-container, .cookie-settings-container, .bedankt1, .container { 
      margin:60px 20px;   
      padding-left:5%;
      padding-right:5%;
    }
  }
  @media screen and (max-width:480px) {
    .cookie-policy-container, .privacy-policy-container, .cookie-settings-container, .bedankt1, .container {  
      margin:60px 0px;    
    }
  }
  .bedankt {
    display: flex;
    align-content: center;
    justify-content: center;
    margin-top:60px;
    text-align:center;
  }
  /* CONTACT.PHP */
* {
  box-sizing: border-box;
}
#contact {
  display: flex;
  justify-content: center; /* Horizontaal centreren */  
  width: 90%;    
  padding-bottom:40px;   
}
@media screen and (max-width:768px) {
  #contact {
    width: 100%; 
  } 
}
#contact h3 {
  margin-top:40px;
}
.container {
  overflow: hidden;
  width: 100%;
  padding: 20px;
  height:auto;
  margin-top:50px; 
  border:1px solid #a4b7b2;
  background-color:#eaf0ef;
}
form label {
  color: #000619;
  font-size:1em;
}
input[type="text"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid white;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input[type="email"],
select,
textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid white;
  background-color: #fff;
  border-radius: 4px;
  box-sizing: border-box;
  margin-top: 6px;
  margin-bottom: 16px;
  resize: vertical;
}
input[type="submit"] {
  background-color: #08403e;
  color: white;
  padding: 12px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  font-size:1em;
}
input[type="submit"]:hover {
  background-color: #638888;
}
 /* DEMOS LUISTEREN.HTM */ 
#demos {
  display:flex;
  align-items: center;
  justify-content: center;
  text-align:center;
  margin-top: 30px;
}
div.demos4 {
  display: flex;
  align-items: center;
  width: 100%;
  max-width: 1000px;
  text-align: center;
}
.demos4 a.btn4 {  
  background-color:#fbfdfd;
  height:60px;
}
.demos4 a:hover {
  box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem gray inset;
  background-color: #eff0f0;
  color: #000619;
}
.demos4 a:focus {
  box-shadow: 0.1rem 0.1rem 0.1rem 0.1rem gray inset;
  background-color: #eff0f0;
}
span.accent3 {
  color: #000619;
}
.demos4 span.accent3:hover {
  color: #000619;
}
.demos4 a.btn4 {
  display: inline-block;
  position: relative;
  color: #408a75;
  font-size: 1rem;
  width: 100%;
  max-width: 600px;
  font-weight: 600;
  max-height: 80px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
  box-shadow: 0.05rem 0.05rem 0.2rem 0.05rem grey;
  border-radius: 10px;
  text-decoration: none;
  padding: 5px 15px;
  border: none;
  text-align: center;
}
.demos a.btn4 span {
  text-decoration: none;
} 
/* GRATIS DOWNLOADS */
.gratis_downloads {
  display: flex;
  flex-direction: column; /* Zorg ervoor dat de elementen verticaal worden gestapeld */
  align-items: center; /* Horizontaal centreren van de inhoud */ 
  text-align: center;
  width:100%;
  max-width:1200px;
  padding:20px;
}
.gratis_downloads p {
  font-size:0.9em;
}

.gratis_download {
  display:block;  
  padding:10px;
  border-radius:10px;
  width:100%;
  max-width:340px;
  margin-bottom:10px;
  text-decoration:none;
  color:#000619; 
  border:1px solid #08403E;
}
.gratis_download:hover {  
  border:1px solid #08403E;
  background-color:#edf4f4;  
}
.gratis_download:focus {  
  border:1px solid #08403E;
  background-color:#edf4f4;  
}
.sup {
  display:inline-block;
  text-align:left;
  margin-left:20px;
  font-size:0.8em;
}
.installeren p {
  text-align:left;
}
/* DonatieKnop */
.donate-button {
  display: inline-block;
  background-color: #4C7474;
  color: white;
  font-size: 18px;
  padding: 12px 24px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-decoration: none;
  font-weight: bold;
  transition: background 0.5s ease;
}
.donate-button:hover {
  background-color: #a0bdbd;
}
  /* SCROLL TO TOP */
#scrollToTopBtn {
    position: fixed;
    bottom: 20px;
    left: 50%;   
    border-radius:50%;
    border:5px solid #fff;
    cursor: pointer;  
    z-index: 99999; /* Zorg ervoor dat het boven andere elementen ligt */
    transform: translateX(-50%); /* Centreert de knop netjes */
    opacity: 0; /* Onzichtbaar bij start */
    visibility: hidden;
    transition: opacity 0.3s ease-in-out, visibility 0.3s;
  }
  #scrollToTopBtn.visible {
    opacity: 0.6; /* Maak de knop zichtbaar */
    visibility: visible;
  }
 #scrollToTopBtn img {
    width:20px;
    height:30px; 
  }
  #scrollToTopBtn:hover {
    border:5px solid #4c7474;
    opacity:1;
  }
  /* Footer */
  .footer2, .footer2 p, .footer2 p a {  
    font-size: 0.8rem;
    padding-top: 20px;    
    line-height: 1.2rem;
    text-align:left;
  }
  .footer {
    display: block;
    position: relative;
    left: 0;
    bottom: 0;
    width: 100%;
    max-width: 1200px;
    background-color: #052824 ;
    height: 300px;
    font-style: normal;
    color: #ffffff;
    text-align: left;
    padding-left: 30px;
    padding-right: 10px;
    padding-top:15px;
    padding-bottom:30px;
    font-size: 0.8rem;
  } 
  footer.loaded {
    display: block;
}
 @media screen and (max-width: 900px) {
    .footer {
      height: 500px;
    }
  }
  
  /* Algemene stijlen voor grotere schermen */
  .split-text {
    text-align: left;
  }
  .split-text span {
    display: inline; /* Zinnen staan naast elkaar op grotere schermen */
    color: white !important;
    font-size:0.8rem !important;
    font-weight: normal;
    margin-left: 20px;
    text-align: left;
  }
  .split-text a span{  
    color: white;  
    text-decoration: none;
    font-size:0.8rem;
  }
  /* Stijlen voor schermen met een breedte tot 767px */
  @media screen and (max-width: 767px) {
    .split-text span {
      display: block; /* Zinnen staan onder elkaar op kleinere schermen */
    }
  }
  footer .trust {
    width:100%;
    max-width:200px;
    height:auto;
    margin-left:20px;
  }
  /* Action Banner */
.banner {
    width: 100%;
    height: 40px;
    overflow: hidden;
    background: #87875a;  
    display: flex;
    align-items: center;
    white-space: nowrap;    
}

.scroll {
  display:block;
  position:relative;
 margin:0 auto;
 animation: scroll-left 50s linear infinite;
}

.scroll span {
    padding-right: 50px; /* ruimte tussen de herhalingen */
    font-size: 20px;
     color:#fff;
}
@keyframes scroll-left {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}
/* ACTIE BUBBLE */
*{box-sizing:border-box;margin:0;padding:0}

/* Bubble tussen de tekst plaatsen */
.bubble-wrapper {
  float: left; /* laat tekst eromheen lopen */
  margin: 0 1rem 1rem 0;
  position: relative;
  width: fit-content;
  z-index: 1;
}

.bubble {
  --size: min(80vw, 400px); /* standaard grootte */
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  padding: 10%; /* schalende padding */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: radial-gradient(circle at 30% 20%, #d9d3b0 0%, #a68c55 35%, #7a5f2e 70%, #503d1a 100%);
  box-shadow: 0 20px 40px rgba(18, 38, 63, 0.12), inset 0 -6px 18px rgba(0,0,0,0.04);
  border: 6px solid rgba(255,255,255,0.6);
  transform: rotate(-15deg);
  box-sizing: border-box;
}

.bubbleDiv {
  font-size:2rem;padding-top:0; margin:0;
}
.bubbleSpan {
  font-size:1.2rem;
  color:#000619;
  text-decoration: none;
}
.bubble .title {
  font-size: clamp(0.8rem, 2.5vw, 1.2rem);
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 700;
  color: #3b2b16;
  margin-bottom: 0.6rem;
}
.bubble .lines {
  font-size: clamp(0.7rem, 2vw, 1rem);
  color: #2b1f11;
  line-height: 1.25;
}
.bubble .lines b {
  display: block;
  font-size: clamp(0.8rem, 2.2vw, 1.1rem);
  margin-top: 0.45rem;
  font-weight: 800;
  color: #ffffff;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.6);
}
.accent{
position: absolute;
pointer-events:none;
}


.accent.a1{width:90px;height:90px;border-radius:50%;background:rgba(255,255,255,0.18);right:8%;top:10%;filter:blur(6px)}
.accent.a2{width:60px;height:60px;border-radius:50%;background:rgba(0,0,0,0.04);left:12%;bottom:8%;filter:blur(3px)}


@media (min-width:591px) and (max-width:764px){
 .bubble {
    --size: min(80vw, 400px);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    padding:2rem;
  }
.bubble .title{
font-size: 1rem; /* aangepaste tekstgrootte voor kleine schermen */
}
.bubble .lines{
font-size: 0.9rem;
}
.bubble .lines b{
font-size: 1rem;
}
}
@media (min-width:363px) and (max-width:590px){
.bubble {
    --size: min(100vw, 400px);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    padding:2rem;
  }
.bubble .title{
font-size: 1rem; /* aangepaste tekstgrootte voor kleine schermen */
}
.bubble .lines{
font-size: 0.9rem;
}
.bubble .lines b{
font-size: 1rem;
}
.bubbleH2 span.subkop2 {
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  clear: both;
float: none ;
width: 100% ;
}
}
@media (max-width:362px){
 .bubble-wrapper {
    float: left ;
    margin: 0.5rem auto ;
    display: block;
    width: 60vw ;
    margin:0 auto;
  }

  .bubble {
    --size: min(120vw, 400px);
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    padding:0.5rem;
    font-size:1rem;
  }
.bubble .title{
font-size:0.9rem; /* aangepaste tekstgrootte voor kleine schermen */
}
.bubble .lines{
font-size: 0.9rem;
}
.bubble .lines b{
font-size: 0.9rem;
}
.bubbleH2 span.subkop2 {
  display:flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  clear: both;
float: none ;
width: 100% ;
margin:0;
padding:0;
box-sizing: border-box;
}
}
/* {
  outline: 1px solid red;
}*/

