/* Reset */
body, html, div, img, p, h1, h2, h3, h4, h5, h6, ul, ol,
li, dl, dt, dd, form, a, fieldset, input, th, td, section
{
	margin: 0; padding: 0; border: 0; outline: none;
} 
h1, h2, h3, h4, h5, h6 
{
	font-weight: normal;
}
ul, ol
{
	list-style: none;
}
a 
{
	text-decoration: none;
}
* 
{
	box-sizing: border-box;
	/* cursor: none; */
}
*:before, *:after 
{
	box-sizing: border-box;
}
/*--- end reset --*/

/*--- FONTS ---*/
@font-face
{
	font-family: "normalFont";
	src: url("fonts/InterTight-Thin.ttf");
}
@font-face
{
	font-family: "boldFont";
	src: url("fonts/InterTight-Light.ttf");
}
@font-face
{
	font-family: "headingFont";
	src: url("fonts/BebasNeue-Regular.ttf");
}
@font-face
{
	font-family: "stencilFont";
	src: url("fonts/ThickStencil.ttf");
}
/* 
white: #ffffff; 
tan: #efdfa4; 
green: #7d986b; 
black: #1a1c0f; 
*/
:root 
{
	--white: #ffffff;
	--tan: #efdfa4;
	--green: #7d986b;
	--black: #1a1c0f;
}

html
{
	font-size: 62.5%;
	scroll-behavior: smooth;
}
html, body
{
/* 	height: 100%;
	max-height: 100%; */
}
body 
{

	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-family: boldFont;
	font-size: 1.8rem;
	background-color: var(--white);
	line-height: 1.618;
	padding-top: 78px;
}

/*--- NAVIGATION ---*/
.overlay
{
	position: fixed;
	inset: 0;
	background: rgba(0,0,0,0.4);
	
}
nav
{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	max-height: 78px;
	min-height: 78px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
	z-index: 1000;

	background: linear-gradient(
	to bottom,
	rgba(26, 28, 15, 1),
	rgba(26, 28, 15, 0.95)
	);
	backdrop-filter: none;
	opacity: 1;
	overflow: hidden;
	transition: all .8s ease;
}
nav.scrolling
{	
	opacity: 0.2;
	backdrop-filter: blur(4px);
}

nav .logo
{
	height: 90%;
}
nav .logo img
{
	height: 78px;
	max-width: 120px;
}
.navRight
{
	display: flex;
	align-items: center;
	gap: 40px;
}
.navLinks 
{
	list-style: none;
	display: flex;
	gap: 60px; 
	margin: 0;
	padding: 0;
}
.navLinks a 
{
	position: relative;
	color: var(--white);
	border-bottom: 1px solid var(--green);
	transition: all .6s ease;
}
.navLinks a:hover
{
	color: var(--tan);
	letter-spacing: 1px;
	border-bottom: none;
}
.navLinks li a::after 
{ 
	content: "";
	position: absolute; 
	left: 0; 
	bottom: -4px; 
	width: 100%; 
	height: 2px; 
	background-color: var(--green); 
	transform: scaleX(0); 
	transform-origin: left; 
	transition: transform .4s ease; 
} 
.navLinks a:hover::after 
{ 
	transform: scaleX(1); 
}
.quoteButton 
{
	position: relative;
	font-family: headingFont;
	letter-spacing: 1px;
	padding: 2px 12px;
	border: none;
	font-size: 2rem;
	cursor: pointer;
	transition: all 0.25s ease;
	background: var(--black);
	color: var(--white);	
	outline: 2px solid var(--green);
	outline-offset: 1px;
	border-bottom: 8px solid var(--tan);
}
.quoteButton a
{
	color: var(--white);
}
.quoteButton:hover
{
	color: var(--tan);
	letter-spacing: 2px;
	outline-offset: 4px;
}
#menuIcon 
{
	display: none;
	flex-direction: column;
	align-items: center;
	gap: 4px;
	background: none;
	border: none;
	cursor: pointer;
}
#menuIcon .bars 
{
	display: flex;
	flex-direction: column;
	gap: 4px;
	height: 26px;
}
#menuIcon .bars span 
{	
	display: block;
	position: absolute;
	height: 2px;
	width: 80%;
	background: var(--green);
	border-radius: 6px;
	opacity: 1;
	left: 0;
	left: 50%;
	transform: translateX(-50%) rotate(0deg);
	transition: .25s ease-in-out;
}
#menuIcon .bars span:nth-child(1) 
{
	top: 0px;
}
#menuIcon .bars span:nth-child(2) 
{
	top: 7px;
}
#menuIcon .bars span:nth-child(3) 
{
	top: 14px;
}
#menuIcon .label 
{
	font-family: headingFont;
	color: var(--tan);
	font-size: 1.8rem;
	text-transform: uppercase;
	letter-spacing: 1px;
	padding-top: 160px;
}
#menuIcon.open .bars span:nth-child(1) 
{
	top: 12px;
	transform: translateX(-50%) rotate(135deg);
}
#menuIcon.open .bars span:nth-child(2) 
{
	opacity: 0;
	left: -60px;
}
#menuIcon.open .bars span:nth-child(3) 
{
	top: 12px;
	transform: translateX(-50%) rotate(-135deg);
}

