@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap");

* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
	scroll-behavior: smooth;
	/* outline: 1px dotted red; */
	font-family: "Poppins", sans-serif;
	font-weight: 500;
	font-style: normal;
	color: #1e1e1e;
}

html,
body {
	height: 100%;
	width: 100%;
}

.hero {
	height: 100dvh;
	width: 100%;
	position: relative;
}

.navbar {
	position: absolute;
	top: 0;
	width: 100%;
	padding: 0 5dvw;
	display: flex;
	align-items: center;
	justify-content: space-between;
	z-index: 1;
}

.logo a {
	font-size: 18px;
	font-family: "Nunito", serif;
	font-weight: 800;
	line-height: 1;
	text-transform: capitalize;
}

.nav-links {
	display: flex;
	column-gap: 18px;
	align-items: center;
}

.nav-link a {
	position: relative;
	height: 24px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	border-radius: 50%;
	background-color: #1e1e1e60;
}

.nav-link a i {
	font-size: 16px;
	line-height: 1;
	color: #fff;
}

.cart-link i span {
	position: absolute;
	top: -2px;
	right: -2px;
	height: 10px;
	aspect-ratio: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 10px;
	border-radius: 50%;
	color: #f1f1f1;
	background-color: #ff2828;
}

.juice {
	position: relative;
	height: 100dvh;
	width: 100%;
	overflow: hidden;
}

.juice img {
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	max-height: 100%;
	width: auto;
	object-fit: cover;
	object-position: center;
}

.green {
	background-color: #8a994a;
}

.red {
	background-color: #d05c69;
}

.orange {
	background-color: #db741a;
}

.pink {
	background-color: #c473ab;
}

.text {
	position: absolute;
	left: 5dvw;
	bottom: 5dvw;
	width: 100%;
	display: flex;
	flex-direction: column;
	row-gap: 10px;
}

.number {
	font-family: "Poppins", serif;
	line-height: 1;
	font-size: 18px;
	font-weight: 900;
	-webkit-text-stroke: 0.5px #fff;
	color: #ff2828;
}

.title {
	font-family: "Poppins", serif;
	font-size: 24px;
	font-weight: 900;
	line-height: 1;
	text-transform: capitalize;
}

.desc {
	font-family: "Poppins", serif;
	font-size: 16px;
	line-height: 1;
	text-transform: capitalize;
	font-weight: 400;
}

.btn {
	padding: 5px 20px;
	font-size: 18px;
	display: flex;
	align-items: center;
	font-weight: 500;
	color: #1e1e1e;
	border: 1px solid #1e1e1e;
	border-radius: 20px;
	text-transform: capitalize;
	cursor: pointer;
	background-color: transparent;
	transition: background-color 0.2s ease-in-out;
}

.btn:hover {
	background-color: #fff;
}

.btn i {
	font-weight: 600;
}

.text a {
	width: max-content;
}

@media (min-width: 426px) and (max-width: 768px) {
	.navbar {
		padding: 10px 5dvw;
	}
	.logo a {
		font-size: 24px;
	}
	.nav-link a {
		height: 30px;
	}
	.nav-link a i {
		font-size: 18px;
	}
	.hero {
		display: grid;
		grid-template-columns: repeat(2,1fr);
		grid-template-rows: repeat(2,1fr);
	}
	.text {
		left: 20px;
		bottom: 20px;
		row-gap: 10px;
	}
	.number{
		font-size: 20px;
	}
	.title{
		font-size: 20px;
	}
	.desc{
		font-size: 18px;
	}
	.btn{
		padding: 10px 20px;
		border-radius: 30px;
		font-size: 18px;
	}
}

@media (min-width: 769px) {
	.logo a {
		font-size: 2dvw;
	}
	.nav-link a {
		height: 2dvw;
	}
	.nav-link a i {
		font-size: 1.2dvw;
	}
	.hero {
		display: grid;
		grid-template-columns: repeat(4, 1fr);
		grid-template-rows: 1fr;
	}
	.text {
		left: 1dvw;
		bottom: 1dvw;
		row-gap: 1dvw;
	}
	.number{
		font-size: 2dvw;
	}
	.title{
		font-size: 2dvw;
	}
	.desc{
		font-size: 1.2dvw;
	}
	.btn{
		padding: 0.5dvw 2dvw;
		border-radius: 2dvw;
		font-size: 1.5dvw;
	}
}