/*
Theme Name: TheGem Child
Description: Multi-Purpose Wordpress Theme
Author: Codex Themes.
Theme URI: http://codex-themes.com/thegem/
Author URI: http://codex-themes.com/thegem/
Template: thegem
Version: 1.0.0
Tags: one-column, two-columns, left-sidebar, right-sidebar, responsive-layout, custom-background, custom-colors, custom-header, custom-menu, featured-images, flexible-header, full-width-template, theme-options, translation-ready, dark, light
License: GNU General Public License
License URI: license.txt
*/

/* Theme overrides */
address {
	font-style: normal;
}

/*  Anchor link offset */
:target {
  scroll-margin-top: 50px;
}

/* General */
.introduction {
	font-size: 28px;
	line-height: 3rem;
	font-family: "AWConquerorProDidotS-Light", monospace; 
}

@media screen and (max-width: 768px) {
	.introduction {
		font-size: 18px;
		line-height: 2rem;
	}
}

/*  Accordion styling */
.ydb-accordion-container {
	display: flex;
	/* height: 100vh; */
	overflow: hidden;
}

@media screen and (max-width: 991px) {
	.ydb-accordion-container {
		display: block;
	}
}

.ydb-accordion-container p {
	font-size: 2rem;
}

.ydb-accordion-container > h3 {
   color: white;
}

@media screen and (max-width: 991px) {
	.left {
		height: 50%;
		width: 100%;
		max-width: 100%;
	}
}

.ydb-accordion-contents {
	width: 100%;
	display: flex;
	overflow: hidden;
	height: calc(100vh - 75px);
	flex: 1;
	flex-direction: row;
}

@media screen and (max-width: 991px) {
	.ydb-accordion-contents {
		height: 500px;
		width: 100%;
		flex-direction: column;
	}
}

@media screen and (max-width: 991px) {
	.ydb-accordion-contents {
		width: 100%;
	}
}

/* Panels */
.ydb-panel {
	flex: 1;
	position: relative;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	transition: all 0.5s ease;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	filter: grayscale(100%);
	border-right: 1px solid #5c5c5c;
}

@media screen and (max-width: 991px) {
	.ydb-panel {
		border-top: 1px solid #5c5c5c;
		border-right: none;
		transition: all 0.35s ease;
	}
}

.ydb-panel.inactive {
	flex: 0 0 10%;
	cursor: pointer;
}
.ydb-panel.active {
	flex: 1;
	filter: grayscale(0%);
	cursor: default;
}

.ydb-accordion-section-title {
	color: white;
	font-size: 3rem;
	text-transform: uppercase;
	font-family: WTFNouveau-SemiBold;
	letter-spacing: 2.5px;
	margin-bottom: 15px;
}

@media screen and (max-width: 991px) {
    .ydb-accordion-section-title {
        font-size: 2.5rem;
		line-height: 3rem;
    }
}

.ydb-accordion-section-body > p {
    color: white;
    font-family: Inter;
	font-size: 2.5rem;
	font-weight: 400;
	line-height: 3.5rem;
}

@media screen and (max-width: 991px) {
    .ydb-accordion-section-body > p {
        font-size: 1.75rem;
		line-height: 2.5rem;
    }
}

.ydb-accordion-section-cta {
	margin-top: 50px;
}

.ydb-panel.active > .label {
	display: none;
}

/* Overlay layer */
.overlay {
	position: absolute;
	inset: 0;
	background: rgba(0, 0, 0, 0.4);
	transition: background 0.5s ease;
	z-index: 1;
}

@media screen and (max-width: 991px) {
    .overlay {
        background: rgba(255, 255, 255, 0.7);
    }
}

.ydb-panel.active .overlay {
	background: rgba(0, 0, 0, 0.25);
}

.ydb-panel:hover {
	filter: grayscale(0%);
}

/* Rotated label */
.ydb-panel span.label {
	font-family: WTFNouveau-SemiBold;
	position: absolute;
	bottom: 20px;
	left: 70px;
	transform: rotate(270deg);
	transform-origin: left bottom;
	color: #fff;
	font-weight: 200;
	letter-spacing: 2px;
	text-transform: uppercase;
	font-size: 3.1rem;
	z-index: 2;
	white-space: nowrap;
}

