.big-title {
    font-family: "veneer", sans-serif;
    text-transform: uppercase;
}
h1.big-title {
    font-size: 6rem;
    line-height: 6rem;
}
h2.big-title {
    font-size: 4.5rem;
    line-height: 4.5rem;
}
h3.big-title {
    font-size: 3rem;
    line-height: 3rem;
}
.condensed-title {
    font-family: "Sofia Sans Condensed", sans-serif;
    text-transform: uppercase;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-family: "Sofia Sans", sans-serif;
}

a:focus, a:hover {
    color: unset;
}

body {
    font-family: "Sofia Sans", sans-serif;
}

a:not(.btn) {
    text-decoration: underline;
}

main {
    position: relative;
}

nav.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 120px;
    z-index: 100;
    background: transparent;
    color: white;
    transition: background 0.3s ease-in-out;
}
nav.navbar.scrolled, nav.navbar.sticky {
    background: black;
}
nav.navbar.sticky {
    position: sticky;
}

nav .dropdown-toggle::after {
    border: none;
    content: '\f107';
    font-family: "Font Awesome 5 Pro";
    font-size: 80%;
    transform: translateY(4px);
}

.navbar-brand img {
    width: 100px;
    height: auto;
}

#navbar-content a {
    white-space: nowrap;
    text-transform: uppercase;
    text-decoration: none;
}
#navbar-content .nav-item .nav-link {
    font-size: 1.25rem;
    font-weight: 700;
    font-family: "Sofia Sans Condensed", sans-serif;
    color: white;
}

#mobile_menu {
    padding-left: 0;
    position: fixed;
    background: black;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: white;
    width: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 99;
    transition: all 0.5s ease-in;
    transform: translateY(-100%);
}
#mobile_menu li {
    padding-left: 0;
    list-style: none
}
#mobile_menu a {
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Sofia Sans Condensed", sans-serif;
    color: white;
}

#mobile_menu.active {
    transition: all 0.25s ease-in;
    transform: translateY(0);
}

#mobile_menu.active a i {
    opacity: 0;
    transition: opacity 0.25s ease-in;
}


footer {
    background-color: black;
    color: white;
}

.font-weight-medium {
    font-weight: 500;
}

#catering-hero {
    position: relative;
}
.hero-img {
    position: relative;
}
.hero-img:after {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    height: 100%;
    width: 100%;
    background: linear-gradient(180deg,
    rgba(0, 0, 0, 0.6) 20.06%,
    rgba(0, 0, 0, 0.4) 80.03%,
    #000000 100%);
    z-index: 1;
}
.hero-img > * {
    height: 100vh;
    width: 100%;
    object-fit: cover;
    background: dimgray;
}
.hero-img.short > * {
    height: 800px;
    max-height: 100vh;
}

.hero-content-catering {
    transform: translateY(-50%);
    background: white;
    padding: 3rem;
    border-radius: 10px;
    position: relative;
    z-index: 2;
}

.btn {
    font-family: "termina", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
.btn-lg {
    font-size: 1rem;
    padding: 0.75rem 1.25rem;
}
.btn-outline-primary {
    border-width: 3px;
    color: white;
}

.btn:not(.rounded) {
    border-radius: 0;
}

.btn-black {
    background-color: black;
    color: white;
}
.btn-black:hover, .btn-black:active {
    background-color: var(--primary);
    color: white;
}

.bg-orange {
    background-color: #FF9C13;
}

.popular-tag {
    display: inline-flex;
    align-items: center;
    background-color: #FF9C13;
    font-family: "veneer", sans-serif;
    text-transform: uppercase;
    padding: 0.125rem 0.5rem;
    transform: rotate(-5deg);
}
.popular-tag:before {
    content: '\f005';
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
    font-size: 0.7rem;
    margin-right: 0.25rem;
    margin-left: -0.4rem;
}

.package-headcount {
    font-family: termina, sans-serif;
    line-height: 1rem;
    font-weight: 500;
}
.package-headcount:before {
    content: '\f500';
    font-family: "Font Awesome 5 Pro";
    font-weight: bold;
    margin-right: 0.5rem;
}

.center-line {
    position: relative;
}
.center-line:before {
    position: absolute;
    content: '';
    top: 50%;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
}
.center-line > * {
    position: relative;
    z-index: 1;
    display: inline-block;
    margin-left: auto;
    margin-right: auto;
    background-color: #fefaf1;
    padding: 0 2rem;
}

.badge {
    padding: 0.3rem 0.6rem;
}

.gluten-free, .vegetarian {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    position: relative;
    font-size: 75%;
    width: 1.5rem;
    aspect-ratio: 1;
    cursor: help;
}
.gluten-free:before, .vegetarian:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 1.5rem;
    aspect-ratio: 1;
    border: 1px solid black;
    border-radius: 100%;
}
.gluten-free > *, .vegetarian > * {
    display: inline-block;
    transform: scale(0.7);
}

#faq {
    background-color: black;
    color: white;
    font-family: "termina", sans-serif;
}

