@font-face {
    font-family: 'Lucid-Dream';
    src: url('../fonts/lucid-dream/LucidDreamRegular.eot');
    src: url('../fonts/lucid-dream/LucidDreamRegular.eot?#iefix') format('embedded-opentype'),
         url('../fonts/lucid-dream/LucidDreamRegular.woff2') format('woff2'),
         url('../fonts/lucid-dream/LucidDreamRegular.woff') format('woff'),
         url('../fonts/lucid-dream/LucidDreamRegular.ttf') format('truetype'),
         url('../fonts/lucid-dream/Lucid-Dream.svg#LucidDream') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
  font-family: 'Lora-Medium';
  src: url('/assets/fonts/lora/Lora-Medium.woff2') format('woff2'),
       url('/assets/fonts/lora/Lora-Medium.woff') format('woff'),
       url('/assets/fonts/lora/Lora-Medium.ttf') format('truetype');
       font-weight: 400;
       font-display: swap;
       font-style: normal;
}

@font-face {
  font-family: 'Lora-Bold';
  src: url('/assets/fonts/lora/Lora-Bold.woff2') format('woff2'),
       url('/assets/fonts/lora/Lora-Bold.woff') format('woff'),
       url('/assets/fonts/lora/Lora-Bold.ttf') format('truetype');
       font-weight: 700;
       font-display: swap;
       font-style: normal;
}

.luciddream {
  font-family: "Lucid-Dream", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;
}

:root {
  scroll-behavior: smooth;
}

a {
  color: #07B1AA;
  text-decoration: none;
}

a:hover {
  color: #35d986;
  text-decoration: none;
}

.content p a {
	text-decoration: underline;
	color: #a7358c;
	white-space: nowrap;
	transition: 0.3s;  
}
.content p a:hover, .content li:hover>a {
	color: #700657;
	font-weight: bold;
}

body, html {
    width: 100%;
    font-family: 'Lora-Medium', Arial, sans-serif;
    height: 100%;
    margin: 0;
    padding: 0;    
    background: #FFEB7B;
}

#mapid { 
    height: 400px; 
    width: 100%; 
    box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

h1, h2, h3, h4, .h1, .h2, .h3, .h4 {
	font-family: 'Lucid-Dream', Arial, sans-serif;	
}

h1, .h1 {
	font-size: 2em;
	color: #000;
}

