/* Global blurred background layer */
html, body {
  min-height: 100vh;
  background: transparent;
}

/* Fixed blurred background image behind all content */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  background-image: url('images/url_share/IMG_6280.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  filter: blur(8px);
  transform: scale(1.05);
  pointer-events: none;
}
