* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  height: 100%;
  font-family: Arial, Helvetica, sans-serif;
  overflow: hidden;
}

body {
  position: relative;
  background: #000;
  color: #2f2f2f; /* antraciet */
}

/* VIDEO ACHTERGROND */
.video-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100vh;
  min-height: 100vh;
  min-width: 100%;
  width: auto;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.desktop-video {
  display: block;
}

.mobile-video {
  display: none;
}

/* CONTENT */
.content {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  width: 100%;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0;
  text-align: center;
}

.logo {
  width: 660px;
  max-width: 90vw;
  height: auto;
  margin-bottom: 10px;
}

h1 {
  font-size: 2rem;
  line-height: 1.3;
  font-weight: 500;
  max-width: 900px;
  margin-bottom: 18px;
}

.socials {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  background: rgba(255, 255, 255, 0.6);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 999px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.8);
}

.socials img {
  width: 24px;
  height: 24px;
  display: block;
  filter: brightness(0) saturate(100%) invert(18%) sepia(0%) saturate(0%)
    hue-rotate(180deg) brightness(90%) contrast(90%);
}

.contact-text {
  font-size: 1.1rem;
}

.contact-text a {
  color: #2f2f2f;
  text-decoration: none;
}

.contact-text a:hover {
  text-decoration: underline;
}

/* MOBIEL */
@media (max-width: 768px) {
  .desktop-video {
    display: none;
  }

  .mobile-video {
    display: block;
  }

  .bg-video {
    height: 100vh;
    min-height: 100vh;
    min-width: 100%;
    width: auto;
  }

  .logo {
    width: 420px;
    max-width: 92vw;
    margin-bottom: 8px;
  }

  h1 {
    font-size: 1.35rem;
    max-width: 95%;
    margin-bottom: 16px;
  }

  .socials {
    gap: 14px;
    margin-bottom: 12px;
  }

  .socials a {
    width: 50px;
    height: 50px;
  }

  .socials img {
    width: 22px;
    height: 22px;
  }

  .contact-text {
    font-size: 1rem;
  }
}