/* CSS Document */

/* Global
---------------------------------------------------------------------------- */

body.menu .site-inner,
body.menu-category .site-inner,
body.menu-item .site-inner {
	background: url("../../images/bg-beige-texture.jpg") repeat center top;
	background-size: 1200px auto;
	position: relative;
}
/*
body.menu .site-inner::before,
body.menu-category .site-inner::before {
	background-color: #fff;
	content: '';
	display: block;
	height: 360px;
	left: 50%;
	position: absolute;
	top: 0;
	transform: translateX(-50%);
	width: 100vw;
	z-index: 0;
}
*/
body.menu .site-inner > .wrap,
body.menu-category .site-inner > .wrap {
	position: relative;
}

.breadcrumbs {
	color: #0e1144;
	margin-bottom: 10px;
	padding-left: 10px;
}

.breadcrumbs a {
	color: #0e1144;
	display: inline-block;
	font-size: 17px;
	line-height: 1.1;
	margin: 5px;
	position: relative;
	text-decoration: none;
}

.breadcrumbs a:focus,
.breadcrumbs a:hover {
	color: #A69F8B;
}

.breadcrumbs a::after {
	background-color: #0e1144;
	bottom: -1px;
	content: '';
	display: block;
	left: 0;
	height: 1px;
	position: absolute;
	transition: .2s ease-in-out;
	width: 100%;
}

.breadcrumbs a:focus::after,
.breadcrumbs a:hover::after {
	background-color: #A69F8B;
}


/* Menu Navigation
---------------------------------------------------------------------------- */

.menu-nav {
	background-color: #ffc600;
	font-family: pb_signatureregular_text, 'Roboto', sans-serif;
	font-size: 15px;
	padding: 13px 0;
	text-transform: uppercase;
	z-index: 99;
}

body.menu .menu-nav,
body.search .menu-nav {
	box-shadow: 0px 2px 5px rgba(0,0,0,0.2);
	position: sticky;
	top: 0;
}

.menu-nav > .wrap {
	display: grid;
	grid-gap: 0;
	grid-template-areas: 'search nav';
	grid-template-columns: 45px 1fr;
	grid-template-rows: auto;
	position: relative;
}

.menu-nav .search-button {
	grid-area: search;
	font-size: 0;
	padding: 8px 0;
	position: relative;
	z-index: 2;
}

.menu-nav .search-button:focus,
.menu-nav .search-button:hover {
	color: #7F7230;
	cursor: pointer;
}

.menu-nav .search-button::before {
	content: "\f002";
	display: block;
	font-family: 'fontawesome';
	font-size: 20px;
	left: 0;
	line-height: 1;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	transition: color .2s ease-in-out;
}

.menu-nav .search-button.open::before {
	content: "\58";
}

.menu-nav .search-button::after {
	background-color: #001e60;
	content: '';
	display: block;
	height: 100%;
	opacity: .3;
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
}

.menu-nav .search-wrap {
	background-color: #ffc600;
	grid-area: nav;
	opacity: 0;
	pointer-events: none;
	transition: opacity .2s ease-in-out;
	z-index: 2;
}

.menu-nav .search-wrap.visible {
	opacity: 1;
	pointer-events: all;
}

.menu-nav .search-form {
	display: grid;
	grid-template-areas: 'input submit';
	grid-template-columns: 1fr auto;
	grid-gap: 5px 15px;
	height: 100%;
	left: 0;
	position: relative;
}

.menu-nav .search-form .search-form-input {
	border: none;
	font-family: pb_signatureregular_text, 'Roboto', sans-serif;
	font-size: 15px;
	grid-area: input;
	height: 100%;
	left: 0;
	padding: 0 15px;
	position: absolute;
	text-transform: uppercase;
	top: 0;
	width: 100%;
}

.menu-nav .search-form .search-form-submit {
	background-color: #001e60;
	font-family: pb_signatureregular_text, 'Roboto', sans-serif;
	font-size: 15px;
	grid-area: submit;
	margin: 0;
	padding: 0 15px;
	text-transform: uppercase;
}

.menu-nav .search-form .search-form-submit:focus,
.menu-nav .search-form .search-form-submit:hover {
	background-color: #D8AC0E;
}

.menu-nav .swipe {
	grid-area: nav;
	height: 100%;
	position: absolute;
	z-index: 1;
}

.menu-nav .swipe::before {
	background: linear-gradient(to right,  rgba(255,198,0,1) 0%,rgba(255,198,0,0) 100%);
	content: '';
	display: block;
	height: 100%;
	left: -1px;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 30px;
	z-index: 1;
}

