/* CSS Reset */
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 {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif; /* Reset font family to a common value */
    font-size: 16px; /* Reset font size to a common value */
    line-height: 1.5; /* Reset line height to a common value */
}

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;
}

/* Grid Settings */
:root {
    --grid-max-width: 100%;
    --grid-gutter: clamp(0.31rem, calc(-0.14rem + 2.27vw), 1.25rem);
    --grid-columns: 12;
}

.u-container {
    width: 100%;
    max-width: var(--grid-max-width);
    padding-inline: var(--grid-gutter);
    margin-inline: auto;
    box-sizing: border-box;
}


/* Universal Styles */
body {
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    color: #1B2124;
    line-height: 1.5;
    background-size: cover;
    background-image: url('https://imjustkevin.com/images/johnnies/bckgrnd.png');
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

main {
    flex: 1; /* This will push the footer to the bottom */
    display: inline;
    justify-content: center; /* Centers content horizontally */
    align-items: center; /* Centers content vertically */
}

p {
    font-family: 'Raleway', sans-serif;
    font-size: 1rem;
    color:#1B2124
}

h1 {
    margin-bottom: .5rem;
    margin-top: .5rem;
    font-family: 'Alkatra', sans-serif;
    font-size: 4vw;
    line-height: 4.25rem;
    font-weight: 600;
    color: #80309C;
    display: flex;
    flex-direction: column;
}

.h1-wrapper {
text-align: center;
}

h1::before,
h1::after {
    content: "";
    display: flex;
    width: 30vw;
    height: 2vw; /* Adjust the height of the checkerboard pattern */
    margin: 1vw 0; /* Adjust the margin to control the spacing above and below the h1 */
    background: url('https://imjustkevin.com/images/johnnies/checkboard_purple.svg') repeat-x;
    background-size: 8.5vw; 
    background-position: 1.55rem .3rem;
    padding-left: 3.3vw;
    clip-path: polygon(calc(0.5rem) 0, 100% 0, calc(100% - 0.5rem) 100%, 0 100%);
}


h2 {
    font-family: 'Alkatra', sans-serif;
    font-weight: 500;
    line-height: 2.2rem;
    font-size: 2rem;
    color: #1B2124;
}

h3 {
    font-family: 'Raleway', sans-serif;
    font-weight: bold;
    font-weight: 600;
    font-size: 1.125rem;
    color: #1B2124;
}

li {
    font-family: 'Alkatra', sans-serif;
    font-weight: 400;
    display: block;
    font-size: 100%;
    margin-top: 2rem;
    margin-left: 2rem;
    margin-right: 2rem;
    color: #1B2124;
}

.logo {
    font-family: 'Sofia Sans Condensed', sans-serif;
    font-weight: 700;
    font-style: italic;
    display: inline-block; 
    position: static;
    font-size: 3vw;
    margin-top: -1rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
}


@media (min-width: 2850px) {

    .container-menu {
        display: inline-flex;
    }

    #food-menu {
        display: inline-flex;
    }


    #mobile-menu {
        display: none;
    }

    .mobile-food-menu {
        display: none; /* Hide the mobile food menu by default */
    }
}

/* WebKit (Chrome, Safari, newer versions of Opera) */
::-webkit-scrollbar {
    width: 8px; /* Set the width of the scrollbar */
}

::-webkit-scrollbar-thumb {
    background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent black color for the thumb */
    border-radius: 25px; /* Optional: Add rounded corners to the thumb */
}

::-webkit-scrollbar-track {
    background-color: transparent; /* Make the track transparent */
}

/* Firefox */
* {
    scrollbar-color: rgba(0, 0, 0, 0.5) transparent; /* Semi-transparent black thumb and transparent track */
    scrollbar-width: thin; /* Set the width of the scrollbar */
}

