:root {
	--hero-title-font-size:clamp(2.3rem, 5vw, 5rem);
	--font-size:1rem;
	--hero-background-color: linear-gradient(180deg, #F8FAFC, #EEF4FF);
}


.hero {
	display: flex;
	min-height: calc(100vh - var(--header-height));
	align-items: stretch;
	padding-inline: 5%;
}

/*=======hero-left============*/
.hero .left {
	flex: 0 0 55vw;

	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

.hero .left .sub-title {
	color: var(--secondary-color);
	font-weight:600;
	letter-spacing:.05em;

	text-transform: capitalize;

	padding: 1rem;	
}

.hero .left .title {
	color: var(--primary-color);
	font-size:var(--hero-title-font-size);
	font-weight: 700;

	padding: 0.2rem;
}

.hero .left .cta-container {
	display: flex;
	flex-direction: column ;
	gap: 1vh;

	padding: 0.5rem;
}

.hero .left .cta-container .top {
	gap: 0.4rem;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
}

.hero .left .cta-container .top .shop {
	color: var(--text-color);
	font-size: calc(var(--header-font-size) * 1.1);
	font-family: var(--heading-font);

	background-color: var(--accent-color);

	padding: 1em 1.8em;
	border: 1px solid var(--primary-color);
	border-radius: 0.5em;

	max-height: calc(var(--header-height) * 0.8);

	display: inline-flex;
	justify-content: center;
	align-items: center;

	transition: all 100ms ease 100ms;
}

.hero .left .cta-container .top .shop:hover {
	transform: scale(1.02);
	border: black solid 1px;
}

.hero .left .cta-container .top .contact {
	color: var(--text-color);
	font-family: var(--heading-font);

	border-color: var(--accent-color);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: calc(var(--header-font-size) * 1.1);
	padding: 1em 1.8em;
	border: 1px solid var(--primary-color);
	border-radius: 0.5em;
	max-height: calc(var(--header-height) * 0.8);
}

.hero .left .cta-container .top .contact:hover {
	color: white;

	transform: scale(1.02);
	background-color: black;
	border: black solid 1px;
}

.hero .left .cta-container .bottom .slogan {
	color: var(--muted-color);
	font-size: 0.9rem;
	font-family: var(--body-font);
}
/*=======hero-right===========*/
.hero .right {
	flex: 0 0 35vw;
	background: url(../assets/images/chair-removebg-preview.png) no-repeat center / contain;
}

/*========responsive==========*/
@media (max-width:900px) {
	.hero .left {
		flex: 1;
		text-align: center;
		align-items: center;
		max-height: 78vh;
	}
	.cta-container > .cta {
		display: flex;
		flex-direction: column;
		gap: 3vw;
	}
	.hero .contact {
		display: block
	}

	.hero .right {
		display: none;
		flex: none;
	}
}


