
.flyer-wrapper {
  width: calc(100% + 40px);   /* Extend beyond padding */
  margin: 15px -20px;        /* Pull image outward */
}


 
 
 

/* Image remains responsive */
.flyer-wrapper img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
}
 
 
/* Modal background */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.6);
  opacity: 0;
  transition: opacity 0.4s ease;
}

/* Show modal */
.modal.show {
  display: block;
  opacity: 1;
}

/* Modal box */
.modal-content {
  background-color: #fff;
  margin: 1% auto;
  padding: 30px;
  width: 90%;
  max-width: 400px;
  border-radius: 10px;
  text-align: center;
  position: relative;
  

/* Scroll settings 
   max-height: 95vh;           
  overflow-y: auto;            
*/

  /* Animation start state */
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.4s ease, opacity 0.4s ease;
}

/* Animate modal box */
.modal.show .modal-content {
  transform: translateY(0);
  opacity: 1;
}

/* Close button */
.close-btn {
  position: absolute;
  top: 10px;
  right: 15px;
  font-size: 24px;
  cursor: pointer;
}

/* CTA button */
.cta-btn {
  display: inline-block;
  margin-top: 10px;
  padding: 10px 18px;
  background: #007bff;
  color: #fff;
  text-decoration: none;
  border-radius: 5px;
}

     
 
 /* Image zoom overlay */
.image-zoom {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Show zoom */
.image-zoom.show {
  display: flex;
}

/* Zoomed image */
.image-zoom img {
  max-width: 95%;
  max-height: 95%;
  object-fit: contain;
}

/* Close button */
.zoom-close {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

.flyer-wrapper img {
  cursor: zoom-in;
}

/* Button (optional styling) */
.video-btn {
  padding: 10px 16px;
  background: #e53935;
  color: #fff;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}

/* Modal background */
.video-modal {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 10000;
}

/* Show modal */
.video-modal.show {
  display: flex;
}

/* Modal box */
.video-content {
  background: #000;
  width: 90%;
  max-width: 800px;
  position: relative;
  border-radius: 8px;
}

/* Close button */
.video-close {
  position: absolute;
  top: -35px;
  right: 0;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
}

/* Responsive video wrapper */
.video-wrapper {
  position: relative;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.video-wrapper iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