/* Container */
.container-group {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.container {
    width: 48%;
    margin: 1%;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(27, 33, 36, 0.5);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.containersavor {
    width: 48%;
    margin: 0.5%;
    border-radius: 25px;
    margin-top: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.containerabout {
    width: 48%;
    padding-left: 2rem;
    border-radius: 25px;
    margin-bottom: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: flex-start; /* Align items to the top */
    justify-content: flex-start; /* Justify content to the top */
}


.containerabout p {
    text-align: justify;
    font-size: .9vw;
    font-weight: 600;
}

.two-column {
    display: flex;
    justify-content: center;
}

.column {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin: 0 1rem; /* Adjust margin as needed */
}

.column > * {
    width: 95%;
}

.column .container,
.column .containerabout,
.column .opening-hours-about,
.column .bourdain-container {
    flex-grow: 1;
    margin: 0 auto; /* Center the containers horizontally within the column */
}

.column + .column {
    margin-left: 2rem; /* Adjust margin between columns as needed */
}


.opening-hours-about {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    flex: 1;
    margin: 0 auto;
    padding-top: 1rem;
    padding-bottom: 1rem;
    background-color: #BB3A3A;
    max-width: 100%;
    margin-right: 2rem;
    border-radius: 25px;
    box-shadow: 0 0 10px rgba(27, 33, 36, 0.5);
}


.opening-hours-about h3 {
        color: white;
        font-family: 'Alkatra', sans-serif;
        font-weight: 500;
        font-size: 1.8vw;
    }

    .opening-hours-about p {
        color: white;
        font-weight: 500;
        font-size: 1vw;
        line-height: 2.5;
        padding-bottom: .5rem;
        text-align: center;
    }

    .popup-wrapper {
        display: none;
        position: fixed;
        bottom: 5%;
        right: 5%;
        width: auto; /* Adjusted to fit content */
        max-width: 90%; /* Added to limit width */
        height: auto; /* Adjusted to fit content */
        max-height: 90%; /* Added to limit height */
        z-index: 9999;
        justify-content: flex-end; /* Adjusted to align content to the end */
        align-items: flex-end; /* Added to align content to the end */
        opacity: 0;
        transition: opacity 0.3s ease;
    }
    
    
    .popup {
        background-color: #BB3A3A;
        border: 2px solid #1B2124;
        max-width: 20rem;
        max-height: 8rem;
        padding: 1rem;
        justify-content: center;
        align-items: center;
        align-content: center;
        text-align: center;
        position: relative;
    }
    
    .opening-hours h3 {
        color: white;
        font-family: 'Alkatra', sans-serif;
        font-weight: 500;
        font-size: 1.5rem;
    }
    
    .red-box {
        color: white;
    }
    
    .red-box p strong {
        font-weight: 800;
    }
    
    .close-btn {
        position: absolute;
        top: -15px;
        right: -15px;
        width: 30px;
        height: 30px;
        border: 2px solid #1B2124;
        border-radius: 50%;
        background-color: #BB3A3A;
        color: white;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 1.5rem;
        cursor: pointer;
    }
    

h1.about {
    font-family: 'Alkatra', sans-serif;
    font-size: 2.9vw;
    line-height: 4.25rem;
    margin-bottom: 2rem;
    font-weight: 600;
    color: #80309C;
    display: flex;
}

h1.about::before,
h1.about::after {
    content: "";
    display: block;
    width: 14vw;
    height: 1rem; /* Adjust the height of the checkerboard pattern */
    margin: .6vw 0; /* Adjust the margin to control the spacing above and below the h1 */
    background: url('https://imjustkevin.com/images/johnnies/checkboard_purple.svg') repeat-x;
    background-size:5vw; 
    background-position: 1.55rem .1rem;
    padding-left: 3.45vw;
    clip-path: polygon(calc(0.5rem) 0, 100% 0, calc(100% - 0.5rem) 100%, 0 100%);
}


.h1-wrapper-about {
align-self: flex-start;
}

h2.savor {
    font-family: 'Alkatra', sans-serif;
    font-weight: 500;
    line-height: 2.2vw;
    font-size: 2.3vw;
    color: #1B2124;
}

h3.savor {
    margin-top: 2rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 600; /* You only need one 'font-weight' property */
    font-size: 1vw;
    color: #1B2124;
}


.container img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensure images fill their container and maintain aspect ratio */
    border-radius: 25px; /* Add a border-radius to images */
}


.spacer {
    margin:2vw;
    }

    .bourdain-container {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        width: 100%; /* Ensure it takes up the entire width of its parent */
        height: 100%; /* Ensure it takes up the entire height of its parent */
    }

    
    .bourdain-container img {
        width: 20vw; /* Ensure the image is responsive and shrinks when the window stretches */
        max-height: 100%;
        box-shadow: 0 0 10px rgba(27, 33, 36, 0.5);
        margin-left: 1rem;
    }
    
    .bourdain-quote {
        display: flex;
        align-items: center;
    }
    
    .left {
        flex: 1; /* Image takes up 1/3 of the available space */
        max-width: 100%; /* Limit the width of the image */
        padding-right: 2.5rem;
    }

    .right {
        flex: 2; /* Text takes up 2/3 of the available space */
        max-width: 100%; /* Limit the width of the text */
        align-self: center;
        text-align: center;
    }
    
    
    .bourdain-quote p {
        font-size: .7vw;
        padding-left: 1rem;
        padding-right: 1rem;
        line-height: .9vw;
        font-weight: 600;
    }

    .bourdain-quote h2 {
        padding-top: 1.5rem;
        padding-bottom: 1.5rem;
        font-size: 2.15vw;
        line-height: 2.2vw;
    }
      

.elfsight-app-efaccef2-f61c-4a47-bbed-e6f5d5089292 {
    margin-top: 1rem;
    margin-bottom: 1rem;
    display: flex;
}

/*Slideshow*/
.slides {
    position: relative;
}

.slides img {
    width: 100%;
    border-radius: 25px;
}

.prev,
.next {
    cursor: pointer;
    position: absolute;
    top: 50%; /* Adjust this value if needed */
    width: auto;
    margin-left: 1rem;
    margin-right: 1rem;
    padding: .5rem;
    color: #D9D9D9;
    font-weight: bold;
    font-size: 18px;
    transition: 0.6s ease;
    background: transparent;
    border: none;
    background-color: rgba(0, 0, 0, .4);
    border-radius: 25%;
}

.prev {
    left: 0;
    transform: translateY(-50%);
}

.next {
    right: 0;
    transform: translateY(-50%);
}

.prev:hover,
.next:hover {
    background-color: rgba(0, 0, 0, 0.8);
    border-radius: 25%;
}

/* Move the dot container inside the slideshow-container and update its position */
.slideshow-container .dots-container {
    position: absolute;
    bottom: 10px; /* Adjust the position as needed */
    width: 100%;
    text-align: center;
}

/* Adjust the styling for the dots */
.dot {
    cursor: pointer;
    height: 7px;
    width: 7px;
    margin: 0 2px;
    background-color: #D9D9D9;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}


.active, .dot:hover {
    background-color: #9138b1;
}

/*Mobile Food Menu*/

.mobile-food-menu {
    width: 80%; /* Adjust the width as needed */
    margin: 0 auto; /* Set left and right margins to auto */
    border-radius: 25px;
    display: none;
    text-align: center; /* Center the contents inside the container */
  }


/* Nav */
nav {
    position: relative;
    display: flex;
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Center items vertically */
    padding-bottom: .5rem;
    margin-bottom: 1.7rem;
    background: radial-gradient(circle at center, #FFFFFF, #D9D9D9);
}

/* Add the checkerboard pattern to the nav */
nav::after {
    content: "";
    position: absolute;
    bottom: 0rem; /* Adjust the height of the checkerboard pattern */
    left: 0;
    width: 100%;
    height: 1.3rem; /* Adjust the height of the checkerboard pattern */ 
    background: url('https://imjustkevin.com/images/johnnies/checkboard_orange.svg') repeat;
    background-size: 9rem; 
    background-position: 13px 0;
}

nav ul {
    display: flex;
    margin: 0;
    align-items: center; /* Center items horizontally */
    list-style: none;
}

nav li {
    margin: 0 2rem; /* Add margin to space out links */
}

nav a {
    color: #1B2124;
    text-decoration: none;
    font-size: 1.7rem;
    display: inline-block;
    text-align: center;
    margin-top: -.5rem;
    transition: color 0.3s ease, font-size 0.3s ease;
}

nav a:hover {
    color: #DE480D;
    font-size: 1.8rem;
}

.mobile-logo {
    display: none;
}

.mobile-container {
    display: none;
}

/* Mobile Navigation */
.mobile-container {
    display: none;
}

#mobile-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: radial-gradient(circle at center, #FFFFFF, #D9D9D9);
    margin-bottom: 1rem;
    padding: 1rem;
    padding-bottom: 1rem;
    padding-top: 1.5rem;
    position: fixed;
    top: -1rem;
    width: 100%;
    overflow: hidden;
    z-index: 998;
}

#mobile-logo::after {
    content: "";
    display: block;
    width: 100%;
    height: 1.3rem;
    background: url('https://imjustkevin.com/images/johnnies/checkboard_orange.svg') repeat;
    background-size: 9rem;
    background-position: 13px 0;
    position: absolute;
    bottom: 0;
    left: 0;
}

#mobile-logo li {
    font-size: 4rem;
    text-align: center;
    line-height: 3.3rem;
    margin-bottom: 0.5rem;
}

.mobile-logo {
    display: none;
}

.hamburger-menu {
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: fixed;
    top: 2.5rem;
    right: 1rem;
    z-index: 999;
}

.bar {
    width: 30px;
    height: 4px;
    background-color: #1B2124;
    margin: 3px 0;
    transition: 0.4s;
}

.nav-screen {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, #FFFFFF, #D9D9D9);
    z-index: 1050;
    align-content: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.exit-button {
    font-size: 2rem;
    cursor: pointer;
    position: fixed;
    top: 1rem;
    right: 1rem;
    color: #1B2124;
    z-index: 999;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin: 1.5rem 0;
}

.mobile-nav a {
    font-size: 2rem;
    color: #1B2124;
    text-decoration: none;
    transition: color 0.3s ease, font-size 0.3s ease;
}

.mobile-nav a:hover {
    color: #DE480D;
    font-size: 2.2rem;
}

.mobile-container.active {
    display: block;
}

.nav-screen.active {
    display: block;
}


/* Footer Styles */
footer {
    position: relative;
    width: 100%;
    padding: 3rem 0 2rem;
    margin-top: 1.7rem;
    background: radial-gradient(circle at center, #FFFFFF, #D9D9D9);
}

/* Checkerboard pattern */
footer::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0rem;
    width: 100%;
    height: 1.3rem;
    background: url('https://imjustkevin.com/images/johnnies/checkboard_orange.svg') repeat;
    background-size: 9rem;
    background-position: 0 0;
}

.footer-container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
    height: auto;
}

/* Footer Navigation */
.footer-nav {
    background: none;
    align-items: center;
    flex-direction: column;
    justify-content: center;
    top: 2rem;
    padding-right: 7rem;
}

.footer-nav::after {
    content: none;
}

.footer-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
}

