/**
 * Popup vidéo (copie minimale de art-ge/assets/css/video-popup.css)
 * Utilisé par `moissons-card` (type "Card image de fond").
 */

.video-popup {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 9999;
	opacity: 0;
	visibility: hidden;
	transition: opacity 0.3s ease, visibility 0.3s ease;
}

.video-popup.active {
	opacity: 1;
	visibility: visible;
}

.video-popup-overlay {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.9);
	cursor: pointer;
}

.video-popup-container {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 90%;
	max-width: 1200px;
	max-height: 90vh;
}

.video-popup-close {
	position: absolute;
	top: 50px;
	right: 50px;
	background: none;
	border: 0;
	color: #fff;
	cursor: pointer;
	padding: 10px;
	z-index: 10;
	transition: opacity 0.3s ease;
}

.video-popup-close:hover {
	opacity: 0.7;
}

.video-popup-content {
	width: 100%;
	height: 100%;
}

.video-popup-iframe-container {
	width: 100%;
	height: 100%;
	position: relative;
	text-align: center;
}

#video-popup-iframe {
	width: 100%;
	height: 100%;
	border: none;
	border-radius: 8px;
	aspect-ratio: 16/9;
}

@media (max-width: 768px) {
	.video-popup-container {
		width: 95%;
		max-height: 96vh;
	}
	.video-popup-close {
		top: 10px;
		right: 10px;
	}
}

