/*
Theme Name: Precinct Report
Template: blockbase-premium
Version: 1.0.0
Text Domain: precinct-report
*/

/* ===== SITE BACKGROUND (Paper texture) ===== */

body {
  background-color: #F6F4EF;
  background-image: url("/wp-content/uploads/brand/backgrounds/paper-texture.jpg");
  background-repeat: repeat;
  background-size: auto;
  background-position: center;
}

/* Overlay effect: fade texture to ~10% */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("/wp-content/uploads/brand/backgrounds/paper-texture.jpg");
  background-repeat: repeat;
  background-size: auto;
  opacity: 0.100;
  pointer-events: none;
  z-index: 0;
}

/* Make sure site content sits ABOVE the texture */
#page,
.wp-site-blocks,
.site,
main {
  position: relative;
  z-index: 1;
}