html {
	font-size: 14px;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

.btn:focus, .btn:active:focus, .btn-link.nav-link:focus, .form-control:focus, .form-check-input:focus {
	box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}

html {
	position: relative;
	min-height: 100%;
}

body {
	margin-bottom: 60px;
}

.footer {
	background-color: #f7f7f7;
	padding: 10px 0;
	margin-top: 60px;
	font-size: 0.95rem;
	color: #444;
	border-top: 1px solid #ddd;
}

.footer-content {
	text-align: center;
}

.footer-copy {
	margin-top: 4px;
	font-size: 0.75rem;
	line-height: 1.2;
}

.footer-links {
	margin-bottom: 0; /* Remove space below icons */
}

	.footer-links a {
		margin: 0 10px;
		color: #444;
		text-decoration: none;
		font-weight: 500;
	}

		.footer-links a:hover {
			color: #000;
		}

	.footer-links i {
		font-size: 1.2rem;
		vertical-align: middle;
	}

img.rounded.shadow-sm {
	max-width: 100%;
	height: auto;
}

.masonry-gallery {
	column-count: 3;
	column-gap: 10px;
	padding: 20px;
}

.masonry-item {
	width: 100%;
	margin-bottom: 10px;
	break-inside: avoid;
	cursor: pointer;
	border-radius: 6px;
	box-shadow: 0 2px 5px rgba(0, 0, 0, 0.15);
	user-select: none;
}

/* Lightbox */
#lightbox {
	display: none;
	position: fixed;
	inset: 0;
	background-color: rgba(0, 0, 0, 0.9);
	justify-content: center;
	align-items: center;
	z-index: 9999;
}

	#lightbox img {
		max-width: 90vw;
		max-height: 90vh;
		border-radius: 8px;
		box-shadow: 0 0 30px rgba(0, 0, 0, 0.6);
	}

body.lightbox-open {
	overflow: hidden;
}

.lightbox-nav {
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	color: white;
	background: none;
	border: none;
	font-size: 3rem;
	cursor: pointer;
	padding: 0 20px;
	z-index: 10000;
	user-select: none;
}

#lightbox-prev {
	left: 10px;
}

#lightbox-next {
	right: 10px;
}

/*img {
	-webkit-user-drag: none;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}*/

