/*#region Variables Start   */
:root {
	--clr-bg: #fff9ef;
	--clr-primary: #212427;
	--clr-secondary: #ffffff;
	--clr-accent: #ed1277;
	--ff-title: "Baloo 2", sans-serif;
	--ff-body: "Lato", sans-serif;
	--hover-transition: all 0.4s ease;
	--max-screen: 1280px; /*Test 1280px might be good*/

	--curved-height: -50px;
	--curved-bottom: 120px;
}
/*#endregion Variables End */

/*#region Default Settings Start*/
*,
*::after,
*::before {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	scroll-behavior: smooth;
	font-size: 62.5%; /*1rem = 10px*/
}

body {
	/*Temporary get rid of it*/
	overflow-x: hidden;
	font-family: var(--ff-body);
	font-size: inherit;
	color: var(--clr-primary);
}

main {
	overflow: hidden;
}

p {
	font-size: 1.6rem;
	line-height: 150%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: var(--ff-title);
	font-weight: 900;
}

h1 {
	font-size: 6.4rem;
	line-height: 120%;
}
h1 span,
h2 span {
	position: relative;
}

h1 span::after,
h2 span::after {
	display: flex;
	position: absolute;
	bottom: 0;
	left: 0;
	content: "";
	width: 100%;
	height: 21px;
}

h1 span::after {
	bottom: -5px;
	background: url("/assets/Frontend/media/FaqUnderline.svg") no-repeat center / contain;
}

h2 {
	font-size: 4.8rem;
}

h4 {
	font-size: 2.4rem;
}

h5 {
	font-family: var(--ff-body);
	font-size: 1.6rem;
	font-weight: bold;
}
/*#endregion Default Settings End */

/*#region Utility Start */
.container {
	max-width: var(--max-screen);
	margin: 0 auto;
}
/* Curved */

.curved {
	position: absolute;
	top: var(--curved-height);
	left: 0;
	width: 100%;
	transition: var(--hover-transition);
}

.curved-w {
	position: absolute;
	width: 100%;
	bottom: 0;
	left: 0;
}
/*#endregion Utility End */

/*#region Button Start */

a {
	text-decoration: none;
}

.btn:link,
.btn:visited,
.btn-outline:link,
.btn-outline:visited {
	display: flex;
	width: fit-content;
	font-family: var(--ff-title);
	font-size: 1.6rem;
	font-weight: 900;
	padding: 1.6rem 4.1rem;
	border: 2px solid var(--clr-accent);
	border-radius: 1000px;
	text-align: center;
	transition: var(--hover-transition);
}

.btn:link,
.btn:visited {
	background-color: #ed1277;
	color: var(--clr-secondary);
}
.btn:hover,
.btn:active {
	background-color: transparent;
	color: var(--clr-accent);
}

.btn-outline:link,
.btn-outline:visited {
	background-color: transparent;
	color: var(--clr-accent) !important;
}

.btn-outline:hover,
.btn-outline:active {
	background-color: var(--clr-accent);
	color: var(--clr-secondary) !important;
}

/*#endregion Button End */

/*#region Navbar Start */

.navbarSection {
	padding: 0 2rem;
}

.navbar {
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top: 2rem;
	font-family: var(--ff-title);
	font-weight: 900;
	font-size: 1.6rem;
	z-index: 999;
}

.navLogo,
.footerLogo {
	max-width: 18rem;
	max-height: 18rem;
}

.navMenu {
	display: flex;
	list-style: none;
	justify-content: center;
	align-items: center;
	gap: 4rem;
	margin: 0;
	padding: 0;
	transition: var(--hover-transition);
}

.navMenu a:link,
.navMenu a:visited {
	color: var(--clr-primary);
	transition: var(--hover-transition);
}

.navMenu a:hover,
.navMenu a:active {
	color: var(--clr-accent);
	transition: var(--hover-transition);
}

.navBtn {
	margin-left: 2rem;
}

.burgerMenuContainer {
	position: relative;
	display: none;
}