.faqs-section [data-bs-toggle="collapse"] {
    color: var(--secondary);
    font-weight: 600;
    font-size: 1.25rem;
    text-decoration: none;
}

.faqs-section [data-bs-toggle="collapse"] div {
    position: relative;
}
.faqs-section [data-bs-toggle="collapse"] div:before {
    position: absolute;
    color: var(--secondary);
    content: '\f068';
    font-family: "Font Awesome 5 Pro";
    font-weight: 600;
    font-size: 1rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
}
.faqs-section [data-bs-toggle="collapse"].collapsed div:before {
    content: '\f067';
}
.faqs-section .collapse a {
    text-decoration: underline;
}
.faqs-section .collapse:not(.show) + div {
    border-bottom: 1px solid #707070;
    opacity: 0.25;
}
.faqs-section .faq-question {
    border-bottom: 1px solid var(--primary);
}

.catering-category {
    margin-bottom: 3rem;
    margin-top: 3rem;
}

#footer-links {
    padding-top: 3rem;
    padding-bottom: 3rem;
}
#footer-links h3 {
    color: var(--primary);
    font-family: "termina", sans-serif;
    font-weight: 400;
    margin-bottom: 1rem;
}
#footer-links ul {
    margin-left: 0;
    margin-bottom: 0;
}
#footer-links li {
    margin-bottom: 0.5rem;
}
#footer-links li a {
    font-size: 1.2rem;
    color: white;
    text-decoration: none;
}

#footer-end {
    opacity: 0.75;
}

.cart-item h3 {
    font-size: 1rem;
    line-height: 1;
}

.button-group.tip .button.hollow {
    text-decoration: none;
}

#submit-order .cell label {
    width: 100%;
}

