interesting!
maybe you can manage to code this!
you just need to find out the body classes you need:
https://laytheme.com/documentation/custom-css-styling.html#css-based-on-current-page
Screenshot 2023-10-26 at 13.30.41.png
look at this example
this has the class slug-imagehover-test
so i use the css body.slug-imagehover-test
Screenshot 2023-10-26 at 13.31.52.png
try to learn how to use the chrome inspector. i inspect the html and i see the <nav has the class primary
so i do:
body.slug-imagehover-test nav.primary{ display: none!important; }to hide that menu on that page
this way you can hide or show menus depending on which page you are on
good luck