.menu-nav .swipe.right::before {
	background: linear-gradient(to right,  rgba(255,198,0,0) 0%,rgba(255,198,0,1) 100%);
	left: auto;
	right: 0;
}

.menu-nav .swipe.left {
	left: 0;
}

.menu-nav .swipe.right {
	right: 0;
}

.menu-nav .swipe a {
	background-color: #ffc600;
	color: #001e60;
	display: block;
	font-size: 0;
	height: 100%;
	left: 0;
	opacity: 0;
	padding: 8px 30px 8px 0;
	position: relative;
	pointer-events: none;
	text-decoration: none;
	transition: all .2s ease-in-out;
	width: calc(100% + 28px);
	z-index: 1;
}

.menu-nav .swipe.right a {
	left: auto;
	padding: 8px 0;
	right: 28px;
}

.menu-nav .swipe a:focus,
.menu-nav .swipe a:hover {
	color: #7F7230;
	cursor: pointer;
}

.menu-nav .swipe a.visible {
	opacity: 1;
	pointer-events: all;
}

.menu-nav .swipe a::before {
	background-color: #ffc600;
	content: '';
	display: block;
	font-family: 'fontawesome';
	font-size: 24px;
	height: auto;
	pointer-events: none;
	position: absolute;
	top: calc(50% + 1px);
	transform: scaleX(.66) translateY(-50%);
	width: auto;
	z-index: -1;
}

.menu-nav .swipe.left a::before {
	content: '\3c';
	left: 22px;
}

.menu-nav .swipe.right a::before {
	content: '\3e';
	right: 0;
}

.menu-nav .swipe a::after {
	background: linear-gradient(to right,  rgba(255,198,0,1) 0%,rgba(255,198,0,0) 100%);
	content: '';
	display: block;
	height: 100%;
	left: 100%;
	pointer-events: none;
	position: absolute;
	top: 0;
	width: 30px;
	z-index: 1;
}

.menu-nav .swipe.right a::after {
	background: linear-gradient(to right,  rgba(255,198,0,0) 0%,rgba(255,198,0,1) 100%);
	left: auto;
	right: 100%;
}

.menu-links {
	display: flex;
	flex-wrap: nowrap;
	grid-area: nav;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	-ms-overflow-style: -ms-autohiding-scrollbar;
	padding: 0;
	position: relative;
	scrollbar-width: none;
}

.menu-links::-webkit-scrollbar {
	display: none;
	scrollbar-width: none;
}

.menu-links .category {
	flex: 0 0 auto;
	position: relative;
	z-index: 0;
}

.menu-links .category::after {
	background-color: #001e60;
	content: '';
	display: block;
	height: 100%;
	opacity: .3;
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
}

.menu-links .category:last-of-type::after {
	display: none;
}

.menu-links a {
	color: #001e60;
	display: block;
	padding: 8px 30px;
	position: relative;
	text-decoration: none;
}

/*.menu-links a::before {
	background-color: #001e60;
	bottom: 6px;
	content: '';
	display: block;
	height: 1px;
	left: 50%;
	opacity: 0;
	position: absolute;
	transform: translateX(-50%);
	transition: all .2s ease-in-out;
	width: 0;
}*/

.menu-links .category.current a {
	font-family: 'pb_signaturebold_text';
	letter-spacing: -.28px;
}

.menu-links a:focus,
.menu-links a:hover {
	color: #7F7230;
}

/*.menu-links a:focus::before,
.menu-links a:hover::before {
	opacity: 1;
	width: calc(100% - 60px);
}*/


/* Menu Archive
---------------------------------------------------------------------------- */

body.menu .section.feature {
	background-color: #000;
	clear: both;
	color: #fff;
	position: relative;
	text-align: center;
	text-shadow: 0 1px 5px rgba(0,0,0,0.2);
}

body.menu .feature img {
	border: none;
	bottom: 0;
	box-shadow: none;
	height: 100%;
	left: 0;
	margin: 0;
	max-height: none;
	max-width: none;
	object-fit: cover;
	opacity: .7;
	outline: none;
	padding: 0;
	position: absolute;
	right: 0;
	top: 0;
	width: 100%;
	z-index: 0;
}

body.menu .feature > div {
	margin-inline: auto;
	max-width: 90%;
	padding: 13vw 0;
	position: relative;
	z-index: 1;
}

body.menu .feature h1 {
	color: #fff;
	font-family: 'pb_signaturebold_display';
	font-size: 90px;
	line-height: 1;
	margin-bottom: 10px;
}