.footer-nav li {
    margin-bottom: 0.5rem;
}

.find-us a {
    text-decoration: none;
    padding: .5rem;
}

.find-us img {
    width: 100%;
    height: auto;
    transition: scale 0.3s ease;
}

.find-us img:hover {
    scale: 1.05;
}

.find-us {
    display: table-column;
    justify-content: center;
    align-items: center;
}

/* Adjust font size for footer navigation items */
.footer-nav a {
    display: block;
    margin-left: 0rem;
    font-size: 1.2rem;
    width: 120px;
    text-align: center;
    border-bottom: 1px solid transparent;
}

/* Adjust font size and transform for footer navigation items on hover */
.footer-nav a:hover {
    color: #DE480D;
    font-size: 1.2rem;
}

/* Footer Sections */
.contact-info,
.find-us,
.opening-hours {
    flex: 1;
    margin: 0 1rem;
}

.contact-info p {
    margin-bottom: .3rem;
    font-size: 9pt;
    font-weight: 600;
}

/* Center and style specific sections */
.find-us,
.opening-hours {
    flex: 1;
    margin: 0 auto;
    text-align: center;
    padding: 1rem;
}

.opening-hours {
    background-color: #BB3A3A;
    border: 2px solid #1B2124;
    max-width: 35rem;
    margin-right: 2rem;
}

