/*
Name: Carels Kamers
Author: Urban Hippos
Author URI: http://www.urbanhippos.com/
Tags: carels kamers bed and breakfast texel
*/

/*
Fonts
*/

@font-face {
    font-family: 'Downcomeregular';
    src: url('../fonts/downcome/downcome-webfont.woff2') format('woff2'),
         url('../fonts/downcome/downcome-webfont.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

html {
  background: #f7f8f9;
  box-sizing: border-box;
}

body,html {
    font-family: "Open+Sans", sans-serif;
    color: #545454;
    font-weight:300;
    height: 100%;
    margin:0;
    padding:0;
}

body {
  -webkit-animation-duration: 0.1s;
  -webkit-animation-name: fontfix;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-timing-function: linear;
  -webkit-animation-delay: 0.1s;
}

@-webkit-keyframes fontfix {
  from { opacity: 1; }
  to { opacity: 1; }
}

/* --- NIEUWE LOGO ANIMATIE --- */
@keyframes logoIn {
    0% { opacity: 0; transform: translateY(-20px) scale(0.9); }
    100% { opacity: 1; transform: translateY(0) scale(1); }
}

div#wrapper {
    position:relative;
    text-align: left;
    height: 100%;
}

div.clear {
    clear:both;
}

/* Content  */
div#content {
    margin:0;
    padding-bottom: 40px;
    height: 100%;
}

p {
  font-family: 'Open sans';
  font-size: 15px;
  line-height: 175%;
  margin: 0;
}

.item-content p {
  font-family: 'Open sans';
  font-size: 18px;
  line-height: 150%;
  margin: 0;
  padding: 0 20px;
}

.initial {
  display: inline-block;
    margin: 10px;
}

.initial-inner {
  color: white;
  display: table-cell;
  text-decoration: none;
  height: 150px;
  width: 150px;  
  font-size: 24px;
}

.initial-inner img {
  width: 150px;
  height: auto;
  border-radius: 75px;
  object-fit: cover;
}


p a {
  font-weight: 700;
  color: #000;
  text-decoration: none;
}

.p-padding {
  padding: 0 20px;
}

.people {
  font-size: 25px;
}

.flag {
  width: 24px;
}

.padding30 {
  margin-left: 30px;
  color: #000;
}

div.information-intro {
  width: 100%;
  color: #000;
  margin: 0;
  height:  100%;
  background-color: rgba(0, 0, 0, 0.15);
  /*border-radius: 10px;*/
}

div.information-intro .intro {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  text-align: center;
}

div.information-intro .intro .logo {
width: 500px;
}

.fading-logo {
  /* Initial state: invisible */
  opacity: 0; 
  
  /* name | duration | timing-function | fill-mode */
  animation: fadeSequence 15s ease-in-out forwards;
}

@keyframes fadeSequence {
  0% {
    opacity: 0;
  }
  10% {
    /* Fades in over the first 1.2 seconds (10% of 12s) */
    opacity: 1;
  }
  75% {
    /* Stays visible until the 10.8 second mark (90% of 12s) */
    opacity: 1;
  }
  100% {
    /* Fades out completely by 12 seconds */
    opacity: 0;
  }
}

.arrow {
  position: absolute;
  width: 100%;
  color: #fff;
  text-align: center;
  bottom: 50px;
  z-index: 100;
  margin: 0;
}

.arrow a {
  color: #fff;
  text-decoration: none;
}

.bounce {
  -moz-animation: bounce 2s infinite;
  -webkit-animation: bounce 2s infinite;
  animation: bounce 2s infinite;
}

i {
  font-size: 14px;
  font-style: italic;
}

@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-30px);
  }
  60% {
    transform: translateY(-15px);
  }
}

.logo-menu {
height: 30px;
width: 30px;
}

#header {
height:0px;
}

#subMenu {
    height:80px;
    width: 100%;
    background:rgba(0, 0, 0, 0.8);
    -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
    display:none;
    position:fixed;
    top:0;
    left:0;
    z-index:500;
    padding-top:0;
    box-shadow: 0 0 12px 0 rgba(0, 0, 0, 0.2);
    /* Zorgt dat content verticaal gecentreerd is in submenu */
    display: flex; 
    align-items: center;
}


