
@font-face{
  font-family:"Museo";
  src:url("font/Museo-500.otf") format("opentype");
  font-weight:500;
  font-style:normal;
  font-display:swap;
}

:root{
  --bh-red:#d8383a;
  --bh-red-dark:#c72f31;
  --bh-text:#101010;
  --bh-muted:rgba(16,16,16,.65);
  --bh-container:1200px;
  --bh-topbar-h:96px;
}

@keyframes fadeInUp{
  from{opacity:0;transform:translateY(30px);}
  to{opacity:1;transform:translateY(0);}
}

@keyframes pulse{
  0%,100%{opacity:0.3;fill:#fff;}
  50%{opacity:1;fill:rgba(255,255,255,0.7);}
}

*{box-sizing:border-box;}

html{scroll-behavior:smooth;}

html,body{
  margin:0;
  padding:0;
  font-family:"Museo",Arial,sans-serif;
  background:#fff;
  color:var(--bh-text);
  overflow-x:hidden;
}

img{max-width:100%;display:block;}

.bh-container{
  width:min(var(--bh-container),92vw);
  margin:0 auto;
}

main{overflow:visible;}

.bh-topbar{
  position:sticky;
  top:0;
  z-index:100;
  background:#fff;
  border-bottom:1px solid rgba(0,0,0,.1);
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
}

.bh-topbar__inner{
  height:var(--bh-topbar-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0;
  position:relative;
}

.bh-logo img{max-height:56px;}

.bh-topbarNotice{
  position:absolute;
  left:50%;
  transform:translateX(-50%);
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#111;
  font-size:14px;
  line-height:1;
}

.bh-topbarLinks{
  display:flex;
  align-items:center;
  gap:16px;
}

.bh-topbarLink{
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-decoration:none;
  color:#111;
  gap:4px;
  transition:transform 0.2s ease;
  will-change:transform;
}

.bh-topbarLink:hover{transform:scale(1.05);}

.bh-topbarLink__icon{width:36px;height:36px;}

.bh-topbarLink__text{
  font-size:13px;
  font-weight:500;
  line-height:1;
  text-align:center;
  white-space:nowrap;
}

.bh-langToggle{
  background:none;
  border:none;
  padding:0;
  margin:0;
  font:inherit;
  color:inherit;
  letter-spacing:inherit;
  -webkit-appearance:none;
  appearance:none;
}

.bh-hero{
  background:var(--bh-red);
  padding:180px 0;
  text-align:center;
  position:relative;
  z-index:1;
}

.bh-hero__mobileContent{display:none;}

.bh-hero__mobileTitle{
  margin:0 0 16px;
  color:#fff;
  font-size:24px;
  font-weight:500;
  line-height:1.3;
}

.bh-hero__mobileText{
  margin:0 auto;
  color:#fff;
  font-size:16px;
  line-height:1.5;
  max-width:600px;
}

.bh-hero__inner{
  display:flex;
  flex-direction:column;
  align-items:center;
  position:relative;
  z-index:5;
}

.bh-heroCards{
  background:#fff;
  padding:0 0 40px;
  position:relative;
  z-index:2;
}

.bh-heroCards__grid{
  position:relative;
  transform:translateY(-280px);
  margin-bottom:-280px;
  z-index:3;
}

.bh-topBanner{
  position:absolute;
  top:-34px;
  left:0;
  right:0;
  padding:9px 0;
  z-index:5;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:12px;
}

.bh-topBanner__left{
  position:absolute;
  left:16px;
  display:flex;
  align-items:center;
  gap:8px;
}

.bh-topBanner__event{
  color:#fff;
  font-size:14px;
  font-weight:500;
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif;
  line-height:1;
  text-transform:uppercase;
  letter-spacing:0.05em;
}

.bh-topBanner__time{
  position:absolute;
  right:16px;
  color:#fff;
  font-size:14px;
  font-weight:500;
  font-family:-apple-system,BlinkMacSystemFont,'Segoe UI',system-ui,sans-serif;
  font-variant-numeric:tabular-nums;
  line-height:1;
}

.bh-topBanner__dots{
  width:84px;
  height:12px;
  color:#fff;
  flex-shrink:0;
  display:block;
  margin:auto 0;
}

.bh-topBanner__dots circle{
  animation:pulse 1.4s ease-in-out;
  animation-iteration-count:1;
}

.bh-topBanner__dots circle:nth-child(1){animation-delay:0s;}
.bh-topBanner__dots circle:nth-child(2){animation-delay:0.3s;}
.bh-topBanner__dots circle:nth-child(3){animation-delay:0.6s;}
.bh-topBanner__dots circle:nth-child(4){animation-delay:0.9s;}
.bh-topBanner__dots circle:nth-child(5){animation-delay:1.2s;}

.bh-embedFrame{
  position:relative;
  width:100%;
  border:0;
  border-radius:16px;
  overflow:hidden;
  background:#fff;
  aspect-ratio:16/9;
  max-height:720px;
}

.bh-embedIframe{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
  outline:0;
  background:transparent;
  display:block;
}

.bh-refreshWrapper{
  position:absolute;
  bottom:-20px;
  right:10px;
  z-index:100;
  width:140px;
  height:140px;
}

.bh-refreshCircle{
  width:100%;
  height:100%;
  background:var(--bh-red);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(0,0,0,0.2);
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  will-change:transform;
}

.bh-refreshCircle:hover{
  transform:scale(1.02) rotate(15deg);
  box-shadow:0 8px 24px rgba(0,0,0,0.35);
}

.bh-refreshCircle:hover .bh-refreshCircle__icon{transform:rotate(30deg);}

.bh-refreshCircle__icon{
  width:56px;
  height:56px;
  color:#fff;
  transition:transform 0.3s ease;
}

.bh-overlay{
  position:absolute;
  top:0;
  left:0;
  bottom:0;
  width:310px;
  max-width:100%;
  background:rgba(0,0,0,0.6);
  z-index:10;
  display:flex;
  flex-direction:column;
  align-items:stretch;
  transition:transform 0.3s ease;
  will-change:transform;
}

.bh-overlay.minimized{transform:translateX(-100%);}

.bh-overlay__toggle{
  position:absolute;
  top:20px;
  right:-50px;
  background:rgba(0,0,0,0.6);
  border:none;
  color:#fff;
  width:50px;
  height:50px;
  cursor:pointer;
  padding:0;
  display:flex;
  align-items:center;
  justify-content:center;
  transition:background-color 0.2s;
  border-radius:0 50% 50% 0;
}

.bh-overlay__toggle svg{width:28px;height:28px;}

.bh-toggle__iconInfo{display:none;}
.bh-toggle__iconClose{display:block;}

.bh-overlay.minimized .bh-toggle__iconInfo{display:block;}
.bh-overlay.minimized .bh-toggle__iconClose{display:none;}

.bh-overlay__content{
  width:100%;
  flex:1;
  min-height:0;
  text-align:left;
  color:#fff;
  padding:45px 30px 0;
  display:flex;
  flex-direction:column;
  overflow-y:scroll;
  overflow-x:hidden;
}

.bh-overlay__content::-webkit-scrollbar{width:6px;}

.bh-overlay__content::-webkit-scrollbar-track{
  background:rgba(255,255,255,0.1);
}

.bh-overlay__content::-webkit-scrollbar-thumb{
  background:rgba(255,255,255,0.3);
  border-radius:3px;
}

.bh-overlay__content::-webkit-scrollbar-thumb:hover{
  background:rgba(255,255,255,0.5);
}

.bh-overlay__title{
  margin:0 0 20px;
  font-size:clamp(22px,2.8vw,28px);
  font-weight:500;
  line-height:1.3;
  color:#fff;
  letter-spacing:-0.01em;
}

.bh-overlay__text{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.55;
  color:rgba(255,255,255,0.95);
}

.bh-overlay__text:last-of-type{margin-bottom:30px;}

.bh-overlay__rating{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin:20px 0 30px;
  flex-wrap:nowrap;
  position:relative;
}

.bh-overlay__stars{
  display:flex;
  flex-direction:column;
  gap:4px;
  align-items:flex-end;
}

.bh-overlay__score{
  font-size:15px;
  font-weight:700;
  color:#fff;
}

.bh-overlay__starsIcons{
  color:#fff;
  display:flex;
  gap:2px;
  align-items:center;
}

.bh-overlay__starsIcons svg{width:14px;height:14px;}

.bh-overlay__logo{
  height:30px;
  width:auto;
  filter:brightness(0) invert(1);
}

.bh-overlay__divider{display:none;}

.bh-overlay__cta{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:calc(100% + 60px);
  margin-left:-30px;
  margin-top:auto;
  flex-shrink:0;
  background:var(--bh-red);
  color:#fff;
  text-decoration:none;
  text-align:center;
  padding:24px 32px;
  border-radius:0;
  border:none;
  font-size:18px;
  font-weight:500;
  line-height:1;
  cursor:pointer;
  font-family:inherit;
  transition:background-color 0.2s ease;
}

.bh-overlay__cta svg{transition:transform 0.2s ease;}

.bh-overlay__cta:hover svg{transform:translateY(4px);}

.bh-overlay__questions{
  margin:32px 0 10px;
  padding:0;
  display:none;
}

.bh-overlay__questions.visible{display:block;}

.bh-overlay__questionsTitle{
  margin:0 0 4px;
  font-size:18px;
  font-weight:700;
  color:#fff;
  line-height:1;
}

.bh-overlay__category{
  margin:28px 0 8px;
  font-size:12px;
  font-weight:700;
  letter-spacing:0.14em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.35);
  line-height:1;
}

.bh-overlay__category:first-of-type{
  margin-top:16px;
}

.bh-overlay__questionList{
  list-style:none;
  margin:0;
  padding:0;
}

.bh-overlay__question{
  font-size:18px;
  line-height:1.55;
  color:rgba(255,255,255,0.95);
  margin:0 0 10px;
}

.bh-overlay__footer{display:none;}

.bh-overlay__footerText{
  color:#fff;
  font-size:13px;
  font-weight:400;
}

.bh-featureCards{padding:28px 0 72px;}

.bh-featureGrid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  gap:22px;
}