/*--- FAQs ---*/
#faq
{
	position: relative;
	width: 100%;
	background-color: var(--white);
	padding: 60px 0;
}
.faqWrap
{
	max-width: 1350px;
	margin: auto;
}
.faqHeadlines .serviceLabel
{
	max-width: 250px;
}
.faqHeadlines h2
{
	color: var(--black);
	font-size: 6rem;
	font-family: headingFont;
}
.faqHolder
{
	max-width: 60%;
	margin: auto;
}
.faqItem 
{
	
}
.faqQuestion 
{
	height: 60px;
	background-color: var(--white);
	color: var(--black);
	font-size: 2.0rem;
	width: 100%;
	border: none;
	border-bottom: 1px solid var(--green);
	display: flex;
	justify-content: space-between;
	align-items: center;
	cursor: pointer;
}
.faqAnswer 
{
	/* height: 0px; */
	max-height: 0px;
	overflow: hidden;
	transition: all .6s ease;
}
.faqAnswer
{
	/* height: 0px; */
	max-height: 0px;
	overflow: hidden;
	transition: all .6s ease;	
}
.faqAnswer p 
{
	padding: 20px;
}
.faqAnswer.active
{
	max-height: 120px; 
}
.faqIcon 
{
	transition: transform 0.3s ease;
	fill: none;
}
.faqIcon path
{
	stroke: var(--green);
	stroke-width: 4px;
	fill: none;
}
.faqIcon.rotated 
{
	transform: rotate(180deg);
}

/*--- Contact Section ---*/
#contact 
{
	position: relative; 
	width: 100%;
	height: auto;
	background-color: #f6f6f6;
	padding: 60px 0;
	
	scroll-margin-top: 60px;
}
.contactWrap
{
	max-width: 1350px;
	margin: auto;
	display: flex;
	justify-content: space-between;
}
.contactHeadlines
{
	display: flex;
	flex-direction: column;
	justify-content: space-around;
	justify-content: flex-start;
	gap: 60px;
	color: var(--black);
	padding: 0 80px 0 0;
	
	max-width: 600px;
}
.contactHeadlines .serviceLabel
{
	width: 80%;
	max-width: 250px;
	background-color: var(--tan);
	text-align: center;
	color: var(--black);
	font-size: 2rem;
	letter-spacing: 1px;
	font-family: headingFont;
	border-top-left-radius: 20px;
	border-radius: 8px;
	padding: 4px 0;
	color: var(--black);
}
.contactHeadlines h2
{
	font-family: headingFont;
	font-size: 6rem;
}

/*-- Contact Form --*/
.contactForm 
{
	width: 49%;
	max-width: 700px;
	display: flex;
	flex-direction: column;
	gap: 1.5rem;
	background-color: var(--white);
	padding: 60px 30px;
	border-radius: 12px;
	opacity: 1;
	transition: .6s ease;
}
.contactForm h3
{
	font-family: headingFont;
	font-size: 4rem;
	color: var(--black);
}
.contactForm p
{
	font-size: 1.6rem;
	color: var(--black);
}
.formRow 
{
	position: relative;
	display: flex;
	flex-direction: column;
}
.formRow label 
{
	color: var(--black);
	font-family: headingFont;
	font-size: 2rem;
	letter-spacing: 1px;
	margin-bottom: 0.4rem;
}

	.formRow.needsAttention::after
	{
		content: "•";
		color: var(--tan); 
		font-size: 20px; 
		position: absolute; 
		left: -15px; 
		top: 50%; 
		transform: translateY(-50%);
	}

.contactForm input,
.contactForm textarea, 
.contactForm select 
{
	background: var(--white);
	border: 1px solid var(--green);
	padding: 0.75rem 1rem;
	font-size: 1.4rem;
	border-radius: 0px;
}
.contactForm input:focus,
.contactForm textarea:focus 
{
	border-color: var(--green);
	outline: none;
}
.contactForm select:focus 
{
	border-color: #7d986b;
	outline: none;
}
.contactButton
{
	display: inline-block;
	background-color: var(--green);
	color: var(--white);
	font-family: headingFont;
	font-size: 2.2rem;
	letter-spacing: 1px;
	border: 2px solid var(--green);
	transition: 0.2s ease;
	height: 48px;
	line-height: 48px;
	text-align: center;
	width: auto;
	align-self: flex-start;
	padding: 0 24px;
	cursor: pointer;
}
.contactButton:hover 
{
	background-color: transparent;
	color: var(--green);
	letter-spacing: 2px;
}

.contactForm input[name="website"] 
{
   display: none;
}

/* response messages */

