/* ===========================
   Gallery Page Styles
   =========================== */

/* Hero Section (no image) */
.hero-small {
	padding: 48px 0;
	background: linear-gradient(
		180deg,
		rgba(16, 16, 16, 0.8),
		rgba(12, 12, 12, 0.95)
	);
	text-align: center;
}

.hero-small .hero-inner {
	max-width: 900px;
	margin: 0 auto;
}

.hero-small .hero-title {
	font-size: clamp(2rem, 4vw, 3rem);
	margin-bottom: 12px;
	color: #fff;
}

.hero-small .hero-sub {
	font-size: 1.1rem;
	color: var(--text-muted);
}

/* Section spacing */
.section.container {
	padding: 48px 0;
}

.section h2 {
	font-size: clamp(1.75rem, 2.5vw, 2.25rem);
	margin-bottom: 24px;
	color: #fff;
}

/* Masonry / waterfall gallery */
.masonry-gallery {
	column-count: 4;
	column-gap: 16px;
}

.masonry-gallery .gallery-img {
	width: 100%;
	display: block;
	margin-bottom: 16px;
	border-radius: 12px;
	box-shadow: 0 6px 18px rgba(0, 0, 0, 0.5);
	cursor: pointer;
	transition: transform 0.3s ease;
}

.masonry-gallery .gallery-img:hover {
	transform: scale(1.03);
}

/* Lightbox modal */
.lightbox {
	display: none;
	position: fixed;
	z-index: 9999;
	padding-top: 60px;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	overflow: auto;
	background-color: rgba(0, 0, 0, 0.95);
	text-align: center;
}

.lightbox-img {
	max-width: 90%;
	max-height: 80vh;
	margin: auto;
	display: block;
	border-radius: 12px;
}

.lightbox-caption {
	margin-top: 12px;
	color: #ddd;
	font-size: 1rem;
}

.lightbox .close {
	position: absolute;
	top: 24px;
	right: 32px;
	color: #fff;
	font-size: 32px;
	font-weight: bold;
	cursor: pointer;
}

/* CTA Section */
.contact-band {
	background: linear-gradient(
		135deg,
		rgba(200, 167, 109, 0.12),
		rgba(12, 12, 12, 0.85)
	);
	padding: 64px 0;
	margin-top: 32px;
	border-radius: 12px;
	text-align: center;
}

.contact-band h2 {
	font-size: clamp(1.75rem, 2.8vw, 2.25rem);
	margin-bottom: 12px;
	color: #fff;
}

.contact-band p {
	font-size: 1.05rem;
	color: var(--text-muted);
	margin-bottom: 18px;
}

.contact-band a.btn-primary {
	padding: 14px 28px;
	font-size: 1rem;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
	.masonry-gallery {
		column-count: 3;
	}
}

@media (max-width: 900px) {
	.masonry-gallery {
		column-count: 2;
	}
}

@media (max-width: 600px) {
	.masonry-gallery {
		column-count: 1;
	}
}
