﻿/***** BEGIN RESET *****/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, font, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td {
	background: transparent;
	border: 0;
	margin: 0;
	padding: 0;	
}

ol, ul {
	list-style: none;
}

table{border-collapse:collapse; width:100%;}
td{vertical-align:top;}

/* Make HTML 5 elements display block-level for consistent styling */  
header, nav, article, footer, address {  
    display: block;  
} 

/*-------- COLORS --------

	COLOR:  #XXXXXX
*/

:root {
		
	--green: #006B40; 
	--yellow: #FFF5AC;
	
	--light-green: #66A26B;
	--dark-yellow: #EFC867;
	--gray: #333;
}

/***** END RESET *****/
::-moz-selection {
    background: #000; 
    color: #fff;
    text-shadow: none;
}
::selection {
    background: #000;
    color: #fff;
    text-shadow: none;
}


/* Clearfix */
.cf:before,
.cf:after {
    content: " ";
    display: table;
}
.cf:after {
    clear: both;
}
.cf {
    *zoom: 1;
}

/*-------- BODY STYLES --------*/

* {box-sizing: border-box;}

body {
}

.wid-90 {width: 90%; margin: 0 auto; max-width: 1800px;}

.padit {padding: 70px 0;}
.header-pad {padding: 60px 0;}

.logo {max-width: 175px;}

.logo img {width: 100%; display: block; padding: 10px 0;}

.flex {display: flex;}

.flex-1 {
	width: 100%;
}

.flex-2 {
	width: 50%;
}

.flex-1 .wid-90, .flex-2 .wid-90 {
	width: 80%; max-width: 800px;
}

.mobile-only {display: none;}

.gray-body {background-color: #f5f5f5;}

/*------------- TEXT STYLES AND BUTTONS -------------*/

.white{color: #fff;}
.green {color: var(--green);}
.yellow {color: var(--yellow);}

.upper {text-transform: uppercase;}

a:link, a:visited, a:active {text-decoration:none; font-family: "Outfit", sans-serif; }
a:hover {text-decoration:none;}

h1, h2, h3, h4, h5, h6 { font-family: "Khand", sans-serif; }

p, li {
	font-family: "Outfit", sans-serif;
}

p.body-text {
	line-height: 2;
}

ul.bullets {
	margin-left: 30px;
	line-height: 2;
}

ul.bullets li {
	list-style: disc;
}

ul.icon-bullets {
	margin-left: 20px;
}

ul.icon-bullets li {
	position: relative;
}

ul.icon-bullets li i {
	position: absolute;
	right: 100%;
	line-height: 2;
}

hr {
	margin: 50px 0;
	border: 1px solid #A91E22;
}

.sm-heading {
	font-family: "Outfit", sans-serif;
	font-size: 24px;
	font-weight: 700;
}

.heading {font-family: "Khand", sans-serif;
	font-size: 36px;
	font-weight: 600;
	line-height: 1;
}

/*  BUTTONS  */

.yellow-btn {
	display: inline-block;
	text-align: center;
	padding: 15px 32px 10px;
	background: var(--yellow);
	color: #000 !important;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	border-bottom: 5px solid var(--dark-yellow);
	border-radius: 25px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
	/*	for animation*/
	transform: perspective(1px) translateZ(0);
  	position: relative;
	overflow: hidden;
}

.yellow-btn:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--dark-yellow);
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 0.3s ease-out;
}

.green-btn {
	display: inline-block;
	text-align: center;
	padding: 15px 32px 10px;
	background: var(--green);
	color: #fff !important;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: 600;
	cursor: pointer;
	border: none;
	border-bottom: 5px solid var(--light-green);
	border-radius: 25px;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
	/*	for animation*/
	transform: perspective(1px) translateZ(0);
  	position: relative;
	overflow: hidden;
}

.green-btn:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background: var(--light-green);
  transform: scaleY(0);
  transform-origin: 50% 100%;
  transition: transform 0.3s ease-out;
}

.yellow-btn:hover:before, .green-btn:hover:before {
  transform: scaleY(1);
}

.btn-row.flex {
	gap: 20px;
	flex-wrap: wrap;
}

/*--- HEADER STYLES ---------------------*/

header {
	position: relative;
	z-index: 5;
}

/* Use this for heading that are "floating/overlayed" on top. Wrap .header-wrap around logo/desktop nav*/
header .header-wrap {
	position: absolute;
	z-index: 5;
	top: 20px;
	width: 100%;
	left: 50%;
	transform: translate(-50%, 0);
}

.header-container {
	position: relative;
}

.header-wrap .flex.wid-90 {
	justify-content: space-between;
	align-items: center;
	gap: 20px;
}

.main-header.flex {
	background: #fff;
	padding: 0 50px;
	justify-content: space-between;
	align-items: center;
	gap: 5%;
	width: 100%;
	max-width: 900px;
}

.main-header .header-social {
	font-size: 20px;
	color: var(--green);
	transition: .3s ease all;
	
	&:hover{color: var(--gray);}
}

