/* Add here all your CSS customizations */
.feature-box .feature-box-info {
	padding-left: 30px !important;
}

/* Fix lightbox overlay to cover entire image */
.img-thumbnail.img-thumbnail-hover-icon {
	display: block !important;
	overflow: hidden;
}

.img-thumbnail.img-thumbnail-hover-icon img {
	display: block;
	width: 100%;
	height: auto;
	margin: 0;
}

.img-thumbnail.img-thumbnail-hover-icon:before {
	width: 100% !important;
	height: 100% !important;
}

/* Justify all text paragraphs except centered ones */
section p:not(.text-center):not(.text-left):not(.text-right),
.section p:not(.text-center):not(.text-left):not(.text-right),
.feature-box p:not(.text-center):not(.text-left):not(.text-right),
.card-body p:not(.text-center):not(.text-left):not(.text-right),
.lead:not(.text-center):not(.text-left):not(.text-right) {
	text-align: justify !important;
}

/* Language Switcher Styles */
.header-nav-features-language {
	position: relative;
}

.header-nav-features-language > a {
	display: flex;
	align-items: center;
	padding: 8px 12px;
	color: #777;
	text-decoration: none;
	transition: color 0.3s ease;
}

.header-nav-features-language > a:hover {
	color: #0088cc;
}

.header-nav-features-language .dropdown-menu {
	min-width: 150px;
	padding: 0;
	margin-top: 5px;
	border: 1px solid #e7e7e7;
	box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.header-nav-features-language .dropdown-menu li {
	margin: 0;
}

.header-nav-features-language .dropdown-menu a {
	display: flex;
	align-items: center;
	padding: 10px 15px;
	color: #777;
	text-decoration: none;
	transition: background-color 0.3s ease;
}

.header-nav-features-language .dropdown-menu a:hover {
	background-color: #f5f5f5;
	color: #0088cc;
}

.language-switcher-item {
	cursor: pointer;
}