@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400..700;1,400..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Raleway:ital,wght@0,100..900;1,100..900&display=swap');
:root {
    --primary-color: #FFEF8A;
}

:root {
    --primary-color-darker: #FFC240;
}

:root {
    --primary-text-color: #fff;
}

:root {
    --pink-light: #fab1a0;
}

:root {
    --pink-dark: #e17055;
}

:root {
    --secondary-color: #cf000f;
}

:root {
    --text-color: #fff;
}

:root {
    --body-bg: #222;
}

:root {
    --footer-color: #778ca3;
}

:root {
    --footer-color-darker: #4b6584;
}


/* color mode css */

.text-light-mode,
.light-mode,
.text-dark-mode .hours-table td {
    color: var(--text-color) !important;
}

.text-dark-mode,
.dark-mode,
.text-dark-mode .hours-table td {
    color: #fff !important;
}

.hours-bg-light-mode {
    background-color: ar(--text-color);
}

.hours-bg-dark-mode {
    color: #fff;
}

.light-mode #pdf-controls button svg {
    fill: var(--primary-color);
}

.dark-mode #pdf-controls button svg {
    fill: #fff;
}


/*
.light-mode svg {
    fill: var(--text-color);
}

.dark-mode svg {
    fill: #fff;
}
*/

body {
    background: var(--body-bg);
    font-family: "Nunito", sans-serif !important;
}

h1,
h2,
h3,
h4,
h5 {
    font-family: "Nunito", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-weight: 300 !important;
    color: var(--text-color);
}

p {}

* {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbars {
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.hide-scrollbars::-webkit-scrollbar {
    display: none;
}

.container-fluid {
    padding: 0;
}

.row {
    --bs-gutter-x: 0;
    --bs-gutter-y: 0;
    margin-left: 0;
    margin-right: 0;
}

.logo-holder {
    position: absolute;
    z-index: 2000;
    top: 0px;
    left: 8px;
    min-width: 200px;
    height: auto;
}

img.logo {
    max-width: clamp(200px, 26vw, 360px);
    height: auto;
    margin-top: -10px;
    margin-left: 0;
}


/* Inline SVG logo */

.logo-holder svg.logo {
    width: clamp(260px, 32vw, 500px);
    height: auto;
    display: block;
    margin-top: -10px;
    margin-left: 0;
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.55)) !important;
}

img.logo-sm {
    max-width: clamp(120px, 18vw, 200px);
}

.brand-logo {
    width: clamp(200px, 26vw, 360px);
    height: clamp(40px, 7vw, 80px);
    background-color: var(--primary-color);
    display: block;
}

.nav-ico {
    position: absolute;
    z-index: 200;
    top: 30px;
    right: 30px;
}

.nav-ico svg {
    transition: fill 160ms ease;
}

.nav-ico:hover svg {
    fill: #ffffff;
}

.offcanvas-end {
    right: 0;
    left: auto;
    z-index: 3001 !important;
    background: linear-gradient( 300deg, rgba(36, 30, 26, 0.55) 65%, rgba(59, 49, 41, 0.55) 100%);
    /* slightly transparent fallback */
    background-color: rgba(36, 30, 26, 0.95) !important;
}


/* Ensure base offcanvas uses a translucent brown as well */

.offcanvas {
    background-color: rgba(36, 30, 26, 0.95) !important;
}


/* Ensure the backdrop also sits above the reservations button */

.offcanvas-backdrop {
    z-index: 3000 !important;
}

.offcanvas-body .nav-link {
    font-size: 1.125rem;
    line-height: 1.5;
}

.nav-link {
    color: var(--primary-color-darker);
    fill: var(--primary-color-darker);
}

a.nav-link:hover {
    color: #fff;
}

ul.nav-items {
    list-style: none;
}

ul.nav-items li a {
    font-size: 1.8em;
    text-decoration: none;
    line-height: 2;
    font-family: "Nunito", sans-serif;
    color: var(--primary-color-darker);
}

ul.nav-items li a:hover,
ul.nav-items li a:active {
    color: var(--primary-color);
}

.reservations {
    position: absolute;
    width: auto;
    top: 30px;
    right: 100px;
    z-index: 2200;
}

.reservations .btn-custom {
    color: var(--primary-color-darker);
    margin-top: -6px;
}

.reservations a {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    color: var(--primary-color-darker);
    font-size: clamp(0.90rem, 2.2vw, 1.15rem);
    line-height: 1.2;
    padding: clamp(4px, 0.8vw, 6px) clamp(8px, 1.6vw, 12px);
    white-space: nowrap;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.6);
}

.reservations a:hover {
    color: var(--primary-color);
}

.reservations a svg {
    height: 1.85em !important;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.6));
}

video.w-100.h-100 {
    height: 100%;
    object-fit: cover;
}