.opening-hours h3 {
    color: white;
    font-family: 'Alkatra', sans-serif;
    font-weight: 500;
    font-size: 1.5rem;
}

.red-box {
    color: white;
}

.red-box p strong {
    font-weight: 800;
}

.find-us img {
    width: 30px;
    margin-right: 0.5rem;
}

.one-column {
    display: none;
}

/* Large Tablet Style / iPad Breakpoint */
@media screen and (max-width: 1468px) {


    .footer-nav {
        display: none;
    }

    .logo {
        font-size: 3rem;
    }

    .two-column {
        display: flex;
        justify-content: center;
        flex-grow: 1;
    }
    
    h1 {
        margin-bottom: 1rem;
        margin-top: 1rem;
        text-align: center;
        font-family: 'Alkatra', sans-serif;
        font-size: 3.5rem;
        line-height: 4.25rem;
        font-weight: 600;
        color: #80309C;
        display: flex;
        flex-direction: column;
    }

    .h1-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1::before,
    h1::after {
        content: "";
        display: block;
        width: 100%;
        height: 2vh; 
        margin: 0rem 0; 
        background: url('https://imjustkevin.com/images/johnnies/checkboard_purple.svg') repeat-x;
        background-size: 6rem; 
        background-position: center;
        clip-path: polygon(calc(0.5rem) 0, 100% 0, calc(100% - 0.5rem) 100%, 0 100%);
    }

    h1.about {
        font-family: 'Alkatra', sans-serif;
        font-size: 2.7rem;
        line-height: 4.25rem;
        margin-bottom: 2rem;
        font-weight: 600;
        color: #80309C;
        display: flex;
    }
    
    h1.about::before,
    h1.about::after {
        content: "";
        display: flex;
        width: 15vw;
        height: 1rem; /* Adjust the height of the checkerboard pattern */
        margin: -1rem, 0; /* Adjust the margin to control the spacing above and below the h1 */
        background: url('https://imjustkevin.com/images/johnnies/checkboard_purple.svg') repeat-x;
        background-size: 5.5rem; 
        background-position: 1.55rem .1rem;
        padding-left: 3.45vw;
        clip-path: polygon(calc(0.5rem) 0, 100% 0, calc(100% - 0.5rem) 100%, 0 100%);
    }
    
    h3.savor {
        font-size: 1vh;
    }

    .contact-info {
        margin-left: 3rem;
    }

    .containerabout p {
        text-align: justify;
        font-size: 1vw;
        font-weight: 600;
    }

    .opening-hours-about {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex: 1;
        margin: 0 auto;
        padding-top: 0rem;
        padding-bottom: 0rem;
        background-color: #BB3A3A;
        max-width: 100%;
        margin-right: 2rem;
        border-radius: 25px;
        box-shadow: 0 0 10px rgba(27, 33, 36, 0.5);
    }
    
    
    .opening-hours-about h3 {
            color: white;
            font-family: 'Alkatra', sans-serif;
            font-weight: 500;
            font-size: 1.8vw;
        }
    
        .opening-hours-about p {
            color: white;
            font-weight: 500;
            font-size: 1vw;
            line-height: 2.5;
            padding-bottom: .5rem;
        }
    
    footer {
        bottom: 0;
        margin-bottom: 0rem;
        position: relative;
    }

    
    footer::before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 1.3rem;
        background: url('https://imjustkevin.com/images/johnnies/checkboard_orange.svg') repeat;
        background-size: 9rem;
        margin-bottom: 0rem;
        background-position: 13px 0;
    }

    
}

