html {
	font-size: 14px;
}

nav {
	background-color: #455C6C !important;
}

@media (min-width: 768px) {
	html {
		font-size: 16px;
	}
}

html {
	position: relative;
	min-height: 100%;
}

/* Custom CSS */
body {
	font-family: Arial, sans-serif;
	scroll-behavior: smooth;
}



.hero {
	background-image: url('/images/hero/hero.jpg');
	background-size: cover;
	background-position: center;
	color: white;
	text-align: center;
	padding: 100px 0;
}

	.hero h1 {
		font-size: 3.5rem;
	}

	.hero p {
		font-size: 1.25rem;
	}

.features, .facility, .gallery, .about, .contact {
	padding: 50px 0;
}

.gallery-carousel {
	background-color: #455C6C;
}


.footer {
	background-color: #455C6C;
	color: white;
	padding: 20px 0;
}

	.footer a {
		color: #0d6efd;
		text-decoration: none;
	}

		.footer a:hover {
			text-decoration: underline;
		}

.gallery img {
	width: 100%;
	height: auto;
	border-radius: 5px;
	margin-bottom: 15px;
}

.card-flip {
	perspective: 1000px;
	margin-bottom: 20px;
}

.card {
	position: relative;
	width: 100%;
	height: 300px;
	transform-style: preserve-3d;
	transition: transform 0.6s;
}

.card-flip:hover .card {
	transform: rotateY(180deg);
}

.card-front, .card-back {
	position: absolute;
	width: 100%;
	height: 100%;
	backface-visibility: hidden;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 10px;
	overflow: hidden;
}

.card-front {
	background-color: #455C6C;
	border: 2px solid #455C6C;
	color: white;
	flex-direction: column;
}

	.card-front img.card-img {
		width: 100%;
		height: 100%;
		object-fit: cover;
		opacity: 0.85;
	}

	.card-front .card-title {
		position: absolute;
		bottom: 15px;
		left: 0;
		right: 0;
		text-align: center;
		font-size: 1.25rem;
		font-weight: bold;
		background-color: rgba(0, 0, 0, 0.6);
		color: white;
		padding: 5px;
		margin: 0;
	}

.card-back {
	background-color: #455C6C;
	border: 2px solid #455C6C;
	color: white;
	transform: rotateY(180deg);
	padding: 15px;
	text-align: center;
}

.gallery-photo {
	height: 85vh; 
	max-height:700px;
	position: relative;
	background-color: #455C6C;
	overflow: hidden; 
}

.gallery-photo img {
	padding: 10px;
	position: absolute; 
	top: 50%; 
	left: 50%; 
	transform: translate(-50%, -50%);
	max-width: 100%; 
	max-height: 100%;
	object-fit: contain;
}
.small-icon {
	width: 15px;
	height: 15px;
	margin-bottom:3px;
}
.medium-icon {
	width: 30px;
	height: 30px;
}