:root {
  --site-header-offset: 96px;
}

body {
  padding-top: var(--site-header-offset);
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9;
}

header.fixed-header {
  background: rgba(255, 255, 255, 1);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 4px 0 #dedede;
}

header.fixed-header .menu {
  /* padding-top: 14px;
  padding-bottom: 14px; */
}

.home.video-home {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

.bg-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35); /* dark overlay */
  z-index: 2;
}

.home-content {
  position: relative;
  z-index: 3;
}