/* Tablet Style */
@media screen and (max-width: 926px) {
    body {
        margin: 0;
        padding: 0;
    }

    .two-column {
        display: none;
    }

    .one-column {
        display: flex;
        justify-content: center;
        align-items: center;
        flex: 1;
        display: flex;
        flex-direction: column;
        margin: 0 1rem; /* Adjust margin as needed */
    }    

    .column {
        flex: 1;
        display: flex;
        flex-direction: column;
        margin: 0 1rem; /* Adjust margin as needed */
    }
    
    .column > * {
        width: 95%;
    }
    
    .column .container,
    .column .containerabout,
    .column .opening-hours-about,
    .column .bourdain-container {
        flex-grow: 1;
        margin: 0 auto; /* Center the containers horizontally within the column */
    }
    
    .column + .column {
        margin: 0;
    }
    
    .footer-nav {
        display: none;
    }

    .logo {
        font-size: 2.5rem;
    }

    li a {
        font-size: 1.2rem;
    }

    li a:hover {
        font-size: 1.4rem;
    }

    .opening-hours-about {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        flex: 1;
        margin: 0 auto;
        padding-top: 1rem;
        padding-bottom: 1rem;
        background-color: #BB3A3A;
        max-width: 100%;
        margin-right: 2rem;
        border-radius: 25px;
        box-shadow: 0 0 10px rgba(27, 33, 36, 0.5);
    }

    .opening-hours-about h3 {
        color: white;
        font-family: 'Alkatra', sans-serif;
        font-weight: 500;
        font-size: 4vw;
    }

    .opening-hours-about p {
        color: white;
        font-weight: 500;
        font-size: 2.5vw;
        line-height: 2.5;
        padding-bottom: .5rem;
    }

    .containerabout p {
        text-align: justify;
        font-size: 1.7vw;
        font-weight: 600;
    }
    
    h1 {
        margin-bottom: 1rem;
        margin-top: 1rem;
        text-align: center;
        font-family: 'Alkatra', sans-serif;
        font-size: 2.8vh;
        line-height: 4.25rem;
        font-weight: 600;
        color: #80309C;
        display: flex;
        flex-direction: column;
    }

    .h1-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    h1::before,
    h1::after {
        content: "";
        display: block;
        width: 100%;
        height: 1vh; 
        margin: 0rem 0; 
        background: url('https://imjustkevin.com/images/johnnies/checkboard_purple.svg') repeat-x;
        background-size: 6rem; 
        background-position: center;
        clip-path: polygon(calc(0.5rem) 0, 100% 0, calc(100% - 0.5rem) 100%, 0 100%);
    }

    h1.about {
        margin-bottom: 1.5rem;
        margin-top: .5rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-family: 'Alkatra', sans-serif;
        font-size: 2.8rem;
        line-height: 4.25rem;
        font-weight: 600;
        color: #80309C;
        display: flex;
        flex-direction: column;
    }

    .h1-wrapper-about {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0;
    }

    h1.about::before,
    h1.about::after {
        content: "";
        display: block;
        width: 100%;
        height: 1rem; 
        margin: 0rem 0; 
        background: url('https://imjustkevin.com/images/johnnies/checkboard_purple.svg') repeat-x;
        background-size: 7rem; 
        background-position: center;
        clip-path: polygon(calc(0.5rem) 0, 100% 0, calc(100% - 0.5rem) 100%, 0 100%);
    }

    .bourdain-container {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        margin-bottom: 1rem;
        width: 100%; /* Ensure it takes up the entire width of its parent */
        height: 100%; /* Ensure it takes up the entire height of its parent */
    }

    
    .container img {
        height: auto;
        align-items: center;
        justify-content: center;
        object-fit: fill; /* Ensure images fill their container and maintain aspect ratio */
        border-radius: 25px; /* Add a border-radius to images */
    }

    .bourdain-img img{
        width: 100%;
        align-items: center;
        justify-content: center;
        object-fit: fill; /* Ensure images fill their container and maintain aspect ratio */
        border-radius: 25px; /* Add a border-radius to images */
        margin-bottom: 1.5rem;
    }
    
    .bourdain-quote {
        display: flex;
        align-items: center;
    }

    .bourdain-quote p {
        padding-left: 1rem;
        padding-right: 1rem;
        line-height: 3vw;
        font-size: 2.7vw;
        text-align: center;
        font-weight: 600;
    }

    .bourdain-quote h2 {
        padding-top: 1rem;
        padding-bottom: 1.5rem;
        font-size: 5.8vw;
        line-height: 5.5vw;
        text-align: center;
    }

    footer {
        bottom: 0;
        margin: 0rem;
        position:relative;
    }

    
    footer::before {
        content: "";
        position: absolute;
        left: 0;
        width: 100%;
        height: 1.3rem;
        background: url('https://imjustkevin.com/images/johnnies/checkboard_orange.svg') repeat;
        background-size: 9rem;
        background-position: 13px 0;
    }

    .contact-info {
        margin-left: 3rem;
    }


    nav {
        display: none;
    }


    .mobile-container,
    .mobile-logo {
        position: relative;
        display:inherit;
        justify-content: center; /* Center items horizontally */
        align-items: center; /* Center items vertically */
        padding-bottom: .5rem;
        margin-bottom: 11rem;
    }

    #mobile-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-items: center;
        background: radial-gradient(circle at center, #FFFFFF, #D9D9D9);
        margin-bottom: 5rem;
        padding: 1rem;
        padding-bottom: 1rem;
        padding-top: 1.5rem;
        position: fixed;
        top: -1rem;
        width: 100%;
        overflow: hidden;
        z-index: 998;
        margin-bottom: 4rem;
    }

    img.logo {
        position: relative;
        left: -1rem;
        width: 30vw;
        height: auto;
    }

    #mobile-logo img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        padding-bottom: 1rem;
    }

    #mobile-logo::after {
        content: "";
        display: block;
        width: 100%;
        height: 1.3rem;
        background: url('https://imjustkevin.com/images/johnnies/checkboard_orange.svg') repeat;
        background-size: 9rem;
        background-position: 13px 0;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    #mobile-logo li {
        font-size: 4rem;
        text-align: center;
        line-height: 3.3rem;
        margin-bottom: 0.5rem;
        align-items: center;
        justify-content: center;
    }

}

