/* ===============================
VIDEO GALLERY SECTION
=============================== */
.dr1056galleryivideo {
	padding: 120px 6%;
	background: radial-gradient(circle at 80% 20%, #1e293b, #020617 70%);
	color: white;
	overflow: hidden;
	font-family: system-ui, -apple-system, sans-serif;
	position: relative;
}

/* subtle glow */
.dr1056galleryivideo::before {
	content: "";
	position: absolute;
	width: 500px;
	height: 500px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12),
		transparent);
	top: -150px;
	right: -150px;
	filter: blur(120px);
	pointer-events: none;
}

/* container */
.dr1056galleryivideo .container {
	max-width: 1400px;
	margin: auto;
	position: relative;
	z-index: 2;
}

/* ===============================
HEADER
=============================== */
.dr1056galleryivideo .section-header {
	text-align: center;
	margin-bottom: 70px;
}

.dr1056galleryivideo .section-header h2 {
	font-size: 46px;
	font-weight: 700;
	letter-spacing: 1px;
	background: linear-gradient(90deg, #ffffff, #d4af37, #facc15);
	-webkit-background-clip: text;
	-webkit-text-fill-color: transparent;
}

/* ===============================
VIDEO GRID
=============================== */
.dr1056galleryivideo .video-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
	justify-items: center;
	gap: 35px;
}

/* ===============================
VIDEO CARD (PREMIUM)
=============================== */
.dr1056galleryivideo .video-card {
	background: rgba(255, 255, 255, 0.04);
	border-radius: 22px;
	overflow: hidden;
	backdrop-filter: blur(14px);
	transition: all 0.5s ease;
	max-width: 520px;
	width: 100%;
	position: relative;
	/* animation */
	opacity: 0;
	transform: translateY(40px) scale(0.95);
}

/* gold border glow */
.dr1056galleryivideo .video-card::after {
	content: "";
	position: absolute;
	inset: 0;
	border-radius: 22px;
	padding: 1px;
	background: linear-gradient(120deg, transparent, rgba(212, 175, 55, 0.6),
		transparent);
	-webkit-mask: linear-gradient(#000 0 0) content-box,
		linear-gradient(#000 0 0);
	-webkit-mask-composite: xor;
	opacity: 0;
	transition: 0.4s;
	pointer-events: none;
}

/* visible animation */
.dr1056galleryivideo .video-card.show {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* hover */
.dr1056galleryivideo .video-card:hover {
	transform: translateY(-14px) scale(1.02);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.dr1056galleryivideo .video-card:hover::after {
	opacity: 1;
}

/* ===============================
VIDEO FRAME
=============================== */
.dr1056galleryivideo .video-frame {
	position: relative;
	padding-bottom: 56.25%;
	height: 0;
	overflow: hidden;
	background: #000;
}

.dr1056galleryivideo .video-frame video {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	user-select: none;
	transition: transform 0.9s ease, filter 0.5s ease;
	filter: brightness(0.9) contrast(1.05);
}

/* cinematic zoom */
.dr1056galleryivideo .video-card:hover video {
	transform: scale(1.08);
	filter: brightness(1) contrast(1.1);
}

/* ===============================
PLAY BUTTON (LUXURY)
=============================== */
.dr1056galleryivideo .video-play-btn {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	width: 74px;
	height: 74px;
	border-radius: 50%;
	border: none;
	font-size: 28px;
	color: white;
	background: rgba(0, 0, 0, 0.55);
	display: flex;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	backdrop-filter: blur(8px);
	transition: all 0.35s ease;
	z-index: 5;
}

/* glowing ring */
.dr1056galleryivideo .video-play-btn::before {
	content: "";
	position: absolute;
	inset: -6px;
	border-radius: 50%;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.4), transparent);
	opacity: 0;
	transition: 0.4s;
}

/* hover */
.dr1056galleryivideo .video-play-btn:hover {
	transform: translate(-50%, -50%) scale(1.12);
	background: linear-gradient(135deg, #d4af37, #facc15);
	color: black;
	box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.dr1056galleryivideo .video-play-btn:hover::before {
	opacity: 1;
}

/* ===============================
CTA BUTTON
=============================== */
.dr1056galleryivideo .cta {
	text-align: center;
	margin-top: 60px;
}

.dr1056galleryivideo .cta a {
	display: inline-block;
	padding: 14px 36px;
	border-radius: 50px;
	background: linear-gradient(90deg, #d4af37, #facc15);
	color: #000;
	font-weight: 600;
	text-decoration: none;
	transition: all 0.35s ease;
	position: relative;
	overflow: hidden;
}

/* shine effect */
.dr1056galleryivideo .cta a::before {
	content: "";
	position: absolute;
	inset: 0;
	background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.4),
		transparent);
	transform: translateX(-100%);
	transition: 0.6s;
}

.dr1056galleryivideo .cta a:hover::before {
	transform: translateX(100%);
}

.dr1056galleryivideo .cta a:hover {
	transform: scale(1.08);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* ===============================
TABLET
=============================== */
@media ( max-width : 900px) {
	.dr1056galleryivideo .section-header h2 {
		font-size: 34px;
	}
}

/* ===============================
MOBILE
=============================== */
@media ( max-width : 768px) {
	.dr1056galleryivideo {
		padding: 80px 20px;
	}
	.dr1056galleryivideo .video-grid {
		grid-template-columns: 1fr;
	}
	.dr1056galleryivideo .video-card {
		max-width: 100%;
	}
	.dr1056galleryivideo .section-header h2 {
		font-size: 28px;
	}
}