.cal-sans-regular {
	font-family: "Cal Sans", sans-serif;
	font-weight: 400;
	font-style: normal;
}

.poppins-regular {
	font-family: "Poppins", sans-serif;
	font-weight: 400;
	font-style: normal;
}


body {
	font-family: "Poppins", sans-serif;
	background: #f4f4f4;
	margin: 0;
	top: 0;
	left: 0;
	padding: 0;
	min-height: 100vh;
	min-height: 100dvh;
	display: flex;
	flex-direction: column;
}


header {
	position: fixed;
	display: flex;
	flex-direction: row;
	justify-content: space-between;
	align-items: center;
	color: white;
	z-index: 1;
	padding: 1rem;
	text-align: center;
}

#main {
	width: 100%;
	overflow: hidden;
	min-height: 75vh;
	display: flex;
	align-items: center;
	flex-direction: column;
	max-width: 100%;
	background-image: url('./img/hk.jpg');
	background-repeat: no-repeat;
	background-size: cover;
	background-attachment: fixed;

}

#main>* {
	position: relative;
	z-index: 1;
}

footer {
	background-color: #222;
	color: #ddd;
	margin-top: auto;
	padding: 1rem 1rem;
}

.footer-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	max-width: 1000px;
	margin: auto;
	gap: 2rem;
	align-items: center;
}

#welcome {
	text-align: center;
	margin-top: 23vh;
	margin-bottom: 23vh;
}

#welcome h1 {
	color: white;
}

h2 {
	color: #333;
	margin-bottom: 1rem;
}

ul {
	list-style: none;
	padding: 0;
}

li {
	padding: 1rem;
	border-right: 1px solid #ddd;
}

li:last-child {
	border-right: none;
}

.car-name {
	font-weight: bold;
	font-size: 1.1rem;
}

.car-details {
	color: #666;
}

.car-item {
	border-radius: 12px;
	max-width: 227px;
	overflow: hidden;
	border: solid white 1px;
}


.car-item>img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}

#item-container {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-around;
	margin: 0 auto;
	gap: 20px;
	max-width: 775px;
	background-color: #ffffff0f;
	padding: 2rem;
	border-radius: 12px;
	backdrop-filter: blur(3px);
	box-shadow: 10px 9px 5px #0a0a0a1f;
	margin-top: 2rem;
	margin-bottom: 23rem;
	border: solid white 1px;
}


header h1,
h2 {
	color: white;
	margin: 0;
}

.logo-header {
	height: 80px;
	width: 80px;
}

.logo-header>img {
	width: 100%;
	height: 100%;
}

.footer-left h3 {
	margin-bottom: 0.5rem;
}

.footer-right p {
	margin-top: 0;
}


.footer-links {
	list-style: none;
	padding: 0;
	text-align: center;
	margin: 0;
}

.footer-links li {
	float: left;
}

.footer-links a {
	color: #ddd;
	text-decoration: none;
}

.footer-links a:hover {
	text-decoration: underline;
}

.social-icons a img {
	height: 24px;
	margin-right: 10px;
}

#mobile-background {
	display: none;
}


@media (max-width: 768px) {
	#mobile-background {
		display: block;
		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-image: url('./img/hk.jpg');
		background-position: right 13% top 23%;
		background-position-x: 84%;
		background-position-y: 23%;
		background-repeat: no-repeat;
		background-size: cover
	}

	#welcome {
		margin-top: 26vh;
		margin-bottom: 48vh;
	}

	#item-container {
		padding: 5rem;
	}

	#main {
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background-position: right 13% top 23%;
		background-position-x: 84%;
		background-position-y: 23%;
		background-repeat: no-repeat;
		background-size: cover
	}

}