.bh-featureCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  min-height:520px;
  transition:transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow:0 2px 8px rgba(0,0,0,0.08);
  animation:fadeInUp 0.6s ease forwards;
  opacity:0;
  will-change:transform;
}

.bh-featureCard:hover{
  transform:translateY(-8px);
  box-shadow:0 8px 24px rgba(0,0,0,0.15);
}

.bh-featureCard:nth-child(1){animation-delay:0.1s;}
.bh-featureCard:nth-child(2){animation-delay:0.2s;}
.bh-featureCard:nth-child(3){animation-delay:0.3s;}
.bh-featureCard:nth-child(4){animation-delay:0.4s;}
.bh-featureCard:nth-child(5){animation-delay:0.5s;}

.bh-featureMedia{
  position:relative;
  width:100%;
  aspect-ratio:3/4;
  background:#f2f2f2;
}

.bh-featureMedia img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
}

.bh-featureBody{
  background:var(--bh-red);
  color:#fff;
  padding:22px 18px 18px;
  flex:1;
  display:flex;
  flex-direction:column;
  align-items:center;
  text-align:center;
}

.bh-featureIcon{
  width:82px;
  height:82px;
  border:2px solid rgba(255,255,255,.85);
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:center;
  margin:2px 0 18px;
  align-self:center;
  transition:transform 0.3s ease;
}