@media screen and (max-width: 991px) {
    .ydb-panel span.label {
        color: #000;
    }
}

@media screen and (max-width: 991px) {
	.ydb-panel span.label {
		transform: rotate(0deg);
		top: 12px;
		left: 20px;
		font-size: 1.5rem;
	}
}

/* Additional accordion bottom content */
.panel-contents {
	position: relative;
	z-index: 3;
	display: flex;
	flex-direction: column;
	align-items: flex-end;
	justify-content: flex-end;
	padding: 2rem 4rem 2rem 100px;
	gap: 1.25rem;
	opacity: 0;
	transform: translateY(40px);
	transition: opacity 0.5s ease, transform 0.5s ease;
}

@media screen and (max-width: 991px) {
	.panel-contents {
		padding-left: 1rem;
		padding-right: 2rem;
	}
}

.ydb-panel.inactive > .panel-contents {
	display: none;
	opacity: 0;
	transform: translateY(-10px); /* optional slide effect */
	transition: opacity 0.3s ease, transform 0.3s ease;
}

.ydb-panel.active .panel-contents {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.25s; /* start the fade-in 0.25s later */
}

.placeholder-box {
	width: 80%;
	display: block;
	align-items: end;
	justify-content: flex-end;
	text-align: right;
	color: #fff;
 	font-family: WTFNouveau-SemiBold;
	font-size: 1.8rem;
	margin-bottom: 35px !important;
}

@media screen and (max-width: 991px) {
	.placeholder-box {
		width: 100%;
		max-width: 768px;
		margin-bottom: 21px !important;
	}
}

.panel-contents a {
	background: #332E25;
/* 	background: #000; */
	font-family: WTFNouveau-SemiBold;
	letter-spacing: 2.5px;
	color: #FFF;
	text-decoration: none;
	font-weight: 300;
	letter-spacing: 1px;
	padding: 15px 15px 15px 15px;
	border-radius: 0px;
	transition: background 0.3s ease, color 0.3s ease;
}

.panel-contents a:hover {
	background: #000;
	color: #fff;
}

.ydb-events {
	background-color: #fff5d8;
	height: 500px;
}

.panel-contents {
	display: none;
	transition: opacity 0.35s ease;
}

.panel-contents.is-visible {
	display: flex;
	opacity: 1;
	pointer-events: auto;
}

/* Menu styling */

.res-menu-tab {
    display: inline-block;
	font-family: "WTFNouveau-SemiBold", serif;
    margin: 10px 5px 0px 5px;
    padding: 10px 0;
    cursor: pointer;
    background-color: transparent;
    /* text-transform: uppercase; */
    font-weight: 400;
    font-size: 18px;
    color: #332E25;
    line-height: 25px;
    border-top: 0px;
    border-right: 0px;
    border-bottom: 1px;
    border-left: 0px;
    border-style: solid;
    border-color: #332E25;
    padding: 8px;
	padding-bottom: 10px;
}
        
.res-menu-tab:hover, .res-menu-active-tab {
    color: #332E25;
	padding-bottom: 8px;
	border-bottom: 3px solid #EDC93D;
}

.res-menu-tab-content {
    display: none;
/*     padding: 20px; */
/*     background-color: #ECECE7; */
    /* background-color: #f9f9f9; */
    border: 0px solid #1D3845;
    margin-top: 10px;
}

.res-menu-active-content {
    display: block;
}

.res-menu-tabs {
    display: flex;
    color: pink;
    justify-content: center;
	flex-wrap: wrap;
    width: 100%;
	text-align: center;
	align-items: flex-end;
    /* margin: auto; */
}

.res-menu-tab-contents {
    color: #332E25;
}

.res-menu-note {
    font-style: italic;
    display: flex;
    justify-content: center;
}

.res-menu-section-title {
	font-family: "WTFNouveau-SemiBold", serif;
	margin-top: 50px;
	margin-bottom: 35px;
	text-transform: uppercase;
	font-size: 1.6rem;
}

.bev-table > tbody {
	text-align: left !important;
}