p {
    font-size: larger;
}

p.text-light {
    color: #fff !important;
}

.quote {
    font-family: 'Lora', serif;
    font-style: italic;
    font-weight: bolder;
    margin: .5em auto;
}

a {
    color: var(--primary-color-darker);
    text-decoration: none;
    cursor: pointer;
}


/* Inline button link style to match Resy/Gift Cards */

.btn-inline {
    color: var(--primary-color-darker);
    transition: color .2s ease-in-out;
}

.btn-inline:hover {
    color: var(--primary-color);
}

a.highlight-link {
    color: var(--primary-color) !important;
}

a.highlight-link:hover {
    color: var(--primary-darker);
}

.bold {
    font-weight: 400 !important;
}

.btn-custom {
    padding: 8px 16px;
    border: 1px solid var(--primary-color)!important;
    background: rgba(0, 0, 0, .7);
    color: var(--primary-color);
    font-family: "Raleway", sans-serif;
    font-size: 1.25em;
    font-weight: bold;
    font-weight: 400;
    letter-spacing: 0.024em;
    text-decoration: none;
    text-align: center;
    cursor: pointer;
    line-height: 1.24em;
    max-width: 420px;
    margin: auto;
    border-radius: 12px;
    display: block;
    transition: background-color 0.3s ease, color 0.3s ease;
    background: none;
    border: none;
}

.btn-custom:hover {
    color: #fff;
    border: 1px solid #fff!important;
    background-color: #241e1a !important;
}

.btn-custom-invert {
    color: #fff;
    border: 1px solid #fff;
    padding: 10px 20px 8px;
    border: 1px solid #fff;
    text-transform: uppercase;
    text-align: center;
    cursor: pointer;
    max-width: 260px;
    margin: auto;
    border-radius: none;
}

.btn-custom-invert:hover {
    color: var(--primary-color);
}

.welcome-section {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 100%;
    min-height: 300px;
}

button:hover:after {
    transform: translate(-10px, -10px);
    width: calc(100% - 10px);
}

button:active:after {
    width: 100%;
}

.bg-2 {
    background-size: cover;
    background-position: center;
    background-repeat: repeat;
    height: 100%;
    min-height: 400px;
    /*   display: flex;  */
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

h4.hours {
    line-height: 1.5;
    color: #fff;
}

h4.text-dark.pt-2 {}

section {
    color: var(--text-color);
    /* Apply the text color using the CSS variable */
}


/* menu page css  */

.menu-overlay {
    position: relative;
    z-index: 2301;
    padding: 2px;
    border-radius: 4px;
    /*   box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);  */
    max-width: 100%;
    max-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

#pdf-controls,
#pdf-controls button {
    color: #fff;
}

#pdf-canvas {
    width: 100%;
    max-width: 100%;
    max-height: 90vh;
    border: none;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.25);
}

@media (max-width: 768px) {
    .menu-overlay {
        position: relative;
        width: 100%;
        height: auto;
        padding: 0;
        border-radius: 0;
        margin: 60px auto;
    }
    .menu-overlay #pdf-canvas {
        width: 100%;
        height: 100%;
    }
    .logo-holder {
        top: 16px;
        left: -20px;
    }
    /* Position the Resy button next to the hamburger icon */
    .reservations {
        top: 26px;
        right: 78px;
    }
}

.btn-pdf:hover svg {
    fill: var(--primary-color-darker) !important;
}

.btn-pdf {
    color: #fff;
}


/* hours and location page */

.hours-bg {
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: .5em;
}

.hours-bg p,
.hours-bg h3.hours,
.hours-bg h1 {
    color: inherit;
    /* Inherit color from parent .hours-bg */
}

.hours-bg.light-mode {
    background-color: rgba(255, 255, 255, 0.7);
    color: #000;
}

.hours-bg.light-mode p,
.hours-bg.light-mode h3.hours,
.hours-bg.light-mode h1 {
    color: inherit;
    /* Inherit color from parent .hours-bg */
}

.hours-container {
    width: 100%;
    max-width: 600px;
}

img.img-fluid.img-header-banner {
    max-height: 30vh;
    object-fit: cover;
}

.hours-container h2 {
    text-align: center;
    font-size: 28px;
    margin-bottom: 10px;
    color: #333;
}

.hours-table {
    width: 100%;
    border-collapse: collapse;
    text-align: center;
}

.hours-table th,
.hours-table td {
    padding: 12px;
    border-bottom: 1px solid #e0e0e0;
    color: var(--text-color);
    font-weight: unset;
}

.hours-table th {
    background: linear-gradient(45deg, rgba(63, 43, 54, 0.5) 0%, rgba(52, 54, 78, 0.5) 35%, rgba(50, 62, 60, 0.5) 67%, rgba(45, 55, 74, 0.5) 97%);
    color: #fff;
    text-transform: uppercase;
    font-weight: unset;
}