.bh-featureCard:hover .bh-featureIcon{transform:scale(1.1);}

.bh-featureIcon svg{width:34px;height:34px;color:#fff;}

.bh-featureTitle{
  margin:0 0 16px;
  font-size:15px;
  font-weight:700;
  line-height:1.3;
  color:#fff;
}

.bh-featureText{
  margin:0 0 18px;
  font-size:15px;
  line-height:1.45;
  max-width:100%;
}

.bh-bottomBar{
  position:relative;
  background:var(--bh-red);
  overflow:hidden;
  padding:36px 10px 102px;
}

.bh-bottomBar__inner{
  display:flex;
  justify-content:center;
  align-items:center;
}

.bh-bottomBar__text{
  margin:0;
  color:#fff;
  font-size:16px;
  font-weight:500;
}

@media print, screen and (min-width:48em){
  .bh-bottomBar{padding:36px 10px;}
}

@media (max-width:1100px){
  .bh-featureGrid{grid-template-columns:repeat(3,minmax(0,1fr));}
}

@media (max-width:980px){
  .bh-hero{padding:80px 0 120px;}
  .bh-heroCards__grid{
    transform:translateY(-90px);
    margin-bottom:-90px;
  }
}

@media (max-width:820px){
  .bh-featureGrid{grid-template-columns:repeat(2,minmax(0,1fr));}
}

@media (max-width:640px){
  .bh-topbar__inner{
    height:80px;
    align-items:flex-end;
    padding-bottom:10px;
  }

  .bh-logo img{max-height:36px;}

  .bh-topbarLinks{gap:10px;}

  .bh-topbarLinks a[href="#wie-is-bo"]{display:none;}

  .bh-topbarLink__icon{width:28px;height:28px;}

  .bh-topbarLink__text{font-size:11px;}

  .bh-topbarNotice{
    font-size:13px;
    padding-bottom:4px;
  }

  .bh-hero{padding:40px 0 200px;}

  .bh-hero__mobileContent{
    display:block;
    padding:0 20px;
    text-align:left;
  }

  .bh-hero__mobileTitle{
    font-size:22px;
    margin-bottom:12px;
  }

  .bh-hero__mobileText{
    font-size:15px;
    line-height:1.5;
    margin:0;
  }


  .bh-hero__mobileText + .bh-hero__mobileText{margin-top:12px;}

  .bh-heroCards__grid{
    transform:translateY(-150px);
    margin-bottom:-150px;
  }

  .bh-embedFrame{
    border-radius:14px;
    max-height:none;
    aspect-ratio:9/16;
  }

  .bh-featureGrid{grid-template-columns:1fr;}
  .bh-featureCard{min-height:0;}
  .bh-featureText{max-width:30ch;}

  .bh-topBanner{display:none;}

  .bh-overlay{display:none;}

  .bh-refreshWrapper{
    bottom:-10px;
    right:8px;
    width:70px;
    height:70px;
  }

  .bh-refreshCircle__icon{width:32px;height:32px;}

  .bh-bottomBar{padding:24px 10px;}
}

/* Mobiel: landscape blokkeren — Bo is alleen in portret te gebruiken */
.bh-rotate{display:none;}

@media (max-width:768px) and (orientation:landscape){
  html,body{overflow:hidden;}
  .bh-rotate{
    display:flex;
    position:fixed;
    inset:0;
    z-index:9999;
    background:var(--bh-red);
    color:#fff;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    gap:18px;
    padding:32px;
  }
  .bh-rotate svg{width:48px;height:48px;}
  .bh-rotate p{margin:0;font-size:18px;font-weight:500;line-height:1.45;max-width:420px;}
}