/* --- AANGEPAST VOOR MENU & DARK MODE KNOP --- */
.menu {
  width: 1024px;
  /* height: 25px; Verwijderd om flexibiliteit te geven */
  min-height: 40px;
  margin: auto;
  padding: 0;
  
  /* Flexbox toegevoegd voor uitlijning knop (links) en logo (rechts) */
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
}

/* Zorgt dat logo animeert */
.menu img {
    display: block; 
}

/* Styling voor de Dark Mode knop */
#darkModeBtn {
  background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 0px; /* Ruimte rechts */
}

#darkModeBtn:hover {

}

.menu ul {
  display: table;
  height: 25px;
  padding-left: 0;
  margin: 0; /* Reset margin */
}


.menu li {
  float: left;
  display: table-cell;
  padding-right: 20px;
  line-height: 60px; /* Verticaal centreren */
}

.menu a {
  text-decoration: none;
  font-family: "proxima_nova_rgregular";
  font-size: 13px;
  letter-spacing: 1px;
  font-weight:100;
  text-transform: uppercase;
  color: #999;
}

.menu a:hover {
  text-decoration: none;
  color: #000;
}


strong {
  font-family: "Open sans";
  font-weight:700;
}


.slideshow {
  position: absolute;
  width: 512px;
  height: 320px;
  overflow: hidden;
}

.slideshow-mobile {
  display-none;
}

.slideshow-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background: no-repeat 50% 50%;
  background-size: cover;
  -webkit-animation-name: kenburns;
  animation-name: kenburns;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-duration: 16s;
  animation-duration: 16s;
  opacity: 1;
  -webkit-transform: scale(1.2);
  transform: scale(1.2);
}


.slideshow-image:nth-child(1) {
  -webkit-animation-name: kenburns-1;
  animation-name: kenburns-1;
  z-index: 3;
}

.slideshow-image:nth-child(2) {
  -webkit-animation-name: kenburns-2;
  animation-name: kenburns-2;
  z-index: 2;
}

.slideshow-image:nth-child(3) {
  -webkit-animation-name: kenburns-3;
  animation-name: kenburns-3;
  z-index: 1;
}

.slideshow-image:nth-child(4) {
  -webkit-animation-name: kenburns-4;
  animation-name: kenburns-4;
  z-index: 0;
}
 @-webkit-keyframes 
kenburns-1 {  0% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 1.5625% {
 opacity: 1;
}
 23.4375% {
 opacity: 1;
}
 26.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 98.4375% {
 opacity: 0;
 -webkit-transform: scale(1.21176);
 transform: scale(1.21176);
}
 100% {
 opacity: 1;
}
}
 @keyframes 
kenburns-1 {  0% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 1.5625% {
 opacity: 1;
}
 23.4375% {
 opacity: 1;
}
 26.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 98.4375% {
 opacity: 0;
 -webkit-transform: scale(1.21176);
 transform: scale(1.21176);
}
 100% {
 opacity: 1;
}
}
@-webkit-keyframes 
kenburns-2 {  23.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 26.5625% {
 opacity: 1;
}
 48.4375% {
 opacity: 1;
}
 51.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
}
@keyframes 
kenburns-2 {  23.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 26.5625% {
 opacity: 1;
}
 48.4375% {
 opacity: 1;
}
 51.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
}
@-webkit-keyframes 
kenburns-3 {  48.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 51.5625% {
 opacity: 1;
}
 73.4375% {
 opacity: 1;
}
 76.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
}
@keyframes 
kenburns-3 {  48.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 51.5625% {
 opacity: 1;
}
 73.4375% {
 opacity: 1;
}
 76.5625% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
}
@-webkit-keyframes 
kenburns-4 {  73.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 76.5625% {
 opacity: 1;
}
 98.4375% {
 opacity: 1;
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
}
@keyframes 
kenburns-4 {  73.4375% {
 opacity: 1;
 -webkit-transform: scale(1.2);
 transform: scale(1.2);
}
 76.5625% {
 opacity: 1;
}
 98.4375% {
 opacity: 1;
}
 100% {
 opacity: 0;
 -webkit-transform: scale(1);
 transform: scale(1);
}
}

/*slideshow new*/
#mainSliderContainer {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    background: #000;
}

