/* STATIC SNAP BACKGROUND VERSION */

.snap-static-wrapper {
  display: none;
  height: 100vh;
  background: url('/assets/camera-ui.jpg') center center / cover no-repeat;
  position: relative;
  z-index: 0;
}

.snap-static-content {
  position: relative;
  z-index: 1;
  height: 100%;
  width: 100%;
  backdrop-filter: blur(4px) brightness(0.6);
  -webkit-backdrop-filter: blur(4px) brightness(0.6);
}

.snap-btn {
  background-color: rgba(0, 0, 0, 0.4);
  border: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.3);
}

.snap-label {
  font-size: 1.1rem;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,0.7);
}

/* Show on mobile only */

@media (max-width: 767px) {
  .snap-static-wrapper {
    display: flex !important;
  }
}