body.menu .feature p {
	font-family: 'pb_special_eliteregular';
	font-size: 48px;
	line-height: 1;
	margin: 0;
}

body.menu .site-inner {
	padding-top: 0;
}

body.menu .content .category,
body.menu-category .archive-description {
	margin-bottom: 50px;
	position: relative;
}

body.menu .content .category {
	padding-top: 80px;
}

body.menu .content .category::after,
body.menu-category .archive-description::after {
	background-color: #ffc600;
	bottom: -18px;
	content: '';
	display: block;
	height: 9px;
	position: relative;
	width: 210px;
}

body.menu .content .category h2,
body.menu-category .archive-title {
	font-size: 48px;
	margin: 0;
}

body.menu .content .category p {
	margin: 5px 0 0;
}


/* Items Listings
---------------------------------------------------------------------------- */

.items {
	margin-bottom: 100px;
}

body.menu .items:not(:last-of-type) {
	margin-bottom: 0;
}

.items hr {
	border-color: #A9A28D;
	margin: 0 auto 65px;
}

.items .loop {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 30px;
}

.items .item {
	display: grid;
	flex: 0 0 calc(25% - ((30px * 3) / 4));
	grid-template-areas: "image" "details" "more";
	grid-template-rows: auto 1fr auto;
	text-align: center;
}

.items .image {
	aspect-ratio: 4/3;
	background-color: #DFE0E5;
	border-top-left-radius: 20px;
	border-top-right-radius: 20px;
	grid-area: image;
	overflow: hidden;
	position: relative;
}

.items .image a {
	display: block;
	height: 100%;
}

.items .item img {
	left: 0;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	transition: transform .3s ease-in-out;
	width: 100%;
}

.items .item img.site-icon {
	height: 80%;
	object-fit: contain;
	opacity: .25;
	top: 10%;
}

.items .item:focus img,
.items .item:hover img {
	transform: scale(1.075);
}

.items .item .details,
.items .item .details a {
	align-items: center;
	background-color: #fff;
	color: #001871;
	display: flex;
	font-family: 'pb_special_eliteregular';
	font-size: 20px;
	grid-area: details;
	justify-content: center;
	line-height: 1.15;
	padding: 15px 10px;
	text-decoration: none;
}

.items .item .details a {
	padding: 0;
}

.items .item .more {
	/*display: grid;*/
	display: flex;
	grid-area: more;
	grid-template-areas: "order details";
	grid-template-columns: repeat(2, auto);
	grid-template-rows: auto;
}

.items .item .more a {
	align-items: center;
	background-color: rgba(0,0,0,0.05);
	color: #001871;
	display: flex;
	flex-wrap: wrap;
	font-family: 'pb_signaturebold_display';
	font-size: 11px;
	font-weight: 400;
	justify-content: center;
	padding: 10px;
	position: relative;
	text-decoration: none;
	width: 100%;
}

.items .item .more a:focus,
.items .item .more a:hover {
	background-color: #ffc600;
}

.items .item .more a.order-online {
	grid-area: order;
}

.items .item .more a.read-more {
	grid-area: details;
}

