/*=============== GOOGLE FONTS ===============*/
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@600&family=Lora:wght@500;600&family=Poppins:wght@400;500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;600&display=swap");

/*=============== VARIABLES CSS ===============*/
:root {
	--header-height: 3.5rem;

	/*========== Colors ==========*/
	/*Color mode HSL(hue, saturation, lightness)*/
	--first-color: #f9b11f;
	--first-color-alt: #f3c467;
	--title-color: hsl(19, 16%, 15%);
	--text-color: hsl(19, 16%, 35%);
	--text-color-light: hsl(19, 8%, 55%);
	--body-color: hsl(19, 100%, 96%);
	--container-color: hsl(19, 100%, 97%);

	/*========== Font and typography ==========*/
	/*.5rem = 8px | 1rem = 16px ...*/
	--body-font: "Poppins", sans-serif;
	--title-font: "Lora", serif;
	--subtitle-font: "Dancing Script", cursive;
	--menu-title-font: "Oswald", sans-serif;
	--biggest-font-size: 2.25rem;
	--h1-font-size: 1.5rem;
	--h2-font-size: 1.25rem;
	--h3-font-size: 1rem;
	--normal-font-size: 0.938rem;
	--small-font-size: 0.813rem;
	--smaller-font-size: 0.75rem;

	/*========== Font weight ==========*/
	--font-medium: 500;
	--font-semi-bold: 600;

	/*========== z index ==========*/
	--z-tooltip: 10;
	--z-fixed: 100;
}
@media screen and (min-width: 1024px) {
	:root {
		--biggest-font-size: 4rem;
		--h1-font-size: 2.25rem;
		--h2-font-size: 1.5rem;
		--h3-font-size: 1.25rem;
		--normal-font-size: 1rem;
		--small-font-size: 0.875rem;
		--smaller-font-size: 0.813rem;
	}
}

/*=============== BASE ===============*/
* {
	box-sizing: border-box;
	padding: 0;
	margin: 0;
}

html {
	scroll-behavior: smooth;
}

body {
	font-family: var(--body-font);
	font-size: var(--normal-font-size);
	background-color: var(--body-color);
	color: var(--text-color);
	transition: background 0.4s; /* for dark mode animation */
}

h1,
h2,
h3 {
	color: var(--title-color);
	font-weight: var(--font-medium);
}

ul {
	list-style: none;
}

a {
	text-decoration: none;
}

img {
	max-width: 100%;
	height: auto;
}

/*=============== THEME ===============*/
.nav__buttons {
	display: flex;
	align-items: center;
	column-gap: 1rem;
}

.change-theme {
	font-size: 1.25rem;
	color: var(--title-color);
	cursor: pointer;
	transition: color 0.3s ease-in-out;
}
/*========== Variables Dark theme ==========*/
body.dark-theme {
	--first-color: #faa907;
	--first-color-alt: #f2bb4d;
	--title-color: hsl(19, 24%, 85%);
	--text-color: hsl(19, 16%, 65%);
	--body-color: hsl(19, 12%, 8%);
	--container-color: hsl(19, 10%, 10%);
}
/*========== 
    Color changes in some parts of 
    the website, in light theme
==========*/
.dark-theme .bg-header,
.dark-theme .nav__menu,
.dark-theme .scrollup {
	box-shadow: 0 2px 8px hsla(19, 64%, 4%, 0.5);
}

.dark-theme .popular__card {
	box-shadow: 0 8px 20px hsla(19, 64%, 4%, 0.2);
}

.dark-theme .newsletter__content {
	background-color: var(--container-color);
}

.dark-theme::-webkit-scrollbar {
	background-color: hsl(19, 8%, 15%);
}

.dark-theme::-webkit-scrollbar-thumb {
	background-color: hsl(19, 8%, 25%);
}

.dark-theme::-webkit-scrollbar-thumb:hover {
	background-color: hsl(19, 8%, 35%);
}
/*=============== REUSABLE CSS CLASSES ===============*/
.container {
	max-width: 1024px;
	margin-inline: 1.5rem;
}

