html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  overflow: hidden;
}

.showreel {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.fullscreen-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* fills the screen without distortion */
}

header {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
  text-align: center;
  padding: 0 1rem; /* ensures text isn’t cut off on small screens */
  font-family: 'Helvetica Neue', Arial, sans-serif;
  letter-spacing: 0.2em;
}

header h1 {
  font-size: clamp(2rem, 5vw, 3rem); /* scales with screen size */
  font-weight: bold;
  margin: 0 0 1rem 0;
  text-transform: uppercase;
  animation: zoomOut 10s ease-out forwards;
}

@keyframes zoomOut {
  from {
    font-size: 2.5rem;
  }
  to {
    font-size: 2.1rem;
  }
}

header p {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
  margin: 0;
  opacity: 0.85;
}

body {
  font-family: 'Helvetica Neue', Arial, sans-serif;
  font-size: 1.1rem;
  line-height: 1.5;
  color: white;
}