.items .item .more a.read-more::before,
.items .item .more a.order-online::before {
	background-image: url("../../images/icon-detail.svg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	cursor: pointer;
	content: '';
	display: inline-block;
	height: 18px;
	left: 0;
	line-height: 1.25;
	margin: 5px;
	position: relative;
	width: 18px;
}

.items .item .more a.order-online::before {
	background-image: url("../../images/icon-checkout.svg");
	height: 20px;
	top: -2px;
	width: 18px;
}

/*.items .item .more a.order-online::after,*/
.items .item .more a.read-more::after {
	background-color: #c0bfcb;
	content: '';
	display: block;
	height: 100%;
	position: absolute;
	right: -.5px;
	top: 0;
	width: 1px;
}

.items .item .more a.read-more::after {
	left: -.5px;
	right: 0;
}


/* Single Menu Item
---------------------------------------------------------------------------- */

body.menu-item .entry {
	margin-bottom: 100px;
}

body.menu-item .entry-content {
	display: grid;
	grid-gap: 0 5%;
	grid-template-areas: 'image header' 'image details' '. details';
	grid-template-columns: 50% auto;
}

body.menu-item .entry-content .image {
	grid-area: image;
}

body.menu-item .entry-content .image img {
	border-radius: 30px;
}

body.menu-item .entry-content .entry-title {
	font-size: 48px;
	grid-area: header;
	line-height: 1;
	margin-bottom: 50px;
	margin-top: 30px;
	position: relative;
}

body.menu-item .entry-content .entry-title::after {
	background-color: #ffc600;
	bottom: -14px;
	content: '';
	display: block;
	height: 9px;
	position: relative;
	width: 210px;
}

body.menu-item .entry-content .details {
	grid-area: details;
}

body.menu-item .entry-content .details .base-calories {
	color: #001871;
	font-family: 'pb_special_eliteregular';
}

.cake-disclaimer {
	font-size: 16px;
	font-style: italic;
	margin-bottom: -40px;
	margin-top: 30px;
}


/* Related Items
---------------------------------------------------------------------------- */

.related {
	margin-bottom: 100px;
}

.related hr {
	border-color: #A9A28D;
	margin: 0 auto 65px;
}

.related .loop {
	display: flex;
	flex-wrap: wrap;
	grid-gap: 30px;
}

.related .item {
	flex: 0 0 calc(25% - ((30px * 3) / 4));
	text-align: center;
}

.related .item,
.related .item a {
	color: #001871;
	display: block;
	font-family: 'pb_special_eliteregular';
	font-size: 20px;
	line-height: 1.15;
	transition: opacity .2s ease-in-out;
	text-decoration: none;
}

.related .item a:focus,
.related .item a:hover {
	opacity: .8;
}

.related .item .image {
	aspect-ratio: 4/3;
	background-color: #DFE0E5;
	border-radius: 20px;
	grid-area: image;
	overflow: hidden;
	position: relative;
}

.related .item .image a {
	display: block;
	height: 100%;
}

.related .item img {
	left: 0;
	height: 100%;
	object-fit: cover;
	object-position: center;
	position: absolute;
	top: 0;
	transition: transform .3s ease-in-out;
	width: 100%;
}

.related .item a:focus img,
.related .item a:hover img {
	transform: scale(1.075);
}

.related .item .details {
	margin-top: 10px;
}


/* Media Queries
---------------------------------------------------------------------------- */

@media only screen and (min-width: 768px) {
	
	/*.menu-nav .menu-toggle {
		display: none;
	}
	
	nav.menu-links {
		display: flex !important;
	}*/
	
}

@media only screen and (min-width: 1024px) {

	body.menu .feature > div {
		max-width: 960px;
	}
	
}

@media only screen and (min-width: 1240px) {

	body.menu .feature > div {
		max-width: 1170px;
	}
	
}

@media only screen and (max-width: 1239px) {
	
	.items .item .more a.read-more::before,
	.items .item .more a.order-online::before {
		display: block;
		width: 100%;
	}
	
}

@media only screen and (max-width: 1023px) {
	
	.items .item {
		flex-basis: calc(33% - ((30px * 3) / 4));
	}
	
}

@media only screen and (max-width: 960px) {
	
	body.menu .feature h1 {
		font-size: 75px;
	}
	
	body.menu .feature p {
		font-size: 40px;
	}
	
	.items .item .more a.read-more::before,
	.items .item .more a.order-online::before {
		display: inline-block;
		width: 25px;
	}
	
}

@media only screen and (max-width: 768px) {

	body.menu-item .entry-content {
		grid-template-areas: 'image' 'header' 'details';
		grid-template-columns: auto;
	}
	
	.items .item,
	.related .item {
		flex-basis: calc(50% - ((30px * 1) / 2));
	}
	
}

@media only screen and (max-width: 767px) {
	
	/*nav.menu-links {
		display: none;
	}*/
	
}

@media only screen and (max-width: 600px) {
	
	.menu-nav {
		font-size: 13px;
		padding: 6px 0;
	}
	
	.menu-nav .swipe a {
		display: none;
	}
	
/*	.menu-nav > .wrap {
		grid-gap: 10px 0;
		grid-template-areas: 'search nav' 'searchInput searchInput';
	}
	
	.menu-nav .search-wrap {
		grid-area: searchInput;
	}*/
	
	.menu-nav > .wrap {
		grid-template-columns: calc(20px + 5%) 1fr;
	}
	
	.menu-links .category {
		align-items: center;
		display: flex;
		height: 100%;
		text-align: center;
		width: min-content;
	}
	
	.menu-links a {
		line-height: 1.1;
		padding: 2px 25px;
	}
	
	body.menu .feature h1 {
		font-size: 60px;
	}
	
	body.menu .feature p {
		font-size: 30px;
	}
	
}

@media only screen and (max-width: 450px) {
	
	.items .item,
	.related .item {
		flex-basis: 100%;
	}
	
	.items .item .more a.read-more::before,
	.items .item .more a.order-online::before {
		display: block;
		width: 100%;
	}
	
}