.burgerMenuLink {
	display: none;
	position: relative;
	flex-direction: column;
	gap: 0.6rem;
	transition: var(--hover-transition);
}

.burgerMenuLink svg {
	opacity: 0;
	fill: var(--clr-secondary);
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 99999;
	transition: var(--hover-transition);
}

.open svg {
	opacity: 1;
}

.burgerMenu-1,
.burgerMenu-2,
.burgerMenu-3 {
	width: 46px;
	height: 5px;
	border-radius: 100px;
	background-color: var(--clr-accent);
	transition: var(--hover-transition);
}

.mobileMenuBackground {
	display: none;
	position: fixed;
	top: 9%;
	right: 1.5%;
	height: 6rem;
	width: 6rem;
	border-radius: 50%;
	background: var(--clr-accent);
	visibility: hidden;
	opacity: 0;
	z-index: 100;
	transition: all 0.6s cubic-bezier(0.83, 0, 0.17, 1);
}
.mobileMenuBackground-open {
	transform: scale(60);
	opacity: 1;
	visibility: visible;
}

.open {
	display: flex !important;
	opacity: 1 !important;
	visibility: visible !important;
}

/*#endregion NavBar End */

/* #region Faq Section Start */
.faqSection {
	margin-top: 4rem;
	margin-bottom: 23rem;
	padding: 0 2rem;
}
.faq {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 10rem;
}
.faqContainer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: 100%;
}
.faqContent {
	max-width: 66rem;
}

.faqImg img {
	max-width: 50rem;
}

.accordion {
	max-width: 66rem;
}
.accordion h3 {
	font-size: 2.4rem;
}

.accordion .contentBox {
	position: relative;
	margin: 1rem 2rem;
}

.accordion .contentBox::after {
	content: "";
	display: flex;
	width: 100%;
	height: 2px;
	background-color: rgba(0, 0, 0, 0.1);
	margin-top: 1rem;
}

.accordion .contentBox .label {
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 1rem 0;
	cursor: pointer;
}
.accordion .contentBox svg {
	height: 3rem;
	width: 3rem;
	align-self: center;
	transition: var(--hover-transition);
}
.accordion .contentBox svg path {
	transition: var(--hover-transition);
}
.accordion .contentBox.active svg {
	transform: rotate(90deg);
}
.accordion .contentBox.active svg path {
	fill: #ed1277;
}
.accordion .contentBox.active .label h3 {
	transition: var(--hover-transition);
}
.accordion .contentBox.active .label h3 {
	color: var(--clr-accent);
}

.accordion .contentBox .content {
	position: relative;
	height: 0;
	overflow: hidden;
	transition: var(--hover-transition);
}
.accordion .contentBox .content p {
	padding-bottom: 1rem;
}
/* #endregion Faq Section End */

/*#region Footer Start */
.footerSection {
	position: relative;
	background-color: var(--clr-bg);
	padding: 0 2rem;
}

.footerContainer {
	display: flex;
	justify-content: space-between;
	align-items: start;
	padding: 6.5rem 0;
	gap: 15rem;
	margin-bottom: 2rem;
}

.footerContent {
	display: flex;
	width: 100%;
	justify-content: space-between;
	align-items: start;
	padding-top: 3rem;
}

.footerItem {
	display: flex;
	flex-direction: column;
	gap: 1.6rem;
	max-width: 180px;
}
.footerItem ul {
	display: flex;
	flex-direction: column;
	gap: 1.2rem;
	list-style-type: disc;
	font-size: 1.6rem;
	padding-left: 2.5rem;
}

.footerItem a:link,
.footerItem a:visited {
	font-size: 1.6rem;
	color: var(--clr-primary);
	transition: var(--hover-transition);
}

.footerItem a:hover,
.footerItem a:active {
	color: #ed1277;
}

