@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Google+Sans:ital,opsz,wght@0,17..18,400..700;1,17..18,400..700&display=swap');

* {
	margin: 0px;
	padding: 0px;
}

html, body {
	width: 100%;
	height: 100%;
	background: rgba(100, 100, 100, 1);
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	font-family: "Google Sans", sans-serif;
	font-size: 12px;
	box-sizing: border-box;
}

.content-sub-title {
	width: 100%;
	font-size: 16px;
	text-transform: uppercase;
	font-family: "Oswald", sans-serif;
	font-weight: 400;
	letter-spacing: 1px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.main-content-container {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: row;
	background: rgba(255, 255, 255, 1);
	border: 0px solid rgba(200, 200, 200, 1);
	box-shadow: 0px 0px 15px rgba(20, 20, 20, 1);
	box-sizing: border-box;
}

.navigation-content-wrapper {
	width: 30%;
	height: 100%;
	padding: 10px;
	background: rgb(255, 255, 255);
	border: 10px solid rgb(255, 255, 255, 1);
	box-shadow: 0px 0px 10px rgba(50, 50, 50, 1);
	box-sizing: border-box;
}

.content-section {
	width: 70%;
	height: 100%;
	background-image: url("../images/home_background_img_009.jpg");
	animation: backgroundChange 60s linear infinite;
	background-size: cover;
	box-sizing: border-box;
}

.content-section-overlay {
	width: 100%;
	height: 100%;
	display: flex;
	flex-direction: column;
	background-color: rgba(30, 30, 30, 0.4);
	background-image: linear-gradient(to top, rgba(30, 30, 30, 0.7), rgba(30, 30, 30, 0.1));
	box-sizing: border-box;
}

.content-container {
	width: 100%;
	height: 86.45%;
	box-sizing: border-box;
}

.content-master {
	width: 100%;
	display: flex;
	box-sizing: border-box;
}

.information-card {
	max-width: 20%;
	background: rgb(255, 255, 255);
	margin-top: 25px;
	margin-left: 25px;
	padding: 7px;
	font-size: 12px;
	text-align: center;
	border: 3px solid rgb(255, 255, 255);
	box-shadow: 0px 0px 10px rgb(30, 30, 30);
	box-sizing: border-box;
}

.information-card-inner {
	width: 100%;
	height: 100%;
	border: 1px solid rgb(30, 30, 30);
	padding: 13px;
	box-sizing: border-box;
}

.title-container {
	width: 100%;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

.hotel-logo-container {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-items: center;
	justify-content: center;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.hotel-logo-container img {
	width: 100px;
}

.hotel-name-container {
	width: 100%;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
}

.hotel-name {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	letter-spacing: 4px;
	font-family: "Oswald", sans-serif;
	font-size: 40px;
	font-weight: 500;
	box-sizing: border-box;
}

.hotel-location {
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Oswald", sans-serif;
	letter-spacing: 13px;
	font-weight: 300;
	font-size: 14px;
	box-sizing: border-box;
}

.welcome-note {
	width: 100%;
	font-size: 12px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	text-align: center;
	margin-top: 20px;
	margin-bottom: 10px;
	box-sizing: border-box;
}

.navigation-section-outer {
	width: 100%;
	margin-top: 10px;
	border-top: 3px solid rgb(30, 30, 30);
	border-bottom: 3px solid rgb(30, 30, 30);
	box-sizing: border-box;
}

.navigation-section {
	width: 100%;
	display: inline-flex;
	flex-wrap: wrap;
	justify-content: center;
	margin-top: 3px;
	margin-bottom: 3px;
	padding-top: 10px;
	padding-bottom: 10px;
	border-top: 1px solid rgb(30, 30, 30);
	border-bottom: 1px solid rgb(30, 30, 30);
	box-sizing: border-box;
}

.navigation-card {
	width: 31%;
	display: inline-flex;
	margin: 4px;
	border: 2px solid rgb(255, 255, 255);
	transition: box-shadow 0.7s ease-in-out;
	box-sizing: border-box;
}

.navigation-card:hover {
	box-shadow: 0px 0px 5px rgb(50, 50, 50);
	cursor: pointer;
}

.navigation-card img {
	width: 100%;
}

.tripadvisor-section {
	width: 100%;
	margin-top: 10px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	box-sizing: border-box;
}

.tripadvisor-section-text {
	width: 100%;
	margin-bottom: 10px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-weight: 400;
	box-sizing: border-box;
}

.tripadvisor-section-img {
	width: 100px;
	display: flex;
	box-sizing: border-box;
}

.tripadvisor-section img {
	width: 100%;
}

.follow-us-section {
	width: 100%;
	display: flex;
	flex-direction: row;
	align-item: center;
	justify-content: center;
	margin-top: 30px;
	margin-bottom: 30px;
	box-sizing: border-box;
}

.social-icon {
	width: 20px;
	margin-left: 5px;
	margin-right: 5px;
	box-sizing: border-box;
}

.social-icon img {
	width: 100%;
	border-radius: 3px;
}

.contact-details-section {
	width: 100%;
	margin-top: 25px;
	display: flex;
	flex-direction: column;
	text-align: center;
	box-sizing: border-box;
}

.contact-mode {
	margin-bottom: 7px;
	box-sizing: border-box;
}

.footer {
	width: 100%;
	background: rgb(30, 30, 30);
	color: rgb(255, 255, 255);
	padding: 7px;
	margin-top: 20px;
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	font-size: 10px;
	text-transform: uppercase;
	letter-spacing: 4px;
	box-sizing: border-box;
}

.content-section-footer {
	width: 100%;
	height: 17.6%;
	display: flex;
	flex-direction: column;
	box-sizing: border-box;
}

@keyframes backgroundChange {
	0% { 
		background-image: url("../images/home_background_img_009.jpg"); 
	}
	20% { 
		background-image: url("../images/home_background_img_008.jpg"); 
	}
	40% { 
		background-image: url("../images/home_background_img_007.jpg"); 
	}
	60% { 
		background-image: url("../images/home_background_img_004.jpg"); 
	}
	80% { 
		background-image: url("../images/home_background_img_005.jpg"); 
	}
	100% { 
		background-image: url("../images/home_background_img_006.jpg"); 
	}
}