/*
Theme Name: Parr Child
Template: parr
Version: 1.0
*/

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.4s ease;
  z-index: 998;
}

body.parr-menu-visible::before {
  opacity: 1;
}

body.parr-menu-hiding::before {
  opacity: 0;
}