.footerBusiness {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.footerBusinessTime {
	display: flex;
	flex-direction: column;
	gap: 1rem;
}
.ownership {
	display: flex;
	flex-direction: column;
	justify-self: center;
	align-items: start;
	padding: 2rem 0;
	font-size: 1.6rem;
}

.ownership::before {
	content: "";
	width: 100%;
	margin: 0 auto;
	height: 1px;
	background-color: rgba(0, 0, 0, 0.2);
	margin-bottom: 2rem;
}

.ownership a:link,
.ownership a:visited {
	font-weight: bold;
	text-decoration: underline;
	color: var(--clr-primary);
	transition: var(--hover-transition);
}

.ownership a:hover,
.ownership a:active {
	color: var(--clr-accent);
}

/*#endregion Footer End */

/*#region Media Query Start*/
@media only screen and (max-width: 1180px) {
	h1 {
		font-size: 6rem;
	}
	h1 span::after {
		background-size: contain;
	}
	.footerContainer {
		gap: 4rem;
	}
}

@media only screen and (max-width: 1040px) {
	h1 {
		font-size: 5.4rem;
	}
}

@media only screen and (max-width: 980px) {
	.footerContainer {
		flex-direction: column;
		justify-content: center;
		align-items: center;
	}

	.navMenu {
		gap: 2rem;
	}
	.navBtn {
		margin: 0;
	}

	.faqContainer {
		justify-content: center;
	}
	.faqImg {
		display: none;
	}
}

@media only screen and (max-width: 940px) {
	h1 {
		font-size: 5rem;
	}
}

@media only screen and (max-width: 840px) {
	.navbar {
		padding-top: 1rem;
	}
	.navMenu {
		opacity: 0;
		visibility: hidden;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		width: 100%;
		height: 100%;
		position: fixed;
		top: 0%;
		margin-left: -2rem; /*Fix in future*/
		background-color: transparent;
		z-index: 9999;
	}

	.navLogo {
		max-width: 14rem;
		max-height: 14rem;
	}
	.burgerMenuLink {
		display: flex;
	}
	.burgerMenuContainer {
		display: inline-block;
	}
	.mobileMenuBackground {
		display: inline-block;
		width: 6rem;
		height: 6rem;
	}
	.noMove {
		overflow: hidden !important;
	}
	.navMenu a:link,
	.navMenu a:visited {
		font-size: 3.4rem;
		color: var(--clr-secondary);
	}

	.navBtn .btn-outline:link,
	.navBtn .btn-outline:visited {
		color: var(--clr-secondary) !important;
		padding: 0;
		border: none;
	}
}

@media only screen and (max-width: 780px) {
	.footerContent {
		flex-wrap: wrap;
		justify-content: center;
		gap: 3rem;
	}
	.footerItem {
		width: 200px;
		max-width: 200px;
	}
	.faqSection {
		margin-bottom: 18rem;
	}
}

@media only screen and (max-width: 640px) {
	.footerItem h4 {
		font-size: 2rem;
	}
	.ownership p {
		font-size: 1.2rem;
		text-align: center;
	}
	.navbarSection {
		padding: 0 1rem;
	}
	.faqSection {
		padding: 0 1rem;
	}
	.navMenu {
		margin-left: -1rem;
	}
}

@media only screen and (max-width: 480px) {
	h1 {
		font-size: 4rem;
	}
	ul li,
	p,
	a,
	a:link,
	a:visited,
	.footerItem a:link,
	.footerItem a:visited,
	.btn {
		font-size: 14px;
	}
}

@media only screen and (max-width: 470px) {
	.footerContent {
		flex-direction: column;
		justify-content: center;
		align-items: center;
		text-align: center;
	}
	.footerContent ul {
		list-style: none;
		padding: 0;
	}

	.navLogo {
		max-width: 14rem;
		max-height: 14rem;
	}

	.accordion h3 {
		font-size: 2rem;
	}

	.faq {
		gap: 3rem;
	}
}

@media only screen and (max-width: 420px) {
	.navLogo {
		max-width: 12rem;
		max-height: 12rem;
	}
}
/*#endregion Media Query End */