.grid {
	display: grid;
	gap: 1.5rem;
}

.section {
	padding-block: 5rem 1rem;
}

.section__title {
	font-size: var(--h1-font-size);
	font-family: var(--title-font);
	margin-bottom: 1.5rem;
}

.section__subtitle {
	display: block;
	font-size: var(--h2-font-size);
	font-family: var(--subtitle-font);
	color: var(--first-color);
	margin-bottom: 0.5rem;
}

.section__title,
.section__subtitle {
	text-align: center;
}

.main {
	overflow: hidden; /* For animation ScrollReveal */
}

/*=============== HEADER & NAV ===============*/
.header {
	position: fixed;
	width: 100%;
	background-color: var(--body-color);
	top: 0;
	left: 0;
	z-index: var(--z-fixed);
	transition: box-shadow 0.3s, background 0.3s;
}

.nav {
	position: relative;
	height: var(--header-height);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.nav__toggle,
.nav__close {
	display: flex;
	color: var(--title-color);
}

.nav__logo {
	transition: transform 0.3s ease-in-out;
}

.nav__logo img {
	transition: all 0.3s ease-in-out;
	width: 65px;
}

.nav__logo:hover {
	transform: scale(1.1);
}

.nav__toggle {
	font-size: 1.25rem;
	cursor: pointer;
}

@media screen and (max-width: 767px) {
	.nav__menu {
		position: fixed;
		top: -100%;
		left: 0;
		background-color: var(--body-color);
		width: 100%;
		box-shadow: 0 8px 20px hsla(19, 64%, 24%, 0.1);
		padding-block: 3.5rem;
		transition: top 0.4s;
	}
}

.nav__list {
	display: flex;
	flex-direction: column;
	text-align: center;
	row-gap: 2rem;
}

.nav__link {
	color: var(--title-color);
	font-weight: var(--font-medium);
	transition: color 0.4s;
}

.nav__link:hover {
	color: var(--first-color);
}

.nav__close {
	position: absolute;
	top: 1rem;
	right: 1.5rem;
	font-size: 1.5rem;
	cursor: pointer;
}

.nav__img-1,
.nav__img-2 {
	position: absolute;
	opacity: 0.3;
}

.nav__img-1 {
	width: 100px;
	top: 0.75rem;
	left: -2rem;
	transform: rotate(165deg);
}

.nav__img-2 {
	width: 50px;
	right: -0.5rem;
	bottom: -2rem;
	transform: rotate(-30deg);
}

/* Show menu */
.show-menu {
	top: 0;
}
/* Change background header */
.bg-header {
	box-shadow: 0 2px 8px hsla(19, 64%, 24%, 0.1);
}

/* Active link */
.active-link {
	color: var(--first-color);
}
/*=============== HOME ===============*/
.home {
	position: relative;
	height: 90vh;
}

.home__container {
	row-gap: 3rem;
	padding-top: 2rem;
	height: 100%;
}

.home__img {
	width: 310px;
	justify-self: center;
}

.home__data {
	text-align: center;
}

.home__title {
	font-size: var(--biggest-font-size);
	font-family: var(--title-font);
	margin-bottom: 1rem;
}

.home__title img {
	width: 40px;
}

.home__title div {
	display: flex;
	align-items: center;
	justify-content: center;
	column-gap: 0.5rem;
}

.home__description {
	padding: 0 1rem;
	margin-bottom: 2.5rem;
}

.home__leaf-1,
.home__leaf-2 {
	position: absolute;
	opacity: 0.5;
}

.home__leaf-1 {
	width: 80px;
	top: 8rem;
	left: -1rem;
	transform: rotate(90deg);
}

.home__leaf-2 {
	width: 120px;
	right: -1rem;
	bottom: -5rem;
	transform: rotate(-15deg);
}

/*=============== BUTTON ===============*/
.button {
	display: inline-flex;
	align-items: center;
	column-gap: 0.5rem;
	background-color: var(--first-color);
	padding: 1rem 1.5rem;
	border-radius: 4rem;
	color: #fff;
	font-weight: var(--font-medium);
	transition: background 0.3s;
}

.button i {
	font-size: 1.5rem;
	transition: transform 0.3s;
}

.button:hover {
	background-color: var(--first-color-alt);
}

.button:hover i {
	transform: translateX(0.25rem);
}
/*=============== ABOUT ===============*/
.about {
	position: relative;
}

.about__container {
	row-gap: 3rem;
}

.about__data {
	text-align: center;
}

.about__title img {
	width: 30px;
}

.about__title div {
	display: flex;
	justify-content: center;
	align-items: center;
	column-gap: 0.5rem;
}

.about__img {
	width: 320px;
	justify-self: center;
}

.about__leaf {
	width: 100px;
	opacity: 0.4;
	position: absolute;
	right: -1.5rem;
	bottom: 11rem;
	transform: rotate(-15deg);
}
/*=============== POPULAR ===============*/
.popular__container {
	padding-top: 4rem;
	grid-template-columns: 250px;
	justify-content: center;
	row-gap: 5.5rem;
}

.popular__card {
	position: relative;
	background-color: var(--container-color);
	padding: 7rem 2rem 1.5rem;
	box-shadow: 0 8px 20px hsla(19, 64%, 48%, 0.08);
	border-radius: 1rem;
	text-align: center;
	transition: background 0.4s; /* for dark mode animation */
}

.popular__img {
	width: 220px;
	position: absolute;
	inset: 0;
	top: -2.5rem;
	margin: 0 auto;
	transition: transform 0.4s;
}

.popular__name {
	font-size: var(--h3-font-size);
	font-family: var(--title-font);
	margin-bottom: 0.25rem;
	margin-top: 4rem;
}

.popular__description {
	display: block;
	font-size: var(--smaller-font-size);
	margin-bottom: 1rem;
}

.popular__price {
	font-size: var(--h3-font-size);
	font-weight: var(--font-medium);
	color: var(--first-color);
}

.popular__button {
	display: flex;
	background-color: var(--first-color);
	padding: 6px;
	border-radius: 50%;
	border: none;
	outline: none;
	color: #fff;
	font-size: 1.25rem;
	box-shadow: 0 4px 20px hsla(19, 64%, 20%, 0.2);
	position: absolute;
	bottom: 1.25rem;
	right: 1.25rem;
	cursor: pointer;
	transition: background 0.3s;
}

.popular__button:hover {
	background-color: var(--first-color-alt);
}

.popular__card:hover .popular__img {
	transform: translateY(-0.25rem);
}

/*=============== RECENTLY ===============*/
.recently {
	position: relative;
}

.recently__container {
	row-gap: 4rem;
}

.recently__data {
	position: relative;
	text-align: center;
}

.recently__description {
	margin-bottom: 2rem;
}

.recently__data-img {
	width: 25px;
	position: absolute;
	top: 3.5rem;
	right: 1.5rem;
	transform: rotate(30deg);
}

.recently__img {
	width: 300px;
	justify-self: center;
}

.recently__leaf-1,
.recently__leaf-2 {
	position: absolute;
	opacity: 0.3;
}

.recently__leaf-1 {
	width: 80px;
	top: 9rem;
	left: -1rem;
	transform: rotate(15deg);
}

.recently__leaf-2 {
	width: 40px;
	right: -1rem;
	bottom: 9rem;
	transform: rotate(-30deg);
}
/*=============== NEWSLETTER ===============*/
.newsletter__container {
	position: relative;
}

.newsletter__content {
	position: relative;
	background-color: hsl(19, 24%, 15%);
	border-radius: 2.5rem;
	padding: 5rem 1rem 3rem;
	text-align: center;
	overflow: hidden;
	margin-bottom: 2rem;
}

.newsletter__img {
	width: 250px;
	position: absolute;
	top: -4.5rem;
	left: -7rem;
}

.newsletter__data .section__title {
	color: #fff;
	margin-bottom: 2rem;
}

/* .newsletter__form {
	background-color: #fff;
	padding: 5px 5px 5px 22px;
	border-radius: 4rem;
	display: flex;
	column-gap: 0.5rem;
	justify-content: center;
}

.newsletter__input,
.newsletter__button {
	font-family: var(--body-font);
	border: none;
	outline: none;
}

.newsletter__input {
	width: 90%;
	color: var(--text-color);
} */

.newsletter__button {
	cursor: pointer;
	font-family: var(--body-font);
	border: none;
	outline: none;
}

.newsletter__spinach {
	width: 50px;
	position: absolute;
	right: 2rem;
	bottom: -1.8rem;
	transform: rotate(-60deg);
}

/*=============== FOOTER ===============*/
.footer {
	position: relative;
	padding-block: 3rem 2rem;
	overflow: hidden;
}

.footer__container {
	row-gap: 3rem;
}

.footer__logo {
	display: inline-flex;
	align-items: center;
	/* column-gap: 0.5rem;
	color: var(--title-color);
	font-family: var(--title-font);
	font-size: var(--h3-font-size);
	font-weight: var(--font-semi-bold); */
	margin-bottom: 1rem;
}

.footer__logo img {
	width: 90px;
	transition: transform 0.4s;
}

.footer__logo img:hover {
	transform: scale(1.1);
}

.footer__description,
.footer__link,
.footer__information,
.footer__info {
	font-size: var(--small-font-size);
}

.footer__content,
.footer__links {
	display: grid;
}

.footer__content {
	grid-template-columns: repeat(2, max-content);
	gap: 2.5rem;
}

.footer__title {
	font-size: var(--h3-font-size);
	margin-bottom: 1.5rem;
}

.footer__links {
	row-gap: 0.5rem;
}

.footer__link {
	color: var(--text-color);
	transition: color 0.3s;
}

.footer__link:hover {
	color: var(--first-color);
}

.footer__social {
	display: flex;
	column-gap: 1.25rem;
}

.footer__social-link {
	color: var(--first-color);
	font-size: 1.25rem;
	transition: color 0.3s, transform 0.3s;
}

.footer__social-link:hover {
	color: var(--first-color-alt);
	transform: translateY(-0.25rem);
}

.footer__onion,
.footer__spinach {
	width: 40px;
	position: absolute;
}

.footer__onion {
	top: 12rem;
	right: 5rem;
	transform: rotate(-45deg);
}

.footer__spinach {
	bottom: 8rem;
	left: 3rem;
	transform: rotate(5deg);
}

.footer__leaf {
	width: 100px;
	opacity: 0.3;
	position: absolute;
	bottom: 6rem;
	right: -2rem;
	transform: rotate(-15deg);
}

.footer__info,
.footer__card {
	display: flex;
}

.footer__info {
	margin-top: 6.5rem;
	flex-direction: column;
	row-gap: 1.5rem;
}

.footer__card {
	column-gap: 1rem;
	justify-content: center;
}

.footer__card img {
	width: 35px;
}

.footer__copy {
	text-align: center;
	font-size: var(--smaller-font-size);
	color: var(--text-color-light);
}

/*=============== MENU ===============*/
.nav__arrow i {
	font-size: 30px;
	color: var(--title-color);
}

.menu__titles {
	text-align: center;
}
.menu__titles-title {
	font-size: 2.5rem;
	font-family: var(--menu-title-font);
}

.menu__titles-subtitle {
	font-family: var(--subtitle-font);
	font-size: 2rem;
	color: red;
	position: relative;
	top: -1.7rem;
}
.menu__titles-description {
	font-size: var(--smaller-font-size);
	font-family: var(--title-font);
	font-weight: var(--font-semi-bold);
	position: relative;
	letter-spacing: 0.1rem;
	top: -1.7rem;
}

/* Separators */
.separator-thick {
	width: 100%;
	height: 5px;
	background-color: var(--title-color);

	margin: 0.2rem auto;
}
.separator-slim {
	width: 100%;
	height: 2px;
	background-color: var(--title-color);
}

/* Products */

.menu__content-title {
	font-size: var(--h3-font-size);
	font-family: var(--title-font);
	margin: 1rem 0;
}

.menu__content-product {
	display: flex;
	justify-content: space-between;
	align-items: center;
	font-size: var(--smaller-font-size);
}
.menu__content-item p {
	font-weight: var(--font-semi-bold);
}
.menu__content-price {
	font-weight: var(--font-semi-bold);
}

.menu__content-img {
	margin-top: 2rem;
	display: flex;
	justify-content: center;
}
.menu__content-img img {
	height: 220px;
	width: auto;
}

/*=============== SCROLL BAR ===============*/
::-webkit-scrollbar {
	width: 0.6rem;
	border-radius: 0.5rem;
	background-color: hsl(19, 8%, 75%);
}
::-webkit-scrollbar-thumb {
	border-radius: 0.5rem;
	background-color: hsl(19, 8%, 65%);
}

::-webkit-scrollbar-thumb:hover {
	background-color: hsl(19, 8%, 55%);
}

/*=============== SCROLL UP ===============*/
.scrollup {
	position: fixed;
	right: 1rem;
	bottom: -50%;
	background-color: var(--container-color);
	box-shadow: 0 4px 12px hsla(19, 64%, 24%, 0.1);
	display: inline-flex;
	padding: 0.35rem;
	border-radius: 0.25rem;
	font-size: 1.1rem;
	color: var(--first-color);
	z-index: var(--z-tooltip);
	transition: bottom 0.4s ease-in-out, transform 0.3s ease-in-out,
		background 0.4s, color 0.4s;
}

.scrollup:hover {
	transform: translateY(-0.25rem);
	background-color: var(--first-color-alt);
	color: #fff;
}
/* Show Scroll Up*/
.show-scroll {
	bottom: 3rem;
}
/*=============== BREAKPOINTS ===============*/
/* For small devices */
@media screen and (max-width: 320px) {
	.home__leaf-2 {
		width: 90px;
		right: -1rem;
		top: 35rem;
	}
}

@media screen and (max-width: 340px) {
	.container {
		margin-inline: 1rem;
	}

	.section {
		padding-block: 4rem 1rem;
	}

	.nav__logo img {
		width: 70px;
	}

	.home__title {
		font-size: 2rem;
	}
	.home__leaf-1 {
		top: 7rem;
		width: 100px;
		left: -0.5rem;
	}

	.home__leaf-2 {
		bottom: 2rem;
	}

	.home__img {
		width: 270px;
	}

	.button {
		padding: 0.75rem 1rem;
	}

	.about__leaf {
		bottom: 8rem;
	}

	.recently__data-img {
		right: 0.4rem;
		top: 4.5rem;
	}

	.newsletter__content {
		padding: 6rem 1rem 2rem;
	}

	.footer__content {
		gap: 0.5rem;
	}
	.footer__onion {
		top: 10rem;
		right: 2rem;
	}
}

@media screen and (max-width: 390px) {
	.footer__content {
		gap: 4rem;
	}
	.footer__onion {
		top: 11rem;
	}
	.home__leaf-1 {
		top: 6rem;
		left: -0.2rem;
		width: 100px;
	}
	.home__leaf-2 {
		bottom: -4rem;
		width: 120px;
	}
	.about__leaf {
		bottom: 11rem;
		right: 0.5rem;
		width: 130px;
	}

	.recently__leaf-1 {
		top: 2rem;
		left: -0.5rem;
		width: 110px;
	}

	.recently__leaf-2 {
		bottom: 2rem;
		width: 80px;
	}
}

/* For medium devices */
@media screen and (min-width: 576px) {
	.home__container,
	.about__container,
	.recently__container,
	.newsletter__content {
		display: grid;
		grid-template-columns: 0.7fr;
		justify-content: center;
	}

	.home__img {
		position: relative;
		right: 1.5rem;
	}

	.footer__content {
		grid-template-columns: repeat(3, 1fr);
	}

	.home__leaf-1 {
		width: 130px;
		left: -1rem;
		top: 6rem;
	}
	.home__leaf-2 {
		width: 160px;
		bottom: -4rem;
		right: -1rem;
	}
	.about__leaf {
		width: 150px;
		right: 0.5rem;
		bottom: 7rem;
	}
	.recently__leaf-1 {
		width: 130px;
		top: 2rem;
		left: -0.2rem;
	}
	.recently__leaf-2 {
		width: 95px;
		bottom: -1rem;
	}

	.footer__leaf {
		width: 130px;
		right: -1rem;
		bottom: 1rem;
	}
}

@media screen and (min-width: 767px) {
	.nav {
		column-gap: 3rem;
	}

	.nav__toggle,
	.nav__close,
	.nav__img-1,
	.nav__img-2 {
		display: none;
	}

	.nav__list {
		flex-direction: row;
		column-gap: 3rem;
	}

	.nav__button {
		display: none;
	}

	.nav__menu {
		margin-left: auto;
	}
	.dark-theme .nav__menu {
		box-shadow: none;
	}

	.popular__container {
		grid-template-columns: repeat(2, 250px);
	}

	.footer__content {
		grid-template-columns: repeat(4, 1fr);
	}

	/* Leafs */
	.home__leaf-1 {
		width: 140px;
		left: -1.4rem;
	}
	.home__leaf-2 {
		width: 140px;
	}
	.about__leaf {
		width: 120px;
		right: 1rem;
	}
	.recently__leaf-1 {
		width: 110px;
		left: 0.5rem;
	}
	.recently__leaf-2 {
		right: 1rem;
		width: 70px;
	}
	.newsletter__spinach {
		width: 70px;
		bottom: -2.3rem;
	}
	.footer__onion {
		width: 100px;
		top: 5rem;
	}
	.footer__leaf {
		width: 120px;
	}
	.footer__spinach {
		width: 70px;
		bottom: 5rem;
	}
	.newsletter__img {
		top: -1rem;
		left: -3rem;
	}

	/* Menu Bakery */

	.menu__content {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		column-gap: 2rem;
	}
	.menu__titles-title {
		font-size: 7rem;
	}
	.menu__titles-subtitle {
		font-size: 4rem;
		top: -3.5rem;
	}
	.menu__titles-description {
		font-size: 1.6rem;
		top: -3.5rem;
		letter-spacing: 0.8rem;
	}
	.menu__content-title {
		font-size: 1.8rem;
	}
	.menu__content-item {
		font-size: 1rem;
	}
	.menu__content-img img {
		height: 320px;
	}

	.nav__arrow i {
		font-size: 30px;
	}

	.menu__content-product {
		margin-bottom: 1.5rem;
	}

	.flex-reverse {
		display: flex;
		flex-direction: column-reverse;
	}
}
/* For large devices */

@media screen and (min-width: 1024px) {
	.section {
		padding-block: 7rem 1.5rem;
	}
	.section__subtitle {
		margin-bottom: 0.75rem;
	}

	.nav {
		height: calc(var(--header-height) + 1.5rem);
	}

	.nav__logo img {
		width: 100px;
	}

	.home__container {
		position: relative;
		grid-template-columns: 480px 500px;
		padding-block: 7rem 3rem;
	}
	.home__data {
		text-align: initial;
		order: -1;
	}

	.home__title img {
		width: 60px;
	}

	.home__title div {
		justify-content: initial;
		column-gap: 1rem;
	}
	.home__description {
		padding-inline: 0 10rem;
	}

	.home__img {
		width: 550px;
		position: absolute;
		top: 1rem;
		right: -3rem;
	}

	.about__container {
		grid-template-columns: 450px 360px;
		align-items: center;
		column-gap: 7rem;
	}

	.about__data {
		order: 1;
	}

	.about__data,
	.about .section__subtitle,
	.about .section__title {
		text-align: initial;
	}

	.about__title div {
		column-gap: 1rem;
		justify-content: initial;
	}

	.about__title img {
		width: 50px;
	}

	.about__img {
		width: 450px;
	}

	.popular__container {
		grid-template-columns: repeat(3, 262px);
		column-gap: 3.5rem;
		padding-block: 6rem 4rem;
	}

	.popular__card {
		padding: 7.5rem 2rem 2rem;
		border-radius: 1.5rem;
	}

	.popular__img {
		width: 230px;
	}

	.popular__button {
		bottom: 2rem;
	}

	.recently__container {
		grid-template-columns: 350px 480px;
		align-items: center;
		column-gap: 7rem;
		padding-bottom: 2rem;
	}

	.recently__data,
	.recently .section__subtitle,
	.recently .section__title {
		text-align: initial;
	}
	.recently__img {
		width: 480px;
	}

	.newsletter__content {
		grid-template-columns: 350px 360px;
		align-items: center;
		column-gap: 6rem;
		padding: 2.5rem 0;
		border-radius: 4.5rem;
	}

	.newsletter__img {
		position: initial;
		width: 350px;
	}

	.newsletter__data {
		text-align: initial;
	}

	.newsletter .section__subtitle,
	.newsletter .section__title {
		text-align: initial;
	}
	.newsletter .section__title {
		margin-bottom: 2.5rem;
	}
	.newsletter__button {
		font-size: var(--normal-font-size);
	}
	.newsletter__spinach {
		width: 90px;
		right: 5rem;
		bottom: -3.4rem;
	}

	.footer {
		padding-block: 8rem 3rem;
	}
	.footer__container {
		position: relative;
		grid-template-columns: repeat(2, max-content);
		justify-content: space-between;
	}

	.footer__content {
		column-gap: 2.5rem;
	}
	.footer__title,
	.footer__description,
	.footer__link,
	.footer__information {
		font-size: var(--normal-font-size);
	}
	.footer__social-link {
		font-size: 1.5rem;
	}
	.footer__info {
		flex-direction: row;
		justify-content: space-between;
		margin-top: 8.5rem;
	}
	.footer__copy {
		order: -1;
	}
	.footer__spinach {
		bottom: -6rem;
		left: 3rem;
	}
	.footer__onion {
		right: 1rem;
	}

	.scrollup {
		right: 3rem;
	}
	/* Leafs */

	.home__leaf-1 {
		width: 140px;
		left: -2rem;
	}
	.home__leaf-2 {
		width: 200px;
		bottom: -5rem;
		right: -1rem;
	}

	.about__leaf {
		width: 140px;
		right: 1rem;
		bottom: 9rem;
	}

	.recently__data-img {
		width: 60px;
		top: 6rem;
		right: 1.2rem;
	}
	.footer__leaf {
		display: none;
	}
}

@media screen and (min-width: 1064px) {
	.container {
		margin-inline: auto;
	}
}

@media screen and (min-width: 1280px) {
	.home__leaf-1 {
		width: 220px;
		top: 6rem;
	}

	.home__leaf-2 {
		width: 260px;
		bottom: -6rem;
		right: -1rem;
	}
	.home__img {
		width: 600px;
	}

	.about__leaf {
		width: 200px;
		bottom: 3rem;
	}

	.recently__leaf-1 {
		width: 150px;
		top: 19rem;
	}

	.recently__leaf-2 {
		width: 100px;
		bottom: 11rem;
	}

	.footer__leaf {
		display: block;
		right: 0;
		left: 0;
		bottom: -13rem;
		margin: 0 auto;
		width: 150px;
		opacity: 0.5;
		rotate: 50deg;
	}
	.footer__onion {
		top: 12rem;
	}
}
