/* Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  overflow: hidden; /* 🚫 forhindrer scrolling */
}

body {
  color: #fff;
  font-family: 'Chakra Petch', sans-serif;
  height: 100dvh; /* korrekt højde på mobile med address bar */
  display: flex;
  flex-direction: column;
}

/* Video baggrund */
.video-background {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  overflow: hidden;
  z-index: -1;
}

.video-background video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  display: block;
}

/* Rødt overlay */
.video-overlay {
  position: fixed;
  inset: 0;
  z-index: -1;
}

video::-webkit-media-controls {
  display: none !important;
  -webkit-appearance: none;
}

/* Grain overlay */
.video-grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
}

/* Section med centreret indhold */
.section {
  position: relative;
  height: 100dvh; /* altid fuld viewport */
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.section .logo {
  width: 250px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  min-height: 120px;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem;
  font-size: 0.8rem;
}


