/* ===============================
GALLERY SECTION
=============================== */
.dr1056galleryimage {
	padding: 120px 6%;
	background: radial-gradient(circle at 20% 10%, #1e293b, #020617 70%);
	color: white;
	overflow: hidden;
	font-family: system-ui, -apple-system, sans-serif;
	position: relative;
}

/* subtle luxury glow */
.dr1056galleryimage::before {
	content: "";
	position: absolute;
	width: 600px;
	height: 600px;
	background: radial-gradient(circle, rgba(212, 175, 55, 0.12),
		transparent);
	top: -200px;
	left: -200px;
	filter: blur(120px);
	pointer-events: none;
}

/* container */
.dr1056galleryimage .container {
	max-width: 1400px;
	margin: auto;
	position: relative;
	z-index: 2;
}

/* ===============================
HEADER
=============================== */
.dr1056galleryimage .section-header {
	text-align: center;
	margin-bottom: 70px;
}

.dr1056galleryimage .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;
}

.dr1056galleryimage .section-header p {
	max-width: 750px;
	margin: auto;
	margin-top: 15px;
	font-size: 17px;
	opacity: 0.75;
	line-height: 1.7;
}

/* ===============================
GALLERY GRID
=============================== */
.dr1056galleryimage .gallery-grid {
	display: grid;
	grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
	gap: 35px;
	align-items: start;
}

/* ===============================
CARD (ULTRA PREMIUM)
=============================== */
.dr1056galleryimage .card {
	border-radius: 22px;
	overflow: hidden;
	background: rgba(255, 255, 255, 0.04);
	backdrop-filter: blur(14px);
	transition: all 0.5s ease;
	opacity: 0;
	transform: translateY(40px) scale(0.95);
	display: flex;
	flex-direction: column;
	position: relative;
}

/* gold border glow */
.dr1056galleryimage .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 */
.dr1056galleryimage .card.show {
	opacity: 1;
	transform: translateY(0) scale(1);
}

/* hover effect */
.dr1056galleryimage .card:hover {
	transform: translateY(-14px) scale(1.02);
	box-shadow: 0 40px 100px rgba(0, 0, 0, 0.8);
}

.dr1056galleryimage .card:hover::after {
	opacity: 1;
}

/* ===============================
IMAGE (CINEMATIC)
=============================== */
.dr1056galleryimage .image {
	width: 100%;
	position: relative;
	background: #000;
	overflow: hidden;
}

.dr1056galleryimage .image img {
	width: 100%;
	height: auto;
	max-height: 400px;
	object-fit: cover; /* premium look */
	transition: transform 0.9s ease, filter 0.5s ease;
	filter: brightness(0.92) contrast(1.05);
}

/* image zoom on hover */
.dr1056galleryimage .card:hover img {
	transform: scale(1.08);
	filter: brightness(1) contrast(1.1);
}

/* ===============================
CONTENT
=============================== */
.dr1056galleryimage .content {
	padding: 24px 26px;
	flex: 1;
}

.dr1056galleryimage .content h3 {
	font-size: 20px;
	margin-bottom: 8px;
	font-weight: 600;
}

.dr1056galleryimage .content p {
	font-size: 14px;
	opacity: 0.7;
	line-height: 1.6;
}

/* ===============================
CTA BUTTON
=============================== */
.dr1056galleryimage .cta {
	text-align: center;
	margin-top: 60px;
}

.dr1056galleryimage .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 */
.dr1056galleryimage .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;
}

.dr1056galleryimage .cta a:hover::before {
	transform: translateX(100%);
}

.dr1056galleryimage .cta a:hover {
	transform: scale(1.08);
	box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* ===============================
TABLET
=============================== */
@media ( max-width : 900px) {
	.dr1056galleryimage .section-header h2 {
		font-size: 34px;
	}
	.dr1056galleryimage .gallery-grid {
		gap: 25px;
	}
	.dr1056galleryimage .image img {
		max-height: 300px;
	}
}

/* ===============================
MOBILE
=============================== */
@media ( max-width : 768px) {
	.dr1056galleryimage {
		padding: 80px 20px;
	}
	.dr1056galleryimage .gallery-grid {
		grid-template-columns: 1fr;
		gap: 20px;
	}
	.dr1056galleryimage .image img {
		max-height: 250px;
	}
	.dr1056galleryimage .section-header h2 {
		font-size: 28px;
	}
	.dr1056galleryimage .section-header p {
		font-size: 15px;
	}
}