.video-overlay {
  display: none; /* Initially hidden */
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8); /* Dark, semi-transparent background */
  z-index: 100; /* Higher than header's 50 */
  justify-content: center;
  align-items: center;
}

.video-overlay.active {
  display: flex; /* Show when active */
}

.video-wrapper {
  position: relative;
  max-width: 70%; /* Adjust as needed */
  max-height: 70%; /* Adjust as needed */
  background-color: white; /* Or transparent if video fills */
  padding: 20px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
  z-index: 10000; /* Higher than overlay */
}

.video-wrapper video {
  width: 100%;
  height: auto;
}

.close-video-button {
  position: absolute;
  top: 15px;
  right: 15px;
  background: none;
  border: none;
  font-size: 24px;
  color: white; /* Or a contrasting color for visibility */
  cursor: pointer;
}



/* .video-container {
    	max-width: 80%; 
    	margin: 0 auto; 

	} */

/*.video-container video {
		
    	width: 100%; /
    	height: auto; 
		mix-blend-mode:overlay;
  		background-color: var(--pale-color-0);
		transition: filter 0.3s ease-in-out;
		border: transparent; 
  		border-radius: 10px; 
}

video:hover {
  filter: brightness(150%);
}*/

/*<!--<div id="videoPlayer" class="video-container">
                    <video playsinline muted="muted" autoplay>
                        <source src="/video" type="video/mp4" />
                    </video>
                </div>-->*/