#hero-vegas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1; /* Posunout pozadí za obsah */
}
  
 Pokud potřebuješ hero sekci s obsahem před pozadím 
.hero-content {
    position: relative;
    z-index: 1;
    height: 100vh;
    display: flex;
    align-items: center;
    color: white;
}