a[onclick="toggleNotes()"] {
    margin-top: 1rem;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.cart_btn {
    position: fixed;
    right: 10px;
    top: 130px;
    z-index: 1001;
}

.off-canvas.is-transition-overlap {
    z-index: 1002;
}

.js-off-canvas-overlay {
    z-index: 1000;
    background: hsla(0, 0%, 0%, 0.75);
}

.cater_cart_header {
    padding: 15px;
    background: #252525;
    color: #fefefe;
}

.item.cater form fieldset:hover {
    border: 1px solid #357516;
    background: #e49a10;
    cursor: pointer;
    transition: all 0.5s ease-in-ease-out;
}

.cater_menu h1 {
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    text-transform: none;
    font-size: 24px;
    color: #252525;
}

.cater_menu h2 {
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    margin-top: 15px;
}

.cater_menu label {
    margin: 5px 0;
    font-size: 14px;
    text-transform: none;
    color: #252525;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.cater_menu .tooltip .tooltiptext {
    padding: 10px;
    width: 250px;
    z-index: 1205;
    top: 100%;
    left: 50%;
    margin-left: -125px;
}

.cater_menu hr {
    border-bottom: 1px solid #E6E5D8;
}

.cater_menu hr.small {
    margin: 10px;
}

.cater_menu [type='radio'] {
    margin: 0;
    margin-right: 0.5rem;
}

.cater_menu_item {
    border: 1px dashed #8a8c8e;
    padding: 15px;
    margin-bottom: 20px;
    background-color: transparent;
    box-shadow: 0 0 0 0 rgba(153,153,153,0.35);
    transition: all 0.5s ease-in;
    border-radius: 12px;
    position: relative;
    padding-bottom: 50px;
}

.cater_menu_item.black {
    background: #151515;
    border: none;
    color: #fefefe !important;
    padding: 15px;
    margin-bottom: 20px;
    transition: all 2.5s ease-in;
    position: relative;
    padding-bottom: 50px;
}

.cater_menu_item.black::after {
    content: '';
    position: absolute;
    border: 1px dashed #fefefe;
    margin: 3px;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    border-radius: 10px;
}

.cater_menu_item:hover {
    border: 1px dashed #357516;
    cursor: pointer;
    background-color: #fafafa;
    transition: all 2.5s ease-in-ease-out;
    box-shadow: 0 2px 20px 0 rgba(153,153,153,0.35);
}

.cater_menu_item.black:hover {
    border: 1px solid #357516;
    background: #252525;
    transition: all 2.5s ease-in-ease-out;
    cursor: pointer;
}

.cater_menu_item.black.not-clickable::after {
    pointer-events: none;
}

.cater_menu_item h2 {
    font-family: 'Rubik', sans-serif;
    font-weight: 600;
    text-transform: none;
    font-size: 18px;
    letter-spacing: 0.5px;
}

.cater_menu_item h2.thin {
    font-weight: 400;
}

.cater_menu_item h2.thin span.small {
    font-size: 10px;
    font-weight: 600;
}

.position-right {
    top: 0;
    right: 0;
    height: 100%;
    overflow-y: auto;
    width: 324px;
}

.off-canvas.is-transition-overlap {
    z-index: 1002;
}

.js-off-canvas-overlay {
    z-index: 1000;
    background: hsla(0, 0%, 0%, 0.75);
}

.cart-item-price {
    font-size: 1rem;
}

.cart-item div {
    font-size: 0.8rem;
}

.cart-item div.subheader {
    margin-top: 0.2rem;
    margin-bottom: 0;
    font-size: 12px;
    font-weight: normal;
    line-height: 1.4;
    font-weight: 600;
}

.subheader:before {
    content: '-';
    padding-right: 10px;
}

.cart-item li {
    font-size: 0.8rem !important;
}

.cater_total h2, .gift_card_total h2 {
    font-family: 'Heebo', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 15px;
    letter-spacing: 0.8px;
    margin-bottom: 16px;
    margin-top: 15px;
}

.cater_total.review label, .gift_card_total.review label {
    font-family: 'Heebo', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
    font-size: 10px;
    margin-bottom: 0px;
}

.cater_total p.small, .gift_card_total p.small {
    font-size: 10px;
    margin-top: 5px;
}

.button-group.tip .button span.small {
    font-size: 12px;
    display: block;
}

.button-group.tip .button.hollow {
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #27ae60;
    color: #27ae60;
}

.button-group.tip .button.hollow:hover, .button-group.tip .button.hollow.active {
    font-size: 20px;
    font-weight: 600;
    border: 2px solid #27ae60;
    color: #fefefe;
    background: #27ae60;
}

.cart-item-remove {
    cursor: pointer;
    color: red;
}

.cart-item-edit {
    cursor: pointer;
    color: #3F51B5;
}

.cart-item-corner {
    position: absolute;
    top: -5px;
    right: 0;
}

.off-canvas.cater_menu .close-button {
    position: absolute;
    color: #fefefe;
    cursor: pointer;
    margin-top: 10px;
}

#cart_btn button {
    font-family: "termina", sans-serif;
    font-weight: bold;
    text-transform: uppercase;
    background-color: #ff9c13;
    color: black;
}

#job-listings p, #gift-cards p {
    font-family: "termina", sans-serif;
    font-size: 1.25rem;
}