.contactForm.fadeOut
{
	opacity: 0;
}
.responseMessage
{
	max-width: 700px;
	width: 49%;
	opacity: 0;
	transition: all .5s ease;
	min-height: 800px;
}
.responseMessage h3
{
	font-family: headingFont;
	font-size: 4rem;
	color: var(--black);
	
	border-bottom: 2px solid var(--green);
	margin-bottom: 12px;
}
.responseMessage.show 
{
	opacity: 1;
}
.responseMessage a
{
	position: relative;
	color: var(--black);
	border-bottom: 1px solid var(--green);
	transition: all .6s ease;
}
.responseMessage a::after
{
	content: "";
	position: absolute;
	left: 0;
	bottom: -4px;
	width: 100%;
	height: 2px;
	background-color: var(--green);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .4s ease;
}
.responseMessage a:hover
{
	letter-spacing: 1px;
	border-bottom: none;
}
.responseMessage a:hover::after
{
	transform: scaleX(1);
}



/*--- Footer ---*/
footer 
{
	background-color: var(--black);
	position: relative; 
	min-height: 400px;
	
	display: flex; 
	flex-direction: row;
	flex-wrap: nowrap;
	justify-content: space-around;
	align-items: flex-start;	
	padding-top: 60px;
}
.footerInfo
{
	min-width: 220px;
	height: auto;
	position: relative;
	display: block;
	color: var(--white);
	
	font-size: 1.8rem;
}
.footerInfo p
{
	color: var(--white);
	margin-top: 20px;
}
.footerInfo h2
{
	font-family: headingFont;
	color: var(--tan);
	font-size: 3.2rem;
	letter-spacing: 1px;
}
.footerInfo ul li
{
	margin-top: 20px;
}
.footerInfo a
{
	position: relative;
	color: var(--white);
	border-bottom: 1px solid var(--green);
	transition: all .6s ease;
}
.footerInfo a:hover
{
	color: var(--tan);
	letter-spacing: 1px;
	border-bottom: none;
}
#footerLogo
{
	max-width: 275px;
}
#socialIcon
{
	margin: 30px auto;
	width: 60px;
	transition: all .5s ease;
}
#socialIcon:hover
{
	filter: brightness(50%);
}
.footerInfo:last-child a 
{ 
	border-bottom: none; 
}
.footerInfo ul li a::after 
{ 
	content: "";
	position: absolute; 
	left: 0; 
	bottom: -4px; 
	width: 100%; 
	height: 2px; 
	background-color: var(--green); 
	transform: scaleX(0); 
	transform-origin: left; 
	transition: transform .4s ease; 
} 
.footerInfo a:hover::after 
{ 
	transform: scaleX(1); 
}

/*-- COMMON CLASSES --*/
.bold
{
	font-family: boldFont;
	font-weight: bolder;
}
.green 
{
	color: var(--green);
}
.divider 
{
	max-width: 75%;
	margin: 120px auto;
	background-color: rgba(125, 152, 107, 0.50);
	height: 1px;
	outline: none;
	border: none;
}

@media (max-width: 1200px) 
{
	nav
	{
		width: 100%;
		background-color: var(--black);
		display: block;
		padding-bottom: 20px;
	}
	nav.open
	{
		max-height: 800px;
		height: auto;
	}
	nav .logo
	{
		width: 100%;
		display: block;
		height: auto;
	}
	nav .logo img
	{
		display: block;
		height: 80px;
		width: auto;
	}
	.navRight
	{
		flex-direction: column;
		width: 100%;
		background-color: var(--black);
		gap: 10px;
		padding-top: 20px;
	}
	.navLinks
	{
		flex-direction: column;
		width: 100%;
		background-color: var(--black);
	}
	#menuIcon
	{
		display: block;
		position: absolute; 
		right: 10px; 
		top: 20px;
	}
	.quoteButton
	{
		margin-top: 40px;
	}
	.faqHolder
	{
		max-width: 100%;
	}
	.faqAnswer.active
	{
		max-height: 500px;
	}
	.contactWrap
	{
		flex-direction: column;
	}
	.contactHeadlines
	{
		padding: 12px;
	}
	.contactForm
	{
		width: 100%;
		padding: 12px;
	}
	/*--- Footer ---*/
	footer 
	{
		flex-direction: column;
		flex-wrap: wrap;
		justify-content: center;
		align-items: center;
		gap: 60px;
		
		padding-top: 60px;
	}
	.footerInfo
	{
		min-width: 260px;
		height: auto;
		position: relative;
		display: block;
		color: var(--white);
		
		font-size: 1.8rem;
	}
	.footerInfo p
	{
		color: var(--white);
		margin-top: 20px;
	}
	.footerInfo h2
	{
		font-family: headingFont;
		color: var(--tan);
		font-size: 3.2rem;
		letter-spacing: 1px;
	}
	.footerInfo ul li
	{
		margin-top: 20px;
	}
	.footerInfo a
	{
		position: relative;
		font-family: boldFont;
		color: var(--white);
		border-bottom: 1px solid var(--green);
		transition: all .6s ease;
	}
	.footerInfo a:hover
	{
		color: var(--tan);
		letter-spacing: 1px;
		border-bottom: none;
	}
	#footerLogo
	{
		max-width: 275px;
	}
	#socialIcon
	{
		margin: 30px auto;
		width: 60px;
	}
}



