@charset "utf-8";
/* CSS Document */

/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

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, 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,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}

:root {
	--yellow: #fbb040;
	--maroon: #7c404e;
}

html, body {
	box-sizing: border-box;
}

body {
	display: flex;
}

strong {
	font-weight: 700;
}

em {
	font-style: italic;
}

.flexContainer {
	width: 100%;
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
	margin: 40px 0;
}

.flexHeader {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	position: relative;
	box-sizing: border-box;
	
	font-family: "Montserrat", sans-serif;
}

.flexHeader .col1 {
	width: 100%;
	height: 70px;
	margin-top: 15px;
	background-color: var(--yellow);
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
}

.flexHeader .col2 {
	height: auto;
	margin: 0px 20px;
}

.flexHeader .col2 img {
	display: block;
	width: 250px;
	/*max-width: 500px;*/
	filter: drop-shadow(0px 0px 120px rgba(255,255,255,1));
}

.flexHeader .col3 {
	width: 100%;
	height: 70px;
	margin-top: 15px;
	background-color: var(--yellow);
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	color: #fff;
}



.flexHeader .col3 div:nth-child(1) {
	width: 100%;
	height: auto;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-self: center;
	position: relative;
	margin-bottom: 4px;
	/*line-height: 50px;*/
}

.flexHeader .col3 div:nth-child(1) img {
	margin: 0 5px;
	position: absolute;
	bottom: 0;
	transform: translateX(-7px);
	width: auto;
	height: 50px;
}

.flexHeader .col3 div:nth-child(2) {
	font-size: 12px !important;
	width: 100%;
	height: auto;
	display: flex;
	justify-content: center;
	text-align: center;
	align-self: center;
}

.flexHeader .col3 span {
	width: 50px;
}



.flexHeader .backgroundRibbon {
	width: 90%;
	min-height: 80px;
	background-color: var(--maroon);
	position: absolute;
	z-index: -1;
	top: 40%;
	margin: 0px 40px 0px;
	display: flex;
	align-items: center;
	line-height: 30px;
}

.backgroundRibbon::before, .backgroundRibbon::after {
  content: '';
  width: 30px;
  height: 100%;
  background-color: var(--maroon);
	position: absolute;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25% 50%);
}

.backgroundRibbon::before {
  left: -28px;
}

.backgroundRibbon::after {
  right: -28px;
  transform: scaleX(-1); /* flip horizontally */
}

.flexHeader .backgroundRibbon h3 {
	color: #fff;
	font-size: 20px;
	width: 35%;
	text-align: center;
}

.category {
	width: 100%;
	position: relative;
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	gap: 16px;
	justify-content: space-between;
	box-sizing: border-box;
	padding-top: 120px;
	z-index: 0;
	margin: 30px 0px;
	padding-right: 5%;
	font-family: "Montserrat", sans-serif;
}

.categoryRibbon {
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	width: 90%;
	min-height: 50px;
	padding: 14px 0;
	background-color: var(--maroon);
	position: absolute;
	/*margin: 0px 0px 0px 60px;*/
	z-index: 1;
	top: 0%;
	left: 50%;
	transform: translateX(-50%);
}

.categoryRibbon h3 {
	color: #fff;
	font-family: "Montserrat", sans-serif;
	font-weight: 700;
	font-size: 28px;
}

.categoryRibbon p {
	margin-top: 4px;
	font-family: "Montserrat", sans-serif;
	color: #fff;
	line-height: 20px;
	text-align: center;
	padding: 0 !important;
}

.categoryRibbon .icon {
	width: 70px;
	height: auto;
	z-index: 2;
	position: absolute;
}

.chick {
	max-width: 60px;
}

.categoryRibbon::before, .categoryRibbon::after {
  content: '';
  width: 30px;
  height: 100%;
  background-color: var(--maroon);
	position: absolute;
	clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 25% 50%);
}

.categoryRibbon::before {
  left: -28px;
}

.categoryRibbon::after {
  right: -28px;
  transform: scaleX(-1); /* flip horizontally */
}

.sides {
	text-align: center;
}

.sides h4 {
	font-size: 22px;
	margin: auto;
}

.sides ul {
	width: 80%;
	margin: auto;
	line-height: 24px;
}

.sides ul > li {
	display: inline-block;
	margin: 0;
	padding: 0;
	position: relative;
	font-weight: 700;
}

.sides ul > li:not(:first-child):before {
	/*content: '\2022';*/
	content: '-';
    margin-right: 4px;
	margin-left: 4px;
}



.item {
	width: 42%;
	margin-left: 50px;
	position: relative;
	align-self: center;
}

.item h4 {
	font-size: 22px;
	font-family: "Montserrat", sans-serif;
	line-height: 24px;
}

.item p {
	font-family: "Montserrat", sans-serif;
	font-size: 15px;
	margin-top: 10px;
	line-height: 20px;
}

.item.featured {
	display: flex;
	justify-content: center;
	align-items: center;
	background-color: var(--yellow);
}

.item.featured p {
	margin: 0;
	padding: 4px;
	color: #fff;
}

.special {
	width: 40px;
	height: auto;
	position: absolute;
	left: -45px;
}

.sides .special {
	width: 30px;
	left: -35px;
}

.addOn {
	color: var(--maroon);
}