.bev-table {
    width: 100%;
	margin-top: 50px;
    table-layout: fixed;
}

.bev-table > tbody > tr > th {
	padding-left: 0px !important;
}

.bev-table > tbody > tr > td {
	padding-left: 0px !important;
}

.bev-table th:nth-child(2),
.bev-table th:nth-child(3),
.bev-table th:nth-child(4),
.bev-table td:nth-child(2),
.bev-table td:nth-child(3),
.bev-table td:nth-child(4) {
    width: 55px;
	vertical-align: top;
}


.bev-section-title {
	font-family: "WTFNouveau-SemiBold", serif;
	margin-top: 50px;
	margin-bottom: 35px;
	font-size: 1.6rem;
	text-align: left;
	text-transform: uppercase;
}

.bev-col-title {
	font-family: "WTFNouveau-SemiBold", serif;
	margin-top: 50px;
	margin-bottom: 35px;
	font-size: 1.4rem;
	text-align: left;
}

.res-menu-section-note {
    font-style: italic;
	margin-top: -20px;
}

.res-menu-section-divider {
	border-bottom: 2px solid #332E25;
	margin: 40px 0;
}

.res-menu-container {
    max-width: 1200px;
    margin: auto;
}

.res-menu-items {
    display: grid;
    row-gap: 35px;
    grid-template-columns: 1fr; 
}

@media (min-width: 768px) {
    .res-menu-items {
        grid-template-columns: 1fr 1fr;
        column-gap: 60px;
    }
}

.res-menu-item {
    display: flex;
    justify-content: space-between;
}

.res-menu-item-header {
	display: flex;
}

@media (max-width: 920px) {
	.res-menu-item-header {
		display: block;
	}
}

.res-menu-item-title {
    font-family: "AWConquerorProDidotS-Bold", monospace; 
	font-size: 1.8rem;
	font-weight: 600;
	text-transform: uppercase;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
}

.bev-title {
	font-family: "AWConquerorProDidotS-Bold", monospace; 
	font-size: 1.8rem;
	font-weight: 600;
	text-transform: uppercase;
}

.res-menu-item-dietary {
	font-family: "WTFNouveau-SemiBold", serif;
	font-size: 1.3rem;
	display: flex;
	flex-direction: column;
	justify-content: flex-end;
	height: 100%;
	margin-left: 10px;
	position: relative;
    top: 3px;
}

@media (max-width: 920px) {
	.res-menu-item-dietary {
		margin-left: 0px;
	}
}

.res-menu-item-ingredients {
/* 	font-family: "AWConquerorProDidotS-Light", monospace;  */
	font-size: 1.2rem;
    font-style: italic;
}

.bev-detail {
	font-size: 1.2rem;
    font-style: italic;
	display: inline;
}

@media (max-width: 920px) {
	.bev-detail {
		display: block;
	}
}

.res-menu-item-price, .menu-item-price {
	font-family: "AWConquerorProDidotS-Bold", monospace; 
	font-size: 1.7rem;
	margin-left: 20px;
}

.bev-price {
	font-family: "AWConquerorProDidotS-Bold", monospace; 
	font-size: 1.7rem;
}

.res-menu-item-options-label {
	font-size: 1.2rem;
	font-weight: 700;
}

.res-menu-item-options {
    display: flex;
}

.res-menu-item-option-label {
	font-size: 15px;
	font-style: italic;
}

.res-menu-item-option-price {
	font-family: "AWConquerorProDidotS-Bold", monospace; 
	font-size: 1.5rem;
	margin-left: 15px;
}

.res-menu-dietary-footer-detail {
	font-size: 15px;
	font-style: italic;
}

.res-menu-dietary-footer-detail > p {
	margin-bottom: 0px;
}

.res-menu-dietary-footer-indicator {
	font-family: "WTFNouveau-SemiBold", serif;
	font-size: 1.3rem;
}


/* Event styling */

.event-expired-banner {
  background: #f4f1ec;
  color: #332e25;
  padding: 16px 20px;
  margin: 0 0 24px;
  border-left: 4px solid #edc93d;
  font-size: 1.3rem;
}