.hero-content-center {
    position: absolute;
    left: 0;
    width: 100%;
    top: 50%;
    transform: translateY(-50%); /* not exactly center, account for the title bar */
    z-index: 3;
}

.v-margin {
    margin-top: 100px;
    margin-bottom: 100px;
}
.v-padding {
    padding-top: 100px;
    padding-bottom: 100px;
}

#job-form .row > div > label, #contact-form .row > div > label {
    width: 100%;
    margin-bottom: 0;
}

#job-form label, #contact-form label {
    font-family: "Sofia Sans", sans-serif;
    font-size: 1rem;
}
#job-form input.form-control, #job-form .form-select, #contact-form input.form-control, #contact-form .form-select {
    height: 3.5rem;
    border: 1px solid black;
    border-radius: 0;
}
#job-form textarea, #contact-form textarea {
    border: 1px solid black;
    border-radius: 0;
}

#email-club {
    background-color: black;
    color: white;
}
#email-club label {
    color: white;
    width: 100%;
}

#locations-list {
    background-color: black;
}
.location-card {
    border-radius: 1rem;
    background-color: #fefaf1;
    overflow: hidden;
}
.location-card h3 {
    font-size: 4rem;
    color: white;
}
.location-card-img {
    position: relative;
    height: 17rem;
    width: 100%;
    background-size: cover;
}
.location-card-img:before {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    bottom: 0;
    content: '';
    background: rgba(0, 0, 0, 0.3);
}
.location-card-img > * {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
#locations-list .location-card-links, #locations-list .location-card-links a {
    font-family: "termina", sans-serif;
    font-weight: 600;
    color: black;
    text-decoration: underline;
    text-wrap: nowrap;
}
.location-card-links > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
}

.circle-text {
    position: relative;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    /*background: #ccc; */
    display: flex;
    justify-content: center;
    align-items: center;
    font-family: "termina", sans-serif;
    overflow: hidden;
}
.circle-text .image {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}
.circle-text .text {
    position: absolute;
    width: 100%;
    height: 100%;
    animation: textRotation 8s linear infinite;
}

#location-info {
    font-family: "termina", sans-serif;
    background-image: url('/images/frontend-v2/location-flame-bg.png');
    background-color: black;
    background-size: cover;
    background-position: center;
    color: white;
}
.location-section-1 {
    font-size: 1.3rem;
}
.location-section-1 a {
    color: white;
}
.location-section-2 {
    font-size: 1.1rem;
}
.location-section-3 {
    font-size: 1rem;
    color: white;
}

#location-ribbon {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: clamp(0.6rem, 1.2vw, 1.25rem);
    line-height: clamp(1rem, 1.2vw, 1.25rem);
    padding: 1rem;
    pointer-events: none;
}
#location-ribbon i {
    font-size: clamp(0.5rem, 0.8vw, 1.25rem);
    line-height: clamp(0.5rem, 0.8vw, 1.25rem);
    opacity: 0.8;
}

#location-hours span {
    white-space: nowrap;
}

.subtitle {
    font-family: "termina", sans-serif;
    font-size: 1.25rem;
    color: var(--primary);
    text-transform: uppercase;
}
#location-content p {
    font-family: "termina", sans-serif;
    font-size: 1.3rem;
}

#location-reviews .review {
    background-color: white;
    max-width: 100%;
    border-radius: 10px;
    padding: 4rem 3rem 3rem;
}
#location-reviews .quote {
    font-family: "termina", sans-serif;
    font-size: 1.1rem;
}
#location-reviews .quote:before {
    content: '“';
}
#location-reviews .quote:after {
    content: '”';
}
#location-reviews .source {
    text-decoration: underline;
    font-family: "termina", sans-serif;
    font-size: 1rem;
}
#location-reviews .popular-tag {
    font-size: 2rem;
    padding: 0.125rem 0.75rem;
    position: absolute;
    top: -1rem;
    left: 0;
    z-index: 1;
}
#location-reviews .popular-tag:before {
    font-size: 1.5rem;
    content: '\f004';
}
#location-reviews .slick-slide {
    margin-left: 1rem;
    margin-right: 1rem;
}