.hours-table td {
    font-size: 18px;
}

.hours-table tr:hover {
    background-color: transparent;
}

.today-highlight {
    background-color: rgba(255, 190, 118, .8);
}

.hours-table tr.today-highlight:hover {
    background-color: rgba(255, 190, 118, .8);
}

@media (max-width: 600px) {
    .hours-table td {
        font-size: 16px;
    }
}


/*  footer css  */

..footer-content {
    background: linear-gradient( 300deg, rgba(36, 30, 26, 0.99) 65%, rgba(59, 49, 41, 0.97) 100%);
    background-color: #241e1a;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 20px;
    text-align: center;
    color: #fff;
}

p.footer-copy {
    font-size: unset;
    text-decoration: none;
    color: #b8b8b8;
}

.footer-content a {
    color: var(--primary-color);
    text-decoration: none;
}

.footer-content a:hover {
    color: var(--primary-color-darker)!important;
}


/* Footer paragraph text color */

.footer-content p {
    color: #b8b8b8;
}

@media (min-width: 576px) {
    .offcanvas-end {
        width: 400px;
    }
    img.logo {
        max-width: 320px;
        margin-top: auto;
        padding: 0;
    }
}


/*  parallax effect for web  */

@media (min-width: 768px) {
    .parallax {
        background-attachment: fixed;
    }
}

@media (max-width: 767px) {
    .parallax {
        background-attachment: unset !important;
    }
    .caro-arrows {
        display: none;
    }
}

.top-row {
    height: 100vh;
    /* Full viewport height for the top row */
    display: block;
    /* Remove flexbox if applied to avoid issues */
    overflow: hidden;
    /* Ensure content doesn’t overflow */
}

@media (max-width: 768px) {
    .top-row {
        height: 60vh;
        /* Adjust height for smaller screens */
    }
}

.video-container {
    width: 100%;
    height: 100%;
    /* Ensure the video container takes full height */
    overflow: hidden;
}

.video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensure the video covers the entire container */
    object-position: center;
    /* Center the video content */
}

.video-container video,
.carousel-inner img {
    width: 100%;
    /* Ensure the image takes the full width */
    height: 100%;
    /* Ensure the image takes the full height */
    object-fit: cover;
    /* Keep the aspect ratio and cover the entire container */
    object-position: center;
}

.carousel-item {
    height: 100%;
    /* Ensure carousel items take up the full height */
}

.carousel-inner {
    height: 100%;
    /* Ensure the carousel inner takes up the full height */
}

.carousel {
    height: 100vh;
    /* Ensure the entire carousel takes up the full viewport height */
}

@media (max-width: 768px) {
    .carousel {
        height: 60vh;
        /* Adjust the height for mobile devices */
    }
}

.scroll-to-top {
    position: fixed;
    bottom: 10px;
    right: 10px;
    z-index: 1000;
    color: var(--primary-color-darker);
    fill-opacity: .7;
    border: none;
    cursor: pointer;
    display: none;
    transition: opacity 0.3s ease-in-out;
}

.scroll-to-top:hover {
    fill-opacity: 1;
}

.scroll-to-top.show {
    display: block;
    opacity: 1;
}


/* careers page */

.page-title {
    position: relative;
    z-index: 3;
    padding-top: 6em;
}

.career-wrapper {
    border: 1px solid #fff;
    background-color: rgba(255, 255, 255, .9);
    z-index: 1;
    margin-bottom: 0;
    padding-bottom: 0;
    /* Ensure no extra padding */
    height: auto;
    /* Automatically adjusts based on content */
    width: 100%;
}


/* Background color for light mode */

.light-mode .career-wrapper {
    background-color: rgba(255, 255, 255, 0.9);
}


/* Background color for dark mode */

.dark-mode .career-wrapper {
    background-color: rgba(50, 50, 50, 0.9);
}


/* Ensure padding inside each position-wrapper */

.position-wrapper {
    z-index: 2;
    padding: 10px;
    text-align: left;
    margin-top: 10px;
}


/* Hides empty position wrappers */

.position-wrapper:empty {
    display: none;
}


/* Remove bottom margin from the last visible position-wrapper */

.position-wrapper:not(:empty):last-child {
    margin-bottom: 0;
    /* Remove any bottom margin */
}

.apply-now {
    text-align: right !important;
    padding: .25em;
    margin-top: 1.25em;
    display: inline-block;
}

@media (min-width: 576px) {
    .page-title {
        margin-top: 2em;
    }
    .career-wrapper {
        margin: 10px;
    }
    .apply-now {
        text-align: right;
    }
}

.banner-text {
    background: var(--primary-color);
    color: #2c3e50;
    padding: 2px 6px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    font-size: .95rem;
    line-height: 1.25rem;
}