/* PP Water Effect */

/* Make body transparent so water canvas shows through */
body.bg-pp-dark {
    background-color: transparent !important;
}

/* Hero must be see-through for water to show */
#hero {
    background-color: transparent !important;
}

/* The canvas */
#pp-fluid-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 2s ease-in;
}

#pp-fluid-canvas.pp-fluid-active {
    opacity: 1;
}

/* Content above canvas */
main,
footer {
    position: relative;
    z-index: 1;
}

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    #pp-fluid-canvas { display: none; }
    body.bg-pp-dark { background-color: #111111 !important; }
    #hero { background-color: #111111 !important; }
}