/* Mobile Styles */
@media only screen and (max-width: 768px) {
    body {
        font-size: 1rem;
        margin-top: 8rem;
    }

    p {
        font-family: 'Raleway', sans-serif;
        font-size: 1rem;
        color:#1B2124
    }
    
    .h1-wrapper {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
    }
    
    h1::before,
    h1::after {
        content: "";
        display: block;
        width: 100%;
        height: 1rem; 
        margin: 0rem 0; 
        background: url('https://imjustkevin.com/images/johnnies/checkboard_purple.svg') repeat-x;
        background-size: 6rem; 
        background-position: center;
        clip-path: polygon(calc(0.5rem) 0, 100% 0, calc(100% - 0.5rem) 100%, 0 100%);
    }
    
    h1 {
        margin-bottom: 1rem;
        margin-top: 1rem;
        text-align: center;
        align-items: center;
        font-family: 'Alkatra', sans-serif;
        font-size: 3.5rem;
        line-height: 4.25rem;
        font-weight: 600;
        color: #80309C;
        display: flex;
        flex-direction: column;
    }
    
    h2 {
        font-family: 'Alkatra', sans-serif;
        font-weight: 500;
        margin-bottom: 1rem;
        text-align: center;
        align-items: center;
        line-height: 2.2rem;
        font-size: 2rem;
        color: #1B2124;
    }
    
    h3 {
        font-family: 'Raleway', sans-serif;
        font-weight: bold;
        text-align: center;
        align-items: center;
        font-weight: 600;
        font-size: 1.125rem;
        color: #1B2124;
        margin-bottom: 1rem;
    }
    
    li {
        font-family: 'Alkatra', sans-serif;
        font-weight: 400;
        display: block;
        font-size: 100%;
        margin-top: 2rem;
        margin-left: 2rem;
        margin-right: 2rem;
        color: #1B2124;
    }
    
    h2.savor {
        font-family: 'Alkatra', sans-serif;
        font-weight: 500;
        margin-bottom: 0rem;
        text-align: center;
        align-items: center;
        line-height: 2.2rem;
        font-size: 2rem;
        color: #1B2124;
    }
    
    h3.savor {
        font-size: 1rem;
    }

    .mobile-food-menu {
        display: flex;
        width: 90% !important;
        border-radius: 25px;
        box-shadow: 0 0 10px rgba(27, 33, 36, 0.5);
        flex-wrap: wrap;
        justify-content: center; 
        margin-bottom: 2rem;
    }

    .mobile-food-menu img {
        border-radius: 25px;
        width: 100%;
    }

    #food-menu {
        display: none;
    }

    .container {
        width: 90%;
        margin: 1.5rem auto;
        box-shadow: 0 0 10px rgba(27, 33, 36, 0.5);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .containersavor {
        width: 90%;
        margin: 1.5rem auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }
    
    .opening-hours {
        display: none;
    }

    .red-box {
        display: none;
    }

    footer {
        margin-top: .5rem;
        position: relative;
        bottom: 0;
        padding-top: 2rem;
        margin-bottom: -5rem;
        width: 100%;
        z-index: 999;
        text-align: center;
        align-items: center; 
        justify-content: center;
        background: radial-gradient(circle at center, #FFFFFF, #D9D9D9);
    }

    .footer-container {
        display: flex;
        margin: 0;
        margin-top: .5rem;
        flex-direction: column;
        align-items: center;
        height: auto;
        justify-content: center;
        width: 100%;
    }

    footer::before {
        content: "";
        position: absolute;
        bottom: 16.5rem;
        left: 0;
        width: 100%;
        height: 1.3rem;
        background: url('https://imjustkevin.com/images/johnnies/checkboard_orange.svg') repeat;
        background-size: 9rem;
        background-position: 13px 0;
    }

    .find-us {
        margin-bottom: -1.5rem;
    }

    nav::after {
        display: none;
    }

    #mobile-logo {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        justify-items: center;
        background: radial-gradient(circle at center, #FFFFFF, #D9D9D9);
        margin-bottom: 0rem;
        padding: 1rem;
        padding-bottom: 1rem;
        padding-top: 1.5rem;
        position: fixed;
        top: -1rem;
        width: 100%;
        overflow: hidden;
        z-index: 998;
    }

    img.logo {
        position: relative;
        left: -1rem;
        width: 14rem;
        height: auto;
    }

    #mobile-logo img {
        display: block;
        margin: 0 auto;
        max-width: 100%;
        padding-bottom: 1rem;
    }

    #mobile-logo::after {
        content: "";
        display: block;
        width: 100%;
        height: 1.3rem;
        background: url('https://imjustkevin.com/images/johnnies/checkboard_orange.svg') repeat;
        background-size: 9rem;
        background-position: 13px 0;
        position: absolute;
        bottom: 0;
        left: 0;
    }

    #mobile-logo li {
        font-size: 4rem;
        text-align: center;
        line-height: 3.3rem;
        margin-bottom: 0.5rem;
        align-items: center;
        justify-content: center;
    }

    nav {
        display: none;
    }

    nav::after {
        display: none;
    }

    .footer-nav{
        display: none;
    }

    .contact-info {
        align-items: center; 
        justify-content: center;
        justify-items: center;
        margin: 0;
    }

    .find-us {
        align-content: center;
    }

    .mobile-container,
    .mobile-logo {
        position: relative;
        align-content: center;
        justify-content: center;
        display:inline;
        width: 100%;
    }

    .popup-wrapper {
        display: flex;
    }
    

    .popup-wrapper .opening-hours{
        display: flex;
        flex-wrap: wrap;
        background-color: none;
        border: none;
        margin: 0rem;
        padding: 0;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

     .opening-hours h3{
        margin: 0rem;
        padding: 0;
        justify-content: center;
        align-items: center;
        align-content: center;
    }
    
    .opening-hours p{
        margin: 0rem;
        padding: 0;
        font-family: 'Raleway', sans-serif;
        color: #FFFFFF;
        justify-content: center;
        align-items: center;
        align-content: center;
    }

    
    h1.about {
        margin-bottom: 1.5rem;
        margin-top: .5rem;
        text-align: center;
        align-items: center;
        justify-content: center;
        font-family: 'Alkatra', sans-serif;
        font-size: 2.8rem;
        line-height: 4.25rem;
        font-weight: 600;
        color: #80309C;
        display: flex;
        flex-direction: column;
    }

    .h1-wrapper-about {
            position: relative;
            display: flex;
            flex-direction: column;
            align-items: center;
            padding: 0;
    }

    h1.about::before,
    h1.about::after {
        content: "";
        display: block;
        width: 100%;
        height: 1rem; 
        margin: 0rem 0; 
        background: url('https://imjustkevin.com/images/johnnies/checkboard_purple.svg') repeat-x;
        background-size: 6rem; 
        background-position: center;
        clip-path: polygon(calc(0.5rem) 0, 100% 0, calc(100% - 0.5rem) 100%, 0 100%);
    }

    .bourdain-quote {
    margin-bottom: 2rem;
    margin-top: .5rem;
    }

    .bourdain-quote h2 {
        margin-bottom: 0rem;
        }

     .one-column {
        margin-top: 2rem;
     }

     .containerabout p {
        font-size: 1rem;
     }
}