#mainSliderWrapper {
    display: flex;
    align-items: center;
    height: 100%;
    /* Start with a large negative value to allow space for clones */
    transform: translateX(0px);
    will-change: transform;
}

.slide {
    flex: 0 0 auto; /* Stop slides from shrinking */
    height: 420px;
    padding: 0 5px; /* 10px total gap between slides */
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide img {
    height: 420px;
    width: auto;
    display: block;
    filter: brightness(0.3); /* Darkened by default */
    transition: filter 0.5s ease;
}

/* Lights up the center image */
.slide.is-centered img {
    filter: brightness(1);
}

.slider-dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 5;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
}

.dot.active { background: #fff; }
.ruis {
            position: absolute;
            inset: -200%;
            background-image: url("../img/noise.png");
            opacity: 25%;
            z-index: -10;
            /* pointer-events: none; */

            animation: shift 0.2s linear infinite both;
        }

        @keyframes shift {
            0% {
                transform: translateX(10%) translateY(10%);
            }

            100% {
                transform: translateX(-10%) translateY(-10%);
            }
        }

.cb-slideshow,
.cb-slideshow:after { 
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
    z-index: 0; 
}
.cb-slideshow:after { 
    content: '';
}

.cb-slideshow li span { 
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0px;
    left: 0px;
    color: transparent;
    background-size: cover;
    background-position: 50% 50%;
    background-repeat: none;
    opacity: 0;
    z-index: 0;
    animation: imageAnimation 50s linear infinite 0s; 
}

.cb-slideshow li:nth-child(1) span { 
    background-image: url(../img/gerard-01.webp) 
}
.cb-slideshow li:nth-child(2) span { 
    background-image: url(../img/gerard-02.webp);
    animation-delay: 10s; 
}
.cb-slideshow li:nth-child(3) span { 
    background-image: url(../img/gerard-03.webp);
    animation-delay: 20s; 
}
.cb-slideshow li:nth-child(4) span { 
    background-image: url(../img/gerard-04.webp);
    animation-delay: 30s; 
}
.cb-slideshow li:nth-child(5) span { 
    background-image: url(../img/gerard-06.webp);
    animation-delay: 40s; 
}
/*.cb-slideshow li:nth-child(6) span { 
    background-image: url(../img/gerard-06.webp);
    animation-delay: 50s; 
}*/

@keyframes imageAnimation { 
  0% {      opacity: 0;
      animation-timing-function: ease-in;
  }
  8% {      opacity: 1;
      transform: scale(1.05);
      animation-timing-function: ease-out;
  }
  17% { opacity: 1 }

  25% {      opacity: 0;
      transform: scale(1.2);
  }
  100% { opacity: 0 }

}

.no-cssanimations .cb-slideshow li span{
  opacity: 1;
}


div.spacer {
  width: 100%;
  height: 50px;
  background-color: #f7f8f9;
  margin: 0;
  /*border-radius: 10px;*/
}

div.information-light {
  width: 100%;
  background-color: #f7f8f9;
  margin: 0;
  /*border-radius: 10px;*/
}

div.information-white {
  width: 100%;
  background-color: #fff;
  margin: 0;
  /*border-radius: 10px;*/
}

div.information-light .text-block {
  margin-left: auto;
  margin-right: auto;
  width: 1024px;
  color: #000;
  padding:0;
  /*border-radius: 10px;*/
}

div.information-light .text-footer {
  margin-left: auto;
  margin-right: auto;
  width: 100%
  color: #999;
  padding:0;
  text-align: center;
  /*border-radius: 10px;*/
}

div.information-white .text-block-50 {
  position: relative;
  float: left;
  width: 50%;
  height: 320px;
  background-color: #fff;
  padding:0px 0px 0px 0px;
  /*border-radius: 10px;*/
}

.faciliteiten {
  width: 1024px;
  padding-top: 50px;
  background-color: #f7f8f9;
  margin-left: auto;
  margin-right: auto;
}

.faciliteiten ul {
  display: table;
  width: 100%;
  margin: 0;
  padding: 0;
}


.faciliteiten li {
  float: left;
  display: table-cell;
  font-family: "Open+Sans", sans-serif;
  font-size: 13px;
 color: #545454;
    font-weight:300;
  width: 14%;
  text-align: center;
  line-height: 24px;
}

.faciliteiten li i {
  font-size: 25px;
  color: #7ab198;
}

.vertical {
  margin: 0;
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}

div.information-testimonial {
  position: relative;
  width: 100%;
  background-color: rgba(0,0,0,.6);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  height: 480px;
  margin: 0;
  color: #fff;
  text-align: center;
  /*border-radius: 10px;*/
}

div.information-light .text-block-left  {
  float: left;
  width: 30%;
  padding:0px 0 0px 0;
  /*border-radius: 10px;*/
}

div.information-light .text-block-right {
  float: left;
  width: 65%;
  color: #000;
  padding:0px 0 0px 40px;
  /*border-radius: 10px;*/
}

div.information-light .text-block-white  {
  position: relative;
  float: left;
  width: 50%;
  height: 320px;
  padding:0px 0px 0px 0px;
  background-color: #fff;
  text-align: center;
  /*border-radius: 10px;*/
}

div.information-light .text-block-image {
  float: left;
  width: 50%;
  height: 320px;
  color: #000;
  padding:0px 0 0px 0px;
  /*border-radius: 10px;*/
}

div.information-light .text-block-image-2 {
  display: none;
}

div.information-light .text-block-image-3 {
  float: left;
  width: 50%;
  height: 320px;
  color: #000;
  padding:0px 0 0px 0px;
  /*border-radius: 10px;*/
}



div.gutter {
  float: left;
    width: 40px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 120px);
    grid-gap: 10px;
}



