
@import url('https://fonts.googleapis.com/css2?family=Istok+Web:ital,wght@0,400;0,700;1,400;1,700&display=swap');
html, body, div, span,
h1, h2, h3, h4, h5, h6, p,
a, em, img, strong,
ol, ul, li,
table, tr, th, td,
form {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  background: transparent;
}
h1, h2, h3, h4, h5, h6, p {
  font-family: "Istok Web", sans-serif;
  font-weight: 400;
  font-style: normal;
}
a,
a:link,
a:visited,
a:active,
a:focus {
  color: white;
  text-decoration: underline;
  text-transform: none;
}
a:hover {
  color: white;
  text-decoration: none;
}
b{
  font-weight: 700;
}
i{
  font-style: italic;
}
h2{
  text-transform: uppercase;
  margin-top:3px;
}
::selection
{
color:#000;
background-color: #fff;
}
::-moz-selection
{
color:#000;
background-color: #fff;
} 
body {
color: #ffff;
background-color: #201c1c;
}
/* meer space bij tablet */
@media (min-width: 769px) and (max-width: 1023px) {
  .columns {
    padding: 0 1rem;
  }
  .column {
    padding: 1rem;
  }
}
/* Zorg dat aside vast blijft staan links */
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh; /* volledige hoogte */
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 1.5rem 1rem 1.5rem 0rem; /* minder padding links */
}
/* niet sticky mobiel */
@media (max-width: 768px) {
  .sidebar {
    position: relative;
    height: auto;
    padding: 1rem;
  }
}
/* Logo centreren en ruimte geven */
.logo {
  text-align: center;
  margin-bottom: 2rem;
}
/* Bewegende schaduw animatie onder het logo */
.logo img {
  width: 100%;
  display: block;
  margin: 0 auto;
  filter: 
   drop-shadow(3px 12px 10px rgba(0, 0, 0, 0.4))
   drop-shadow(-3px 12px 10px rgba(0, 0, 0, 0.4))
   drop-shadow(3px -12px 10px rgba(0, 0, 0, 0.4))
   drop-shadow(-3px -12px 10px rgba(0, 0, 0, 0.4));
  transition: filter 0.3s ease;
}
.logo img:hover {
  filter:
    drop-shadow(5px 17px 8px rgba(0, 0, 0, 0.5))
    drop-shadow(-5px 17px 8px rgba(0, 0, 0, 0.5))
    drop-shadow(5px -17px 8px rgba(0, 0, 0, 0.5))
    drop-shadow(-5px -17px 8px rgba(0, 0, 0, 0.5));
}
.info p {
  line-height: 1.4;
  text-align: center;
  text-transform: uppercase;
}
.vid {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}
.vid iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.vid .placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: opacity 0.4s ease;
}
@keyframes logoLoad {
  0% {
    transform: scale(1);
    opacity: 0.3;
  }
  100% {
    transform: scale(1.05); 
    opacity: 0.8;          
  }
}
.vid .placeholder img {
  width: 40%; /* mini logo */
  opacity: 0.5;
  animation: logoLoad 3s ease-out forwards; /* 2s groeien + 1s ease-out */
  transition: opacity 0.4s ease, transform 0.2s ease;
}
.vid.loaded .placeholder {
  opacity: 0;      /* fade out */
 pointer-events: none;
 animation: none; /* animatie stoppen */
}