/* FULLSCREEN OVERLAY */
.flyer-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;

  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px); /* 🔥 modern glass effect */

  display: flex;
  justify-content: center;
  align-items: center;

  z-index: 9999;
  cursor: pointer;

  padding: 20px; /* better spacing on mobile */
}

/* FLYER BOX */
.flyer-content {
  max-width: 500px; /* 🔥 keeps it clean, not too wide */
  width: 100%;
  max-height: 90vh;

  animation: fadeIn 0.4s ease;
}

/* IMAGE */
.flyer-image {
  width: 100%;
  height: auto;

  border-radius: 16px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.6); /* 🔥 depth */
}

/* ANIMATION */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.85) translateY(20px);
  }
  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}