.gallery__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block; 
}

.gallery__item--1 {
    grid-column-start: 1;
    grid-column-end: 3;
    grid-row-start: 1;
    grid-row-end: 3;
    margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

.gallery__item--2 {
    grid-column-start: 3;
    grid-column-end: 5;
    grid-row-start: 1;
    grid-row-end: 3;
    margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

.gallery__item--3 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 1;
    grid-row-end: 6;
        margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

.gallery__item--4 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 3;
    grid-row-end: 6;
        margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

.gallery__item--5 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 6;
    grid-row-end: 9;
        margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

.gallery__item--6 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 6;
    grid-row-end: 9;
        margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

.gallery__item--7 {
    grid-column-start: 1;
    grid-column-end: 5;
    grid-row-start: 9;
    grid-row-end: 14;
        margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

.gallery__item--8 {
    grid-column-start: 5;
    grid-column-end: 9;
    grid-row-start: 9;
    grid-row-end: 14;
        margin: 0;
  padding: 0;
  box-sizing: inherit; 
}

.video-container {
  position:relative;
  padding-bottom:52.25%;
  padding-top:30px;
  height:0;
  overflow:hidden;
  margin-top: 20px;
}

.video-container iframe, .video-container object, .video-container embed {
  position:absolute;
  top:0;
  left:0;
  width:100%;
  height:100%;
}

iframe {width:100%;height:100%;}

 #map {
    height: 100%;
    background-color: grey;
}

 #map-container {
    background-color: grey;
}

h1, h2, h3 {
  font-family: 'Downcomeregular', serif;
  font-size: 36px;
  line-height: 110%;
  font-weight: 400;
  padding-bottom: 20px;
  margin: 0
}

h1 strong, h2 strong, h3 strong {
  font-family: 'Downcomeregular', serif;
  font-weight: 800;
}

    div.clear {
    clear:both;
    padding-top: 0px;
}


/*slider van maarten*/


#bgslider { 
  overflow: hidden; 
}
#bgslider figure { 
  position: relative;
  width: 500%;
  margin: 0;
  left: 0;
  text-align: left;
  font-size: 0;
  animation: 32s slidy infinite; 
}
#bgslider figure img { 
  width: 20%; 
  float: left; 
  height: 420px;
}

@keyframes slidy {
0% { left: 0%; }
15% { left: 0%; }
20% { left: -100%; }
35% { left: -100%; }
40% { left: -200%; }
55% { left: -200%; }
60% { left: -300%; }
75% { left: -300%; }
80% { left: -400%; }
95% { left: -400%; }
100% { left: 0%; }
}


