@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Luckiest+Guy&display=swap');

:root {
	--blue: #005b96;
	--orange: #f6a600;
	--white: #f5f5f2;
}

* {
	margin: 0;
	box-sizing: border-box;
}

body {
	font-family: "Lato", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 20px;
	background-color: var(--blue);
	color: var(--white);
}

a {
	color: var(--white);
}

p{line-height: 1.75; margin-bottom: 20px;}

body.is-preload .hero {
	opacity: 0;
	transform: translateY(20px);
}

body.landing:not(.is-preload) .hero {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.5s ease;
}

ul {
	list-style: none;
	margin: 0px;
}

.desktop-only { display: flex!important;}
.mobile-only { display: none!important;}
.flex-row {display: flex; flex-direction: row;}
.gutter {padding: 0 100px;}

.custom-section{margin-top: 70px; background-color: #f4f3e7; padding-top: 50px; padding-bottom: 30px;}

.luckiest-guy-regular {
  font-family: "Luckiest Guy", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media screen and (max-width: 768px) {
	.custom-section{margin-top: 20px; padding-top: 0;}
	.desktop-only {display: none!important;}
	.mobile-only { display: flex!important;}
	.flex-row { flex-direction: column;}
	.gutter { padding: 0 20px;}
}

.new-btn-orange{
	background: #fe6b00;
	box-shadow: 4px 6px 0px var(--orange);
}
.new-btn-light-orange{
	background: orange;
	box-shadow: 4px 6px 0px #efe697;
}
.btn {
	outline: 2px solid white;
	color: var(--white);
	padding: 0.9375em 3.75em 0.8125em;
	text-transform: uppercase;
	border-radius: 1000px;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	transition: all 0.3s ease-in-out;
	font-weight: 900;
	display: block;
	width: fit-content;
	margin: 0 auto;
	font-size: 17px;
}

h1,
h2,
h3,
h4 {
	font-weight: normal;
}

/* Catering and careers */
.special-heading {
	letter-spacing: 1px;
	text-transform: uppercase;
	margin-bottom: 30px !important;
	font-size: 15px !important;
}

#catering,
#careers {
	padding-top: 70px;
	padding-bottom: 50px;
	scroll-margin-top: 70px; /* Force catering anchor up to account for fixed header */
}

#catering img, #careers .desktop-only img {
	transition: all 0.2s ease-in-out;
}

#catering img:hover, #careers .desktop-only img:hover {
	transform: translateY(-5px);
}

#catering {background-color: #d8e5d6; margin-top: 70px;}
#careers {background-color: #f4f3e7;}

#blog  {padding: 0 100px; padding-top: 70px;
	padding-bottom: 30px;}

@media screen and (max-width: 768px) {
	#blog  {padding: 0 20px; background-color: #f4f3e7; padding-top: 70px; padding-bottom: 70px;}

	#catering  {margin-top: 50px; scroll-margin-top: 50px;}

	#careers { margin-top: 0px; scroll-margin-top: 50px;}
}
.row-div-container > div {
	flex: 1;
}
#catering h2, #careers h3 {
	font-size: 40px;
	font-weight: lighter;
	margin-bottom: 20px;
	line-height: 1.3;
}

@media screen and (max-width: 768px) {
	#catering h2, #careers h3 {font-size: 40px;}
}

#catering p, #careers p {
	margin-bottom: 15px;
  font-size: 18px;
  line-height: 1.75;
}

@media screen and (max-width: 768px) {
	#catering p, #careers p { font-size: 16px; line-height: 26px;}
}

#catering img,
#careers img {
	width: 100%;
	border-radius: 15px;
}
/* End Catering and careers */

/* FAQs */
#faqs {
	margin-top: 70px;
	background-color: #d8e5d6;
	padding-top: 50px;
	padding-bottom: 30px;
}
.faqs-div-container {
	gap: 50px;
}

@media screen and (max-width: 768px) {
		#faqs {
		scroll-margin-top: 50px;}
	.faqs-div-container {
		gap: 0px;}
}

.faqs-div-container > div {
	flex: 1;
}
#faqs img {
	width: 100%;
}

.faqs-accordion {
	background-color: transparent;
	color: #00473c;
	cursor: pointer;
	padding: 15px 0px;
	width: 100%;
	text-align: left;
	outline: none;
	font-size: 18px;
	transition: 0.4s;
	font-weight: bold;
	border: 0px;
	transition: 0.4s;
}

.faqs-accordion:after {
	content: "\002B";
	color: #00473c;
	font-weight: bold;
	float: right;
	margin-left: 5px;
}

.faqs-panel {
	padding: 5px 0px 0px 0px;
	max-height: 0px;
	padding-bottom: 0px;
	overflow: hidden;
	transition: all 0.2s ease-out;
	border-bottom: 1px dotted grey;
}

.faqs-active + .faqs-panel {
	max-height: fit-content;
	padding-bottom: 20px;
}

.faqs-active:after {
	content: "\2212";
}

/* Our Mission */
#our-mission {
	margin-top: 70px;
	background-color: #d8e5d6;
	padding-top: 50px;
	padding-bottom: 75px;
}
@media screen and (max-width: 768px) {
	#our-mission {margin-top: 20px;}
}
.our-mission-div-container {
	gap: 50px;
}
.our-mission-div-container > div {
	flex: 1;
}
#our-mission h1 {
	font-size: 50px;
	font-weight: lighter;
	margin-bottom: 30px;
	line-height: 50px;
}

#our-mission p {
	margin-bottom: 15px;
	font-size: 20px;
	line-height: 25px;
}

@media screen and (max-width: 768px) {
	#our-mission h1 {font-size: 40px; line-height: 50px;}
	#our-mission p { font-size: 16px; line-height: 26px;}
}

#our-mission img {
	max-height: 500px;
	border-radius: 1.25rem;
	padding: 10px;
}

@media screen and (max-width: 768px) {
	#our-mission img {width: 100%;}
}

/* End Our Mission */

/* Menu page */
.menu-page-green-btn {
	padding: 10px 20px; text-align:center; cursor: pointer; background-color: #00473c; color: #e6ff55; border-radius: 1000px;
}

#menu-page h2{margin-top: 50px; text-align: left;}
@media screen and (max-width: 768px) {
	#menu-page h2{text-align: center;}
}
/* @media screen and (max-width: 768px) {
	.desktop-only {display: none;}
	.mobile-only { display: flex;}
	.flex-row { flex-direction: column;}
	.gutter { padding: 0 20px;}
} */

.privacy-policy {margin: 100px 0px;}

.privacy-policy p {margin-bottom: 10px;}

.privacy-policy h2, .privacy-policy h3, .privacy-policy h4 {
	margin-top: 25px;
	font-style: normal;
  	font-size: 24px;
}

.privacy-policy ul {
	padding: 0px 25px;
	margin-bottom: 15px;
}

.privacy-policy ul li::before {
  content: "⬤";
  margin-right: 10px;
  color: #00473c;
  font-size: 10px;
}

.privacy-policy ul li {
	display: flex;
  	align-items: center;
}

.m-gap-30{gap:30px;}
@media screen and (max-width: 768px) {
	.m-gap-30{gap:0px;}
}

.basic-link {color: black;}
.basic-link:hover {color:#00473c;}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.grecaptcha-badge{display: none!important;}

.social-images-grid{
	display: grid;
	grid-gap: 21px;
	margin-bottom: 56px;
	grid-template-columns: repeat(6, 1fr);
}
@media (max-width: 768px) {
	.social-images-grid{
		grid-template-columns: repeat(2, 1fr);
	}
}