.main-nav {
  position: fixed;
  top: 0;
  left: 0;
  height: var(--nav-height);
  width: 100%;
  padding: 0 4rem;

  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;

  background: rgba(140, 140, 140, 0.45);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,0.1);

  z-index: 20;
}


.nav-left,
.nav-right {
  display: flex;
  align-items: center;
}

.nav-left {
  justify-content: flex-start;
}

.nav-right {
  justify-content: flex-end;
  gap: 4rem; /* final spacing */
}

.nav-link {
  color: white;
  text-decoration: none;
  font-size: 0.75rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.75;
}

.nav-link:hover {
  opacity: 1;
}

.nav-logo {
  justify-self: center;
  font-family: 'Playfair Display', serif;
  color: white;
  text-decoration: none;
  font-size: 1.5rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 0 2.5rem; /* optical centering */
  white-space: nowrap;
}

:root {
  --nav-height: 64px;
}

.hero {
  margin-top: var(--nav-height);
  height: calc(100vh - var(--nav-height));
  overflow: hidden;
}


.reel {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.overlay {
  display: none;
}







