:root {
	--header-height: 3.5rem;

	/*========== Colors ==========*/
	/*Color mode HSL(hue, saturation, lightness)*/
	--first-color: #d2c1af;
	--first-color-alt: #372d24;
	--second-color: #292136;
	--second-color-alt: #211b15;
	--text-color: #cfcfcf;
	--white-color: #fff;
	--body-color: #0b0c0c;

	/*========== Font and typography ==========*/
	/*.5rem = 8px | 1rem = 16px ...*/
	--body-font: "Roboto", sans-serif;
	--design-font: "Italiana", sans-serif;
	--h1-font-size: 2.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1rem;
	--normal-font-size: 1.5rem;
	--small-font-size: 1.2rem;
	--smaller-font-size: 0.75rem;

	/*========== Font weight ==========*/
	--font-medium: 500;
	--font-semi-bold: 600;

	/*========== z index ==========*/
	--z-tooltip: 10;
	--z-fixed: 1000;
}

section.home {
	background: linear-gradient(rgba(0, 0, 0, 0.77), rgba(0, 0, 0, 0.77)),
		url(/assets/images/lotus-design-n-print-xroM8RaMnSI-unsplash.jpg);
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
	background-attachment: fixed;
}

.more-section-container {
	align-items: center;
}

.more-section-container h2 {
	color: var(--text-color);
	font-family: var(--design-font);
	text-align: center;
	font-size: 3rem;
}

.more-section-container span {
	color: var(--first-color);
}

.more-services {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 8rem;
	padding: 10rem 0;
}

.more-services-card {
	background: #372d248d;
	align-items: center;
	justify-content: space-between;
	color: var(--text-color);
	position: relative;
	padding: 3rem;
	text-align: center;
	transition: 0.6s ease;
}

.services-card-icon {
	width: 60px;
	background: var(--first-color-alt);
	padding: 1rem;
	border-radius: 50%;
	position: absolute;
	top: -3rem;
	left: 50%;
	transform: translateX(-50%);
}

.more-services-card h3 {
	margin-top: 3rem;
	text-align: center;
	font-family: var(--design-font);
	color: var(--white-color);
	transition: 0.3s ease;
}

.services-card-desc {
	color: var(--text-color);
	margin: 2rem 0;
	transition: 0.3s ease;
}

.more-services-card:hover {
	transform: scale(1.07);
	background: var(--first-color);
	color: var(--body-color);
}

.more-services-card:hover h3,
.more-services-card:hover .services-card-desc{
	color: var(--first-color-alt);
}

.parallax {
	/* The image used */
	background-image: linear-gradient(
			rgba(55, 45, 36, 0.5),
			rgba(55, 45, 36, 0.5)
		),
		url("/assets/images/66_modern-buildings-in-gae-aulenti-square-milan.jpg");
	/* Full height */
	height: 100vh;

	/* Create the parallax scrolling effect */
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;

	position: relative;
	overflow: hidden;
}

.parallax .content {
	position: relative;
	z-index: 2;
	text-align: center;
	color: white; /* Text color */
	display: flex;
	justify-content: center;
	align-items: center;
	height: 100%;
	flex-direction: column;
}

.parallax .overlay {
	position: absolute;
	bottom: -100%;
	left: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
		url("/assets/images/gallery-3.jpg");
	background-attachment: fixed;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	transition: bottom 0.5s ease;
}

.parallax:hover .overlay {
	bottom: 0;
}

.parallax h1 {
	font-size: 4rem;
	color: var(--white-color);
	text-align: center;
	font-family: var(--design-font);
	margin-bottom: 2rem;
}

.testimonial-header {
	text-align: center;
	color: var(--white-color);
	font-family: var(--design-font);
}




.swiper-slide {
	background: var(--first-color-alt);
	color: var(--text-color);
	padding: 20px;
	box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
	border-radius: 10px;
}
.testimonial {
	font-size: 16px;
	line-height: 1.5;
	margin-bottom: 15px;
}
.client-name {
	font-weight: bold;
	font-size: 18px;
	color: var(--first-color);
	font-family: var(--design-font);
}
.caption {
	text-align: center;
	margin-top: 20px;
	font-size: 14px;
	color: var(--white-color);
}

@media screen and (max-width: 768px) {
	html {
		font-size: 55%;
	}
	.more-services {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 5rem;
		padding: 10rem 0;
	}
}

@media screen and (max-width: 500px) {
	.more-services {
		display: grid;
		grid-template-columns: 1fr;
		gap: 5rem;
	}

	.more-services-card {
		background: #372d248d;
		align-items: center;
		justify-content: space-between;
		color: var(--text-color);
		position: relative;
		padding: 1.5rem;
		text-align: center;
		transition: 0.6s ease;
	}
}