#location-reviews .slider-prev, #location-reviews .slider-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 3rem;
    font-size: 2rem;
}
#location-reviews .slider-prev {
    left: 0;
}
#location-reviews .slider-next {
    right: 0;
}

#menu-location-selector .btn {
    font-family: "Sofia Sans Condensed", sans-serif;
    font-weight: bold;
    font-size: 1.25rem;
    text-transform: uppercase;
}
#menu-location-selector .btn.active {
    background-color: white;
    border-color: white;
    color: black;
}

@keyframes textRotation {
    to {
        transform: rotate(360deg);
    }
}

#menu-nav {
    position: sticky;
    top: 120px;
    background: black;
    color: white;
    border-top: 1px solid white;
    z-index: 9;
}
#menu-nav a:not(.dropdown-item) {
    color: white;
    text-decoration: none;
    text-transform: uppercase;
    font-family: "Sofia Sans Condensed", sans-serif;
    font-size: 1.25rem;
}

.container-small {
    max-width: 800px;
}

#home-menu, #home-reviews, #home-locations {
    background: black;
    color: white;
    position: relative;
    overflow: hidden;
}
#home-menu > .container {
    max-width: 600px;
    min-height: 700px;
    position: relative;
    z-index: 9;
}
#home-menu .decoration {
    position: absolute;
    z-index: 1;
}

.btn-yellow {
    background: #FF9C13;
    border-color: #FF9C13;
    color: var(--dark);
}
.btn-yellow.active {
    background: white;
    border-color: white;
}
#location-tab {
    border-bottom: 0;
    justify-content: center;
}
#location-tab .btn {
    font-family: "Sofia Sans Condensed", sans-serif;
}
#location-tabs .home-location-card {
    border-radius: 1rem;
    background: #FEFAF1;
    color: black;
}
.home-location-card .btn {
    width: 15rem;
}

@keyframes fade-in {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.menu-list {
    animation: fade-in 0.3s ease-in;
    columns: 2;
    column-gap: 3rem;
}
.menu-list section {
    break-inside: avoid;
    margin-bottom: 3rem;
}
.menu-list figure {
    margin-bottom: 1rem;
}
.menu-list figure p {
    margin-bottom: 0.25rem;
}

.menu-title-container {
    height: 15rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: black;
    background-size: cover;
    background-position: center;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}
.menu-title-container:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}
.menu-title-container * {
    z-index: 2;
}
.menu-title-container h3 {
    font-size: 3.5rem;
    font-family: "Sofia Sans Condensed", sans-serif;
    text-transform: uppercase;
    margin-bottom: 0;
    text-shadow: 0 4px 4px rgba(0, 0, 0, 0.25);
}
.menu-title-container div {
    font-size: 0.9rem;
    font-style: italic;
    position: absolute;
    left: 0.5rem;
    bottom: 0.25rem;
    pointer-events: none;
}

.location-card-img .phone-link {
    color: white;
    font-family: "termina", sans-serif;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: inline-block;
    font-size: 1.25rem;
}

.options-container {
    padding: 2rem 1rem 1rem;
    border: 1px solid black;
    border-radius: 15px;
    position: relative;
}
.options-container-title {
    position: absolute;
    top: 0;
    left: 0;
    background: #fff9f0;
    z-index: 1;
    display: block;
    padding: 0 0.5rem 0.5rem 0;
    margin-top: -1px;
    margin-left: -1px;
    font-size: 1.1rem;
    color: var(--primary);
}

.menu-featured-item {
    background: black;
    color: white;
    padding: 1rem;
}

@media (max-width: 767px) {
    .v-margin {
        margin-top: 2rem;
        margin-bottom: 2rem;
    }

    .v-padding {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    #home-menu .decoration {
        opacity: 0.5;
    }

    .menu-list {
        columns: 1;
    }
}