.large_block .large_block_btn {
  display: none;
}


@media screen and (max-width: 1024px) {

  div#content {
    width: auto;
    padding-bottom: 0px;
}

div.information-intro .intro {
  width: 100%;
}

div.information-light .text-block  {
  width: 86%;
}

div.gutter {
  display: none;
}

div.information-light .text-block-left  {
  float: none;
  width: auto;
  padding:0px 0 0px 0px;
  /*border-radius: 10px;*/
}

div.information-light .text-block-right {
  float: none;
  width: auto;
  padding:20px 0px 0px 0px;
  /*border-radius: 10px;*/
}

.slideshow {
  width: 43%;
}

.menu {
  width: 80%;
}

.faciliteiten {
  width: 90%;
}

h6 {
  font-weight: 100;
  font-size: 25px;
  padding: 0;
  margin: 0;
}

}

@media screen and (max-width: 767px) {

  div.information-intro .intro .logo {
width: 75%;
}

/*.menu {
  display: none;
}*/

#bgslider figure img { 
  width: 20%; 
  float: left; 
  height: 240px;
}

.menu-mobile {
  display: block;
  width: 80%;
  height: 25px;
  margin: auto;
  padding: 0;
}

.menu-mobile ul {
  display: table;
  height: 25px;
  padding-left: 0;
}

.menu-mobile li {
  float: left;
  display: table-cell;
  padding-right: 20px;
  line-height: 28px;
}

.menu-mobile a {
  text-decoration: none;
  font-family: "proxima_nova_rgregular";
  font-size: 13px;
  letter-spacing: 1px;
  font-weight:100;
  text-transform: uppercase;
  color: #999;
}

.menu-mobile a:hover {
  text-decoration: none;
  color: #000;
}

.faciliteiten {
  display: none;
}

div.information-light .text-block-white  {
  width: 100%;
  height: 320px;
}


div.information-light .text-block-image-2 {
  display: block;
  float: left;
  width: 100%;
  height: 320px;
  color: #000;
  padding:0px 0 0px 00px;
  /*border-radius: 10px;*/
}

div.information-light .text-block-image-3 {
  float: left;
  width: 100%;
  height: 320px;
  color: #000;
  padding:0px 0 0px 0px;
  /*border-radius: 10px;*/
}

div.information-light .text-block-image {
  display: none;
}

div.information-white .text-block-50 {
  width: 100%;
}

.slideshow {
  width: 86%;
  height: 320px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    grid-template-rows: repeat(8, 50px);
    grid-gap: 10px;
}

h2 {
  font-size: 32px;
}

.initial-inner {
    color: white;
    display: table-cell;
    text-decoration: none;
    height: 100px;
    width: 100px;
}

.initial-inner img {
  width: 100px;
  height: auto;
  border-radius: 50px;
  object-fit: cover;
}

/*.initial {
  display: none;
}*/

}

/* =========================================
   DARK MODE OVERRIDES
   ========================================= */

body.dark-mode {
    background-color: #121212 !important;
    color: #e0e0e0 !important;
}

/* Achtergronden donker maken */
body.dark-mode html {
    background-color: #121212;
}

body.dark-mode .information-light, 
body.dark-mode .information-white,
body.dark-mode .faciliteiten,
body.dark-mode div.spacer {
    background-color: #1e1e1e !important; /* Donkergrijs */
    color: #f5f5f5 !important;
}

body.dark-mode .information-light .text-block-white,
body.dark-mode .information-white .text-block-50 {
    background-color: #121212 !important; /* Donkergrijs */
    color: #f5f5f5 !important;
}

/* Tekst wit maken */
body.dark-mode h1, 
body.dark-mode h2, 
body.dark-mode h3, 
body.dark-mode p,
body.dark-mode a,
body.dark-mode li,
body.dark-mode .padding30,
body.dark-mode .information-light .text-block,
body.dark-mode .information-light .text-block-right,
body.dark-mode .information-light .text-block-image {
    color: #f5f5f5 !important;
}

/* Specifieke dark mode border/kleuren */
body.dark-mode #darkModeBtn {
}

body.dark-mode #darkModeBtn:hover {
}

body.dark-mode .text-footer {
    color: #888;
}