/* Fullscreen background container */
#sfb-background {
    position: fixed;
    inset: 0; /* shorthand for top:0; right:0; bottom:0; left:0 */
    z-index: -3; /* keeps it behind everything */
    pointer-events: none; /* ensures it won’t block clicks */

    /* Customize your background below */
    background-image: url('https://parkcopilot.com/wp-content/uploads/2025/09/tvstatic-20lightnesscompressed.gif');
    background-size: cover;        /* cover, contain, or auto */
    background-position: center;   /* adjust as needed */
    background-repeat: no-repeat;  /* repeat, repeat-x, repeat-y */
    background-attachment: fixed;  /* fixed = parallax effect */
    /*filter: brightness(.2);*/
}

/* iOS Safari fix: disable background-attachment: fixed */
@supports (-webkit-touch-callout: none) {
  #sfb-background {
    background-attachment: scroll; /* or remove the property entirely */
    background-position: center center;
  }
}
