/* ===== Basis ===== */
body, html {
  margin: 0;
  padding: 0;
  height: 100%;
  font-family: system-ui, sans-serif;
  background: #000;
  color: #fff;
}

/* ===== Video ===== */
.video-bg {
  position: fixed;
  inset: 0;
  overflow: hidden;
  z-index: 0;
}
.video-bg video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.scrim {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,.4);
}

/* ===== Pagina-content ===== */
.hero {
  position: relative;
  z-index: 1;
  height: 100vh;
  display: flex;
  align-items: flex-start;  /* tekst bovenin */
  /* justify-content: flex-start;  links uitlijnen */
  justify-content: flex-end; /* links uitlijnen */
  text-align: left;
  padding: 40px; /* afstand van de randen */
}

.hero .wrap {
  background: rgba(0, 0, 0, 0.4);
  padding: 20px 30px;
  border-radius: 12px;
  max-width: 250px;
  color: #fff;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1000px) {
    .hero .wrap {
    max-width: 580px;
	}
}


/* ===== Overlay bij portrait ===== */
#rotate-overlay {
  position: fixed;
  inset: 0;
  display: none; /* standaard verborgen */
  background: #000;
  color: white;
  z-index: 999;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
}

#rotate-overlay.active {
  display: flex; /* wordt actief als portrait gedetecteerd */
}

.rotate-icon {
  width: 78px;
  height: 50px;
  opacity: 0.8;
  margin-bottom: 1rem;
  animation: rotateHint 2.5s infinite ease-in-out;
}

/* simpele “draai”-animatie voor het icoon */
@keyframes rotateHint {
  0%, 100% { transform: rotate(0deg); }
  50% { transform: rotate(90deg); }
}


/* ✅ Logo styling */
.hero .vuurke-logo {
  width: min(200px, 50%);
  height: auto;
  margin-bottom: 20px;
  display: block;
}

/* Tekst netjes onder het logo */
.hero h1 {
  font-size: clamp(1.6rem, 4vw, 2.5rem);
  margin: 15px 0 0.5rem;
}

.hero p {
  font-size: clamp(1rem, 2.3vw, 1.2rem);
  line-height: 1.5;
}


/* Facebook */
.fb-warning {
  background: #111;
  color: #fff;
  padding: 14px 18px;
  font-size: 15px;
  line-height: 1.4;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 2px solid #444;
  position: sticky;
  top: 0;
  z-index: 9999;
}

.fb-warning strong {
  color: #ffd700;
}

.fb-warning #fb-close {
  margin-left: 12px;
  cursor: pointer;
  font-weight: bold;
  opacity: 0.7;
}

.fb-warning.hidden {
  display: none;
}

p a {
	color: #ffffff;
    text-decoration: underline;
}

p a:hover {
	color: #ffffff;
    text-decoration: none
}