h2, .h2 { font-size: 1.4em; color: #a7358c; } 
h3, .h3 { font-size: 1.3em; color: #144a4b; } 
h4, .h4 { font-size: 1.2em; color: #144a4b; } 

.btn-purple {
  background-color: #a7358b;
  border-color: #a7358b;
  color: #fff; /* This sets the text color to white */
}

.btn-purple:hover {
  background-color: darken(#a7358b, 10%);
  border-color: darken(#a7358b, 10%);
}

.btn-purple:active,
.btn-purple.active,
.show > .btn-purple.dropdown-toggle {
  background-color: darken(#a7358b, 20%);
  border-color: darken(#a7358b, 20%);
}

.btn-purple:focus,
.btn-purple.focus {
  box-shadow: 0 0 0 0.25rem rgba(167, 53, 139, 0.5); /* Adjusts the shadow to match the purple color */
}

.text-donker {
	color: #134a4a;
}

.shadow {
    box-shadow: 0 10px 20px rgba(17,25,37,.15) !important;
}

@keyframes BackgroundGradient {
    0% {background-position: 0% 30%;}
    70% {background-position: 30% 30%;}
    100% {background-position: 0% 30%;}
}

.logo img, .kar img {
	height: 100px; 
	width: auto;
}

@media (max-width: 768px) {
    .logo, .kar {
        justify-content: center; 
    }
    .logo img, .kar img {
        height: 70px;
    }
}

.kar img {
    animation: slideIn 1s forwards;
    opacity: 0;
}

@keyframes slideIn {
    from {
        transform: translateX(-100vw); 
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.animate {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

@keyframes fadeIn {
    100% {opacity: 1;}
}

.bg-purple {
	background: #f0e4f1; 
}

.animation-delay-200ms {animation-delay: 0.2s;}
.animation-delay-400ms {animation-delay: 0.4s;}
.animation-delay-600ms {animation-delay: 0.6s;}
.animation-delay-800ms {animation-delay: 0.8s;}

@keyframes fadeIn {
    100% {opacity: 1;}
}

.btn-facebook {
    background: #3b5998; 
    background: -moz-linear-gradient(45deg, #3b5998 0%, #4c66a4 25%, #5a73af 50%, #6a80ba 75%, #7a8dce 100%);
    background: -webkit-linear-gradient(45deg, #3b5998 0%,#4c66a4 25%,#5a73af 50%,#6a80ba 75%,#7a8dce 100%);
    background: linear-gradient(45deg, #3b5998 0%,#4c66a4 25%,#5a73af 50%,#6a80ba 75%,#7a8dce 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#3b5998', endColorstr='#7a8dce', GradientType=1 );
    color: white; /* White text */
}

.btn-facebook:hover {
    background-color: #5472d3; /* A lighter shade of blue for hover */
    color: white;
}

.btn-whatsapp {
    background-color: #25D366; /* WhatsApp groen */
    color: white; /* witte tekst */
}

.btn-whatsapp:hover {
    background-color: #1fbb5f; /* Een iets lichtere groen */
    color: white;
}

.btn-instagram {
	background: #f09433; 
	background: -moz-linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); 
	background: -webkit-linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	background: linear-gradient(45deg, #f09433 0%,#e6683c 25%,#dc2743 50%,#cc2366 75%,#bc1888 100%); 
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f09433', endColorstr='#bc1888',GradientType=1 );
    color: white; /* witte tekst */
}

.btn-instagram:hover {
    background-color: #c6245f; /* Een iets lichtere magenta */
    color: white;
}

.btn-twitter {
    background-color: #1DA1F2; /* Twitter blauw */
    color: white; /* witte tekst */
}

.btn-twitter:hover {
    background-color: #1991db; /* Een iets lichtere blauw */
    color: white;
}

.btn-tiktok {
  background-color: #000; 
  color: white; 
}

.btn-tiktok:hover {
  background-color: white; 
  color: #EE1D52; 
}

.content {
	margin-top:120px;
    font-size: 20px;
    line-height: 1.8;
    text-rendering: optimizeLegibility;	
}

@media (min-width: 1200px) {
	.content {
	    margin-top: 180px;
	}	
}

.footer {
  margin-top:200px; 
  background: #f0e4f1;  
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  transition: all 0.5s;
  z-index: 1000;
  background: #f0e4f1;  
}

.menuheader {
	transition: all 0.5s;
	padding: 20px 12px;
}

.menuheadernav-up {
	padding: 8px 12px;
}

.nav-up {
    position: fixed;
    top: 0px;
    right: 0;
    left: 0;
    z-index: 1030;
}

.header .logo {
  line-height: 0;
}

.header .logo img {
	transition: all 0.5s;
	max-height: 32px;
	margin-right: 6px;
}
.header .logo img:hover {
	max-height: 33px;
}


.header .logo span {
  color: #1f6b45;
  margin-top: 3px;
}

@media screen and (max-width: 768px) {
	.menuheader {
		transition: all 0.5s;
		padding: 12px;
	}
	.header {
	  padding: 0;
	}
	.header .logo img {
	  max-height: 28px;
	}	
}

.header.header-scrolled {  	  
	background-color: rgba(255, 255, 255, 0.8);
	box-shadow: 0 1px 1px rgb(0 0 0 / 15%);
	-webkit-backdrop-filter: blur(16px);
	backdrop-filter: blur(16px);    
}

@media (max-width: 575.98px) {
  .w-100-mobile {
    width: 100% !important;
  }
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a,
.navbar a:focus {
    margin-left: 24px;
    text-decoration: none;
    font-family: "Lora-Bold", sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #313131;
    white-space: nowrap;
    transition: 0.3s;
}

.navbar a i,
.navbar a:focus i {
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover,
.navbar .active,
.navbar .active:focus,
.navbar li:hover>a {
  color: #a7358c;
}

.navbar .game,
.navbar .game:focus {
  background: #006666;
  margin-left: 10px;
  color: #fff;
}

.navbar .game:hover,
.navbar .game:focus:hover {
  color: #fff;
  background: #017f7f;
}

.navbar .dropdown ul {
  display: block;
  position: absolute;
  left: 14px;
  top: calc(100% + 30px);
  margin: 0;
  padding: 10px 0;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
  transition: 0.3s;
  border-radius: 4px;
}

.navbar .dropdown ul li {
  min-width: 200px;
}

.navbar .dropdown ul a {
  padding: 7px 16px;
  font-size: 15px;
  font-family: "Lora-Medium" !important;
  text-transform: none;
  font-weight: 600;
}

.navbar .dropdown ul a i {
  font-size: 12px;
}

.navbar .dropdown ul a:hover,
.navbar .dropdown ul .active:hover,
.navbar .dropdown ul li:hover>a {
  color: #2ebf75;
}

.navbar .dropdown:hover>ul {
  opacity: 1;
  top: 100%;
  visibility: visible;
}

.navbar .megamenu {
  position: static;
}

.navbar .megamenu ul {
  margin-top: 5px;
  right: 0;
  padding: 10px;
  display: flex;
}

.navbar .megamenu ul li {
  flex: 1;
}

.navbar .megamenu ul li a,
.navbar .megamenu ul li:hover>a {
  color: #013289;
}

.navbar .megamenu ul li a:hover,
.navbar .megamenu ul li .active,
.navbar .megamenu ul li .active:hover {
  color: #2ebf75;
}

.navbar .dropdown .dropdown ul {
  top: 0;
  left: calc(100% - 30px);
  visibility: hidden;
}

.navbar .dropdown .dropdown:hover>ul {
  opacity: 1;
  top: 0;
  left: 100%;
  visibility: visible;
}

@media (max-width: 1366px) {
  .navbar .dropdown .dropdown ul {
    left: -90%;
  }

  .navbar .dropdown .dropdown:hover>ul {
    left: -100%;
  }
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #1f6b45;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

.mobile-nav-toggle.fa-align-right {
  color: #0d537d;
}

.navbarcta { display: none; }
@media (min-width: 1200px) {
  .navbarcta {
    display: block;
  }
}

@media (max-width: 768px) {
  .mobile-nav-toggle {
    display: block;
  }
  
.mobile-nav-toggle.fa-rectangle-xmark {
  color: #fff;
}  

  .navbarmain ul {
    display: none;
  }
}

.thead-blauw {
	background: #002544;
	color: #fff;
}

.topheader {
    background: #008a39;
    color: #fff;
    padding: 6px 0px;
}

.topheader a {
	margin: 0px 8px;
	display:inline-block;
	text-decoration: none;
	color: #FFFBE3;
}
.topheader a:hover {
	color: #fff;
}

.navbaraccount {
	margin-top: -5px;
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(1, 22, 61, 0.9);
  transition: 0.3s;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a,
.navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: #1f6b45;
}

.navbar-mobile a:hover,
.navbar-mobile .active,
.navbar-mobile li:hover>a {
  color: #2ebf75;
}

.navbar-mobile .getstarted,
.navbar-mobile .getstarted:focus {
  margin: 15px;
}

.navbar-mobile .dropdown ul {
  position: static;
  display: none;
  margin: 10px 20px;
  padding: 10px 0;
  z-index: 99;
  opacity: 1;
  visibility: visible;
  background: #fff;
  box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
}

.navbar-mobile .dropdown ul li {
  min-width: 200px;
}

.navbar-mobile .dropdown ul a {
  padding: 10px 20px;
}

.navbar-mobile .dropdown ul a i {
  font-size: 12px;
}

.navbar-mobile .dropdown ul a:hover,
.navbar-mobile .dropdown ul .active:hover,
.navbar-mobile .dropdown ul li:hover>a {
  color: #2ebf75;
}

.navbar-mobile .dropdown>.dropdown-active {
  display: block;
}

