/* 1) Reset & base */
*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
html, body {
  height: 100%;
  overflow: hidden;
  font-family: "Neue Haas Grotesk", sans-serif;
  background: #fff;    /* white background even under video */
  color: #000;
}

/* 2) Fullscreen video background */
video#bg-video {
  position: fixed;
  top: 50%;
  left: 50%;
  min-width: 100vw;
  min-height: 100vh;
  transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
  object-fit: cover;
  background: #fff;    /* ensure white behind any transparent pixels */
}

/* 3) Centered content container */
#landing-content {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center; /* vertical centering */
  align-items: center;     /* horizontal centering */
  text-align: center;
  padding: 2rem;
}

/* 4) Headline & bio */
#landing-content h1 {
  font-size: 4rem;
  margin-bottom: 0.5em;
}
#landing-content .bio {
  font-size: 1.5rem;
  line-height: 1.4;
  margin-bottom: 1.5em;
  max-width: 30ch;
}

/* 5) Spacing for link paragraphs */
#landing-content p:not(.bio) {
  margin-bottom: 1rem;
}

/* 6) Link styles */
#landing-content a {
  color: #000;
  text-decoration: none;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  transition: border-color 0.3s;
}
#landing-content a:hover {
  border-color: rgba(0,0,0,0.7);
}

/* 7) Mobile adjustments */
@media (max-width: 600px) {
  #landing-content h1 {
    font-size: 3rem;
  }
  #landing-content .bio {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  #landing-content p:not(.bio) {
    margin-bottom: 0.75rem;
  }
}