.header-wrap .btn-row.flex {
	flex-shrink: 0;
}

.yellow-header-btn {
	display: inline-block;
	padding: 15px 30px;
	background-color: var(--yellow);
	color: #000;
	border: 0;
	border-radius: 50px;
	font-family: "Outfit", sans-serif;
	font-size: 16px;
	font-weight: 400;
	transition: .3s ease all;
}

.yellow-header-btn:hover {
	background-color: #fff;
	color: var(--green);
}

/*---BODY--------------------------------*/

.hero {
	position: relative;
	padding: 275px 0 300px;
	background-color: var(--green);
	background-image: linear-gradient(115deg, rgba(215,132,0,0.40), rgba(128,176,118,0.00) 47%, rgba(0,107,64,0.80)), linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url("../siteart/hero.webp");
	background-size: cover;
	background-position: center;
}

.page-heading {
	position: relative;
	padding: 200px 0 200px;
	background-color: var(--green);
	background-image: linear-gradient(115deg, rgba(215,132,0,0.40), rgba(128,176,118,0.00) 47%, rgba(0,107,64,0.80)), linear-gradient(rgba(0,0,0,0.25), rgba(0,0,0,0.25)), url("../siteart/page-heading-bg.jpg");
	background-size: cover;
	background-position: center;
}

.page-heading .heading {
	font-size: 72px;
	font-family: "Walter Turncoat", sans-serif;
	font-weight: 400;
}

.hero .heading {
	font-size: 64px;
	font-weight: 700;
	padding-bottom: 20px;
	
	.flavor {color: var(--yellow); font-family: "Walter Turncoat"; font-size: 96px; font-weight: 400; padding-left: 15px;}
	.second-line {padding-left: 40px;}
}

.white-texture {
	position: absolute;
	bottom: 0;
	width: 100%;
	height: 225px;
	background-image: url("../siteart/white-texture.svg");
	background-position: center 2px;
	background-size: cover;
	background-repeat: no-repeat;
}

.inv.flex {
	justify-content: space-around;
	align-items: flex-start;
	gap: 40px 5%;
}

.search-box {
	width: 100%;
	max-width: 700px;
	padding: 30px;
	background-color: #f5f5f5;
	border-radius: 25px;
}

.search-box .search-fields {
	padding: 10px 0;
}

.inv-categories {
	width: 100%;
	max-width: 800px;
}

.inv-categories .flex {
	justify-content: space-around;
	flex-wrap: wrap;
	gap: 30px 50px;
	padding-top: 20px;
}

.inv-categories .cat-tile {
	display: block;
	position: relative;
	width: calc(50% - 50px);
	aspect-ratio: 2 / 1;
	background-color: var(--green);
	border-radius: 20px;
	overflow: hidden;
}

.cat-tile img {
	display: block;
	position: absolute;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.cat-tile::before {
	content: "";
	display: block;
	position: absolute;
	z-index: 1;
	top: 0;
	width: 100%;
	height: 100%;
	background-image: linear-gradient(115deg, rgba(215, 132, 0, 0.60) 16.24%, rgba(128, 176, 118, 0.00) 83.76%), linear-gradient(rgba(0,0,0,0.4), rgba(0,0,0,0.4));
}

.cat-tile .cat-title {
	position: absolute;
	bottom: 0;
	width: 100%;
	padding: 20px;
	z-index: 5;
	line-height: 1;
}

.cat-tile.view-all .cat-title {
	bottom: 50%;
	transform: translate(0, 50%);
	text-align: center;
}
.cat-title .sm-heading {
	transition: .5s ease all;
}

.cat-tile:hover .sm-heading {
	color: var(--yellow);
}

.cat-tile .cat-arrow {
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	border-radius: 20px;
	background-color: var(--yellow);
	z-index: 5;
	color: var(--green);
	display: flex;
	justify-content: center;
	align-items: center;
	transition: .5s ease all;
}

.cat-tile:hover .cat-arrow {
	transform: rotate(-405deg);
}

.welcome {
	background-color: #fff;
	background-image: linear-gradient(rgba(255,255,255,1) 40%, rgba(255,255,255,.60)), url("../siteart/field-bg.webp");
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: bottom;
}

.welcome .flex {
	align-items: center;
}

.welcome .img-aside {
	width: 100%;
}

.welcome .img-aside img {
	display: block;
	width: 100%;
}

.welcome .welcome-text {
	width: 100%;
	background-color: #fff;
	padding: 30px 30px 25px;
	border-bottom: 5px solid var(--green);
	border-radius: 25px;
	margin-left: -50px;
}

.welcome-text .heading span {
	color: #000;
	font-size: 20px;
}

.inventory-scroll {
	background-color: var(--green);
	padding: 10px 0;
}

.inventory-scroll iframe {
	width: 100%;
	height: 90px;
	display: block;
}

.touch {
	background-color: #F5F5F5;
	padding: 50px 50px 45px;
	border-bottom: 5px solid var(--green);
	border-radius: 25px;
	position: relative;
	margin-bottom: -140px;
}

.touch a {
	color: #000;
	transition: .3s ease all;
	
	&:hover {color: var(--green);}
}

.touch .flex {
	padding-top: 20px;
	justify-content: space-between;
	gap: 10px 20px; 
	flex-wrap: wrap;
}

.touch .flex div {
	max-width: 300px;
}

.form-aside {
	width: 100%;
	max-width: 600px;
}

.form-aside a {
	color: #000;
	transition: .3s ease all;
	
	&:hover {color: var(--green);}
}

/*--------FORM STYLES--------------------*/

.contact-form.flex {
	justify-content: space-between;
	align-items: flex-start;
	gap: 40px 5%;
}

.form-container {
	border-radius: 30px;
	padding: 30px 40px 25px;
	border-bottom: 5px solid var(--green);
	width: 100%;
	max-width: 1000px;
}

.form-box {
	
	margin: 0 auto;
}

.form-box .heading {
	padding: 15px 0;
}

.form-flex {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 10px 0;
}

.form-flex.submit {justify-content: flex-start;}

.form-flex label, .form-flex legend {
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	font-weight: 600;
	padding-bottom: 5px;
	display: inline-block;
}

.form-field, .form-flex input, .form-flex select, .form-flex textarea, .form-flex div {
	width: 100%;
}

.form-flex input[type="radio"], .form-flex input[type="checkbox"] {
	width: unset;
}

.form-flex input, .form-flex select, .form-flex textarea {
	background: #D9D9D9;
	border: none;
	color: #2D2D2D;
	font-family: "Outfit", sans-serif;
	font-size: 15px;
	padding: 15px 30px 10px;
	border-bottom: 5px solid #D9D9D9;
	border-radius: 10px;
	
}

.form-flex input:focus-visible, .form-flex select:focus-visible, .form-flex textarea:focus-visible {
	outline: none;
	background: #fff;
	border-bottom: 5px solid var(--green);
}

textarea {
	height: 150px;
}

.CaptchaPanel {
	font-family: "Outfit", sans-serif;
	text-align: left !important;
}

.captcha-button {
	text-align:left;
}

#captcha {
	display: none;
}

/*-------- FOOTER STYLES ----------------*/
footer {
	padding: 50px 0;
	background: var(--gray);
}

footer .wid-90.flex {
	justify-content: space-between;
	gap: 20px;
	flex-wrap: wrap;
}

footer .logo {
	max-width: 300px;
}

.footer-connect.flex {
	justify-content: center;
	gap: 20px;
	flex-wrap: wrap;
}

.footer-connect.flex a {
	color: #fff;
	transition: .3s ease all;
	
	&:hover {color: var(--yellow);}
}

.footer-right.flex {
	gap: 30px 60px;
	flex-wrap: wrap;
}

footer .sm-heading {
	margin-bottom: 10px;
}

.footer-nav .flex {
	gap: 0 40px;
	flex-wrap: wrap;
}

.footer-nav ul li a {
	color: #fff;
	line-height: 2;
	-webkit-transition:.3s ease-in;  
	-moz-transition:.3s ease-in;  
	-o-transition:.3s ease-in;  
	transition:.3s ease-in;
}

.footer-nav ul li a:hover {
	color: #F2ECD2;
}

/*----INVENTORY STYLES - KEEP AT BOTTOM OF CSS----*/





/*---------- RESPONSIVE STYLES ----------*/

@media only screen and (max-width: 1300px) {
	.header-wrap .btn-row.flex {flex-shrink: unset; flex-wrap: wrap; justify-content: flex-end;}
	
	.inv.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 1100px) {
	.header-wrap .btn-row.flex, .header-wrap .header-social {display: none;}
	.main-header.flex {padding: 0 20px;}
	
	.welcome .flex {flex-wrap: wrap;}
	.welcome .img-aside {width: 90%;}
	.welcome .welcome-text {width: 90%; margin-left: auto; margin-top: -50px;}
	
	.contact-form.flex {flex-wrap: wrap;}
}

@media only screen and (max-width: 850px) {
	
	.form-flex {flex-wrap: wrap; gap: 20px; padding: 5px 0;}
	
	footer .wid-90.flex {justify-content: center;}
	.footer-right.flex {width: 100%;}
}


@media only screen and (max-width: 700px) {
	.hero {padding: 200px 0 250px;}
	.page-heading {padding: 175px 0 150px;}
	.hero .heading, .page-heading .heading {font-size: 48px;}
	.hero .heading .flavor {font-size: 64px;}
	
	.inv-categories .cat-tile {width: 100%; aspect-ratio: unset; height: 150px;}
}

@media only screen and (max-width: 500px) {
	.heading {font-size: 28px;}
	.sm-heading {font-size: 20px;}
	
	.hero {padding: 200px 0 150px;}
	.hero .heading {font-size: 34px;}
	.hero .heading .flavor {font-size: 48px;}
	
	.white-texture {height: 150px;}
}

@media only screen and (max-width: 450px) {
/*	make buttons full width*/
	.yellow-btn, .green-btn {width: 100%;}
}






