@import url('https://fonts.googleapis.com/css2?family=Onest:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Bungee&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Schoolbell&display=swap');

@font-face {
    font-family: 'Eraser';
    src: url('fonts/EraserRegular.ttf') format('truetype'),
}

:root {
    --white: rgb(255, 250, 242);
    --yellow: rgb(255, 215, 39);
    --dark-red: rgb(121, 24, 24);
    --light-red: rgb(209, 37, 37);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Onest", sans-serif;
}

a {
    user-select: none;
    color: inherit;
    text-decoration: none;
}

html {
    font-size: 16px;
}

body {
    min-height: 100vh;
    height: 100vh;
    background-color: rgb(63, 26, 5);
    /* background: url('images/wood_panel_2.webp'); */
    background: url('images/stone_grit.webp');
    font-family: "Onest", sans-serif;
    color: var(--white);
}

img.general {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
}

h3 {
    text-align: center;
    font-weight: 400;
    font-size: 1rem;
    text-shadow: 0 2px 0 black;
}

.menu-image {
    border-radius: 10px;
    box-shadow: 0 5px 0 var(--light-red), -4px -4px 0 var(--yellow);
    outline: 2px dashed white;
    filter: drop-shadow(2px 4px 6px black) saturate(1.25);
    aspect-ratio: 4;
    position: relative;
    background-size: cover;
    background-position: center;
    margin-bottom: 25px;
    margin-top: 10px;
    overflow: visible;
}

.menu-image::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, black, transparent);
    border-radius: inherit;
    opacity: 0.6;
    mix-blend-mode: overlay;
}

.menu-description {
    color: white;
    text-shadow: 0 2px 0 black;
    text-align: center;
}

.menu-items-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(4, 1fr);
}

.menu-item {
    cursor: pointer;
    position: relative;
    height: 250px;
    padding: 10px;
    border-radius: 4px;
    background: linear-gradient(to top, color-mix(in hsl, var(--dark-red) 100%, black 40%), var(--dark-red));
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
    text-shadow: 0 2px 0 black;
    box-shadow: 0 3px 0 black, 0 0 10px black;
}

.menu-item.displayed {
    background: linear-gradient(to top, var(--dark-red), var(--light-red));
    border-top: 2px solid var(--yellow);
}

.menu-item .title {
    font-family: "Bungee", "Onest", sans-serif;
    text-shadow: 0 3px 0 black;
    font-size: 1.1rem;
    font-weight: 500;
    padding: 0 10px;
    text-wrap: pretty;
    text-align: center;
}

.menu-item .description {
    color: var(--yellow);
    font-weight: 300;
    font-size: 0.8rem;
    text-align: center;
}

.menu-item .price {
    font-family: "Onest", sans-serif;
    margin-left: auto;
    font-weight: 300;
    font-size: 0.9rem;
}

.menu-item .prices {
    font-family: "Onest", sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-direction: row;
    font-size: 0.9rem;
    font-weight: 300;
}

.menu-choices {
    text-shadow: 0 2px 0 black;
    font-style: italic;
    color: var(--yellow);
    text-align: center;
    margin-top: 25px;
}

h1 {
    text-shadow: 0 3px 0 red, 0 0 25px var(--dark-red), 0 0 5px var(--dark-red);
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--yellow);
    text-align: center;
    transform: skewX(-6deg);
    font-family: "Bungee", "Onest", sans-serif;
}

.w-full {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
}

.pop-text {
    text-wrap: balanced;
    color: white;
    text-align: center;
    text-shadow: 0 2px 0 color-mix(in hsl, var(--dark-red) 100%, black 50%), 0 0 25px var(--dark-red),
        0 0 5px var(--dark-red);
    font-size: 1.25rem;
    font-weight: 600;
}

.order-now {
    cursor: pointer;
    user-select: none;
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-origin: left;
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    padding: 10px 25px;
    border-radius: 5px;
    font-size: 1.25rem;
    text-align: center;
    text-wrap: nowrap;
    background: linear-gradient(to top, var(--dark-red), var(--light-red));
    text-shadow: 0 2px 0 var(--dark-red);
    box-shadow: 0 2px 0 var(--light-red);
}

.order-now:active {
    scale: 0.98;
}

.fire-helper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-direction: row;
    text-align: center;
    font-size: 0.85rem;
    scale: 0.8;
}

.call-line {
    font-family: inherit;
    font-size: 0.75rem;
    font-weight: 300;
    letter-spacing: 0.1rem;
    color: var(--yellow);
    display: flex;
    align-items: center;
    gap: 5px;
    background: var(--light-red);
    padding: 10px 10px;
    box-sizing: border-box;
    border-radius: 5px;
    font-weight: 500;
    z-index: 3;
    position: relative;
}

div#mobile-navbar-toggle {
    height: 24px;
    z-index: 2;
}

.mobile-navbar {
    position: relative;
    z-index: 5;
    user-select: none;
    margin: 10px 10px 0 10px;
    border-radius: 5px;
    background: linear-gradient(to top right, var(--dark-red), var(--light-red));
    box-shadow: 0 0 15px var(--light-red) inset;
    display: none;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
    box-sizing: border-box;
    height: 65px;
    color: var(--white);
    box-shadow: 0 0 15px rgb(36, 13, 3);
}

.navbar {
    position: relative;
    z-index: 3;
    user-select: none;
    margin-top: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(to top right, var(--dark-red), var(--light-red));
    box-shadow: 0 0 15px var(--light-red) inset;
    height: 75px;
    overflow: visible;
    width: 100%;
    box-shadow: 0 0 15px rgb(36, 13, 3), 0 3px 0 black;
}

.mobile-links a {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
}

.mobile-links {
    z-index: 3;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    position: absolute;
    top: 75px;
    user-select: none;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    gap: 10px;
    padding: 10px;
    transform: translateX(0);
    opacity: 1;
    transition: transform 0.45s cubic-bezier(0.175, 0.885, 0.32, 1.275), opacity 0.25s ease-in-out;
}

.backdrop {
    z-index: 3;
    position: fixed;
    top: 0;
    left: 0;
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    height: 100vh;
    background: color-mix(in hsl, color-mix(in hsl, var(--dark-red) 100%, black 80%), transparent 20%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.backdrop.hidden {
    display: none;
}

.mobile-links.hidden {
    opacity: 0;
    transform: translateX(-125%);
    pointer-events: none;
}

.mobile-links .link,
.mobile-links a div#call.link {
    z-index: 2;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    width: 100%;
    text-shadow: 0 3px 0 black;
    position: relative;
    font-family: "Bungee", "Onest", sans-serif;
    color: var(--white);
    font-size: 1.5rem;
    padding: 10px 25px;
    cursor: pointer;
    overflow: hidden;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    background: linear-gradient(to top right, var(--dark-red), var(--light-red));
    border-radius: 5px;
}

.mobile-links .link svg,
.mobile-links a div#call.link svg {
    filter: drop-shadow(0 3px 0 black);
}

.navbar .link {
    z-index: 1;
    display: flex;
    justify-content: center;
    text-shadow: 0 5px 0 black;
    position: relative;
    font-family: "Bungee", "Onest", sans-serif;
    color: var(--white);
    font-size: 1.75rem;
    padding: 10px 25px;
    cursor: pointer;
    overflow: hidden;
    width: 200px;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar .link.left {
    transform: skew(6deg);
}

.navbar .link.right {
    transform: skew(-6deg);
}

.navbar .link::after {
    overflow: hidden;
    position: absolute;
    content: "";
    height: 2px;
    width: 100%;
    background-color: rgb(255, 245, 227);
    bottom: 0;
    left: -100%;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.navbar .link:hover,
.navbar .link.selected {
    color: var(--yellow);
    text-shadow: 0 3px 0 var(--light-red);
}

.mobile-links .link:active,
.mobile-links .link.selected {
    color: var(--yellow);
    text-shadow: 0 3px 0 var(--light-red);
    background: rgb(51, 18, 18);
}

.mobile-links .link:active svg,
.mobile-links .link.selected svg {
    filter: drop-shadow(0 3px 0 var(--light-red));
}

.navbar .link:hover::after,
.navbar .link.selected::after {
    background-color: rgb(238, 27, 27);
    left: 0;
}

.logo {
    z-index: 2;
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    filter: drop-shadow(0 3px 0 var(--dark-red));
    padding: 10px;
    filter: brightness(1.25) contrast(1.25) drop-shadow(0 0 5px var(--dark-red));
}

.container {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    margin-left: 15%;
    margin-right: 15%;
}

.container-image {
    width: -webkit-fill-available;
    width: -moz-available;
    width: stretch;
    margin-left: 20%;
    margin-right: 20%;
}

.option-image {
    width: 100%;
    height: 100%;
}

.main-image {
    user-select: none;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    min-height: 75vh;
    background-image: url(/images/burger_main.webp);
    background-size: cover;
    background-position: center top;
    filter: contrast(1.15) saturate(1.2);
}

.main-image::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(15, 3, 0, 0.95) 0%,
        rgba(50, 15, 5, 0.6) 35%,
        rgba(0, 0, 0, 0.1) 70%,
        transparent 100%
    );
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 55px 40px;
    width: 100%;
    max-width: 780px;
    text-align: center;
}

.hero-ctas {
    display: flex;
    gap: 15px;
    margin-top: 8px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-btn-primary {
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 1.15rem;
    cursor: pointer;
    user-select: none;
    padding: 14px 38px;
    border-radius: 4px;
    background: linear-gradient(to top, var(--dark-red), var(--light-red));
    color: var(--white);
    text-shadow: 0 2px 0 var(--dark-red);
    box-shadow: 0 4px 0 black, 0 0 20px rgba(209, 37, 37, 0.35);
    transform: skewX(-4deg);
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btn-primary:hover {
    background: linear-gradient(to top, var(--dark-red), rgb(235, 55, 55));
    transform: skewX(-4deg) translateY(-2px);
    box-shadow: 0 6px 0 black, 0 0 30px rgba(209, 37, 37, 0.5);
}

.hero-btn-primary:active {
    transform: skewX(-4deg) translateY(2px);
    box-shadow: 0 2px 0 black;
}

.hero-btn-secondary {
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 1.15rem;
    cursor: pointer;
    user-select: none;
    padding: 14px 38px;
    border-radius: 4px;
    background: linear-gradient(to top, rgb(205, 170, 20), var(--yellow));
    color: var(--dark-red);
    text-shadow: none;
    box-shadow: 0 4px 0 black;
    transform: skewX(-4deg);
    transition: all 0.15s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hero-btn-secondary:hover {
    background: linear-gradient(to top, rgb(215, 180, 25), rgb(255, 225, 60));
    transform: skewX(-4deg) translateY(-2px);
    box-shadow: 0 6px 0 black;
}

.hero-btn-secondary:active {
    transform: skewX(-4deg) translateY(2px);
    box-shadow: 0 2px 0 black;
}

.features-strip {
    display: flex;
    align-items: stretch;
    justify-content: center;
    width: 100%;
    background: linear-gradient(to bottom, #0d0000, var(--dark-red) 40%, var(--dark-red) 60%, #0d0000);
    border-top: 2px solid var(--yellow);
    border-bottom: 2px solid var(--yellow);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.55);
}

.feature-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 20px 15px;
    text-align: center;
}

.feature-name {
    display: inline-block;
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 1.3rem;
    color: var(--yellow);
    text-shadow: 0 2px 0 black;
    transform: skewX(-4deg);
}

.feature-desc {
    font-size: 0.72rem;
    color: rgba(255, 250, 242, 0.6);
    text-shadow: 0 1px 0 black;
    font-weight: 500;
    letter-spacing: 0.06rem;
    text-transform: uppercase;
}

.feature-sep {
    width: 1px;
    background: rgba(255, 215, 39, 0.2);
    margin: 12px 0;
    align-self: stretch;
}

.home-location-row {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 0 15%;
    box-sizing: border-box;
}

.top-section {
    gap: 5px;
    display: flex;
}

.hours-table {
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    font-size: 1rem;
}

.location-tab {
    cursor: pointer;
    user-select: none;
    text-wrap: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    font-size: 0.8rem;
    box-sizing: border-box;
    padding: 10px 20px;
    text-align: center;
    border-radius: 5px;
    background: linear-gradient(to top, color-mix(in hsl, var(--yellow) 100%, var(--light-red) 40%), var(--yellow) 100%);
    color: var(--dark-red);
    font-weight: bold;
}

.location-tab svg {
    min-height: 1rem;
    min-width: 1rem;
}

.location-tab:hover {
    background: linear-gradient(to top, color-mix(in hsl, var(--yellow) 100%, var(--light-red) 80%), var(--yellow) 100%);
}

img.chalk-image {
    user-select: none;
    left: -55px;
    top: -5px;
    display: inline-block;
    height: 35px;
    width: 35px;
    margin-right: 5px;
}

img.chalk-image.chicken-wing {
    filter: hue-rotate(194deg);
    rotate: 11deg;
}

img.chalk-image.martini-glass {
    rotate: 9deg;
}

.home-content,
.menu-content,
.order-content,
.specials-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    margin-top: 55px;
}

.home-content {
    align-items: stretch;
    gap: 0;
}

.home-content.hidden,
.menu-content.hidden,
.order-content.hidden,
.specials-content.hidden {
    display: none;
}

.todays-special {
    font-family: "Eraser", 'Onest', sans-serif !important;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    border-radius: 3px;
    border-top-left-radius: 1px;
    border-top-right-radius: 1px;
    padding: 15px;
    box-sizing: border-box;
    background: #15241c;
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.15) inset, 0 10px 15px rgba(0, 0, 0, 0.85);
    border: 2px solid rgb(117, 117, 117);
}

.todays-special::after,
.navbar::after,
.mobile-navbar::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(images/napkin.webp);
    background-size: cover;
    background-position: center;
    z-index: 0;
    mix-blend-mode: multiply;
    border-radius: 5px;
    pointer-events: none;
    overflow: hidden;
}

.todays-special::after {
    background: url(images/chalkboard.webp);
    mix-blend-mode: normal;
    background-size: cover;
    filter: saturate(0.2);
    opacity: 0.5;
}

.todays-special h2 {
    font-family: "Eraser", 'Onest', sans-serif !important;
    z-index: 1;
    font-size: 2rem;
    text-align: center;
    font-weight: 400;
    margin-bottom: 10px;
    color: var(--yellow);
    mix-blend-mode: screen;
    opacity: 0.8;
}

.todays-special p {
    font-family: "Eraser", 'Onest', sans-serif !important;
    z-index: 1;
    font-size: 1.15rem;
    text-align: center;
    mix-blend-mode: screen;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.8;
}

.todays-special p:not(:last-of-type) {
    margin-bottom: 15px;
}

.todays-special span {
    font-family: "Eraser", 'Onest', sans-serif !important;
    mix-blend-mode: screen;
}

span.special-price {
    display: inline-block;
    font-family: "Eraser", 'Onest', sans-serif !important;
    padding: 3px;
    color: rgb(85, 212, 46);
    font-size: 1.55rem;
    mix-blend-mode: screen;
    margin-left: 10px;
}

.todays-special p span.special-price.e {
    rotate: 3deg;
}

.todays-special p.e {
    rotate: -1.2deg;
}

.todays-special p span.special-price.o {
    rotate: -2deg;
}

.todays-special p.o {
    rotate: 0.8deg;
}

.menu-category {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 3rem;
    color: white;
    text-shadow: 0 5px 0 black, -2px -2px 0 black, -2px -4px 0 var(--yellow), 3px 6px 0 var(--light-red);
    transform: skewX(-6deg);
    margin-top: 25px;
}

.specials-header {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 2.5rem;
    color: white;
    text-shadow: 0 5px 0 black, -2px -2px 0 black, -2px -4px 0 var(--yellow), 3px 6px 0 var(--light-red);
    transform: skewX(-6deg);
}

.specials-section {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.mobile-menu-view {
    z-index: 1;
    position: fixed;
    bottom: 0;
    margin: 0 5px 10px 5px;
    box-shadow: 0 3px 0 var(--light-red);
    font-family: "Bungee", "Onest", sans-serif;
    user-select: none;
    cursor: pointer;
    padding: 20px;
    display: none;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(to bottom, #ffd120, rgb(205 85 0));
    border-radius: 5px;
    text-align: center;
    font-size: 1.25rem;
    text-shadow: 0px 3px 0 black;
    color: rgb(249 16 16);
    font-weight: 600;
}

.mobile-menu-view div {
    font-size: 1.25rem;
    text-shadow: 2px 2px 0 black;
    font-family: "Bungee", "Onest", sans-serif;
}

.mobile-menu-view:active {
    filter: brightness(1.1);
}

.mobile-menu-view .arrow {
    animation: slide 1.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) infinite;
}

.wings {
    overflow: hidden;
    position: relative;
    cursor: pointer;
    user-select: none;
    padding: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background-color: var(--light-red);
    border-radius: 5px;
    background-image: linear-gradient(to top, var(--dark-red), var(--light-red));
    background-repeat: no-repeat;
    background-position: bottom left;
    box-shadow: 0 0 10px black, 0 3px 0 black;
}

.wings div:first-child {
    z-index: 2;
    text-align: center;
    text-wrap: nowrap;
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 1.5rem;
    rotate: -4deg;
    text-shadow: -2px 3px 0 black, 2px 5px 0 var(--yellow), 4px -6px 0 red;
}

.wings div:not(:first-child):not(.wing-repeat) {
    z-index: 2;
    text-align: center;
    text-wrap: nowrap;
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 3rem;
    rotate: -4deg;
    text-shadow: 2px 4px 0 black, 0 8px 0 var(--yellow), -2px -8px 0 red;
}

.wings div.wing-repeat {
    z-index: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background-image: url('images/wing-pattern.png');
    background-repeat: repeat;
    mix-blend-mode: multiply;
    animation: wings 20s linear infinite;
}

@keyframes wings {
    from {
        background-position: 0 0;
    }

    to {
        background-position: -600px 0;
    }
}

.wings img.left-wing {
    width: 125px;
    z-index: 1;
    position: absolute;
    left: 0;
    bottom: 0;
    height: auto;
}

.wings::before {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        transparent 0%,
        rgba(255, 240, 24, 0.45) 50%,
        transparent 100%
    );
    transform: skewX(-12deg);
    animation: wing-shimmer 4.5s cubic-bezier(0.4, 0, 0.6, 1) infinite;
    pointer-events: none;
    z-index: 3;
    mix-blend-mode: color-dodge;
}

@keyframes wing-shimmer {
    0%   { left: -75%; }
    35%  { left: 130%; }
    100% { left: 130%; }
}

.order-button span {
    font-family: "Bungee", "Onest", sans-serif;
}

.order-button {
    font-family: "Bungee", "Onest", sans-serif;
    background: linear-gradient(to top, rgb(204, 204, 204), rgb(241, 241, 241));
    text-align: center;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: row;
    gap: 10px;
    border-radius: 5px;
    padding: 5px 20px;
    box-sizing: border-box;
    font-size: 1rem;
    color: black;
    height: 45px;
}

.order-button.call {
    flex-direction: row;
    font-size: 1rem;
}

span.imp {
    font-family: "Bungee", "Onest", sans-serif;
    display: inline-block;
    color: var(--white);
    text-shadow: 0 2px 0 black, -2px 3px 0 var(--light-red), 2px -2px 0 var(--yellow);
    font-size: 1.1rem;
}

span.imp-min {
    display: inline-block;
    font-weight: bold;
    color: var(--yellow);
    rotate: -1deg;
    text-shadow: 0 2px 0 black;
}

.scorchin-options-grid {
    user-select: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.scorchin-option {
    position: relative;
    height: 325px;
    width: 325px;
    animation: hover 6s ease-in-out infinite;
}

.scorchin-option.two {
    animation: hover-2 5s ease-in-out infinite;
}

.scorchin-option.three {
    animation: hover-4 5.5s ease-in-out infinite;
}

.scorchin-option.four {
    animation: hover-3 4.5s ease-in-out infinite;
}

.scorchin-option .option-text {
    display: inline-block;
    text-wrap: pretty;
    font-size: 1.75rem;
    text-align: center;
    font-family: "Bungee", "Onest", sans-serif;
    position: absolute;
    text-shadow: 0 2px 0 black, -2px 3px 0 var(--light-red), 2px -2px 0 var(--yellow);
    rotate: 2deg;
}

.scorchin-option .option-text {
    animation: hover-text 6s ease-in-out infinite;
}

.order-button.call:hover {
    background: linear-gradient(to top, rgb(223, 223, 223), rgb(248, 248, 248));
}

.order-button.doordash {
    color: white;
    text-shadow: 0 2px 0 black;
    background: linear-gradient(to top, #EB1700, #ff2d16);
}

.order-button.doordash:hover {
    background: linear-gradient(to top, #f51d05, #ff432e);
}

.order-button.uber {
    color: black;
    text-shadow: none;
    background: linear-gradient(to top, #06C167, #13ec83);
}

@keyframes hover {
    50% {
        rotate: -4deg;
        transform: translate(-2px, -5px);
    }
}

@keyframes hover-text {
    50% {
        transform: translate(6px, 8px);
    }
}

@keyframes hover-2 {
    50% {
        rotate: 8deg;
        transform: translate(2px, 4px);
    }
}

@keyframes hover-3 {
    50% {
        rotate: -5deg;
        transform: translate(-3px, -5px);
    }
}

@keyframes hover-4 {
    50% {
        rotate: 2deg;
        transform: translate(4px, 6px);
    }
}

@keyframes slide {
    50% {
        transform: translateX(0);
    }

    70% {
        transform: translateX(10px);
    }
}

/* Wing Modal Styles */
.wing-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease-in-out;
}

.wing-modal.hidden {
    display: none;
}

.wing-modal:not(.hidden) {
    display: flex;
    align-items: center;
    justify-content: center;
}

.wing-modal-content {
    position: relative;
    background: linear-gradient(to bottom, #1a0e0e, #2d1414);
    margin: 20px;
    padding: 30px;
    border: 3px solid var(--light-red);
    border-radius: 10px;
    max-width: 900px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    /* box-shadow: 0 0 30px rgba(209, 37, 37, 0.5), 0 0 60px rgba(0, 0, 0, 0.8); */
    animation: slideDown 0.3s ease-out;
}

.wing-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--yellow);
}

.wing-modal-header h1 {
    margin: 0;
    color: var(--yellow);
    text-shadow: 0 3px 0 var(--light-red), 0 0 20px var(--dark-red);
}

.wing-modal-close {
    cursor: pointer;
    font-size: 3rem;
    font-weight: bold;
    color: var(--yellow);
    transition: all 0.2s ease;
    line-height: 1;
    user-select: none;
}

.wing-modal-close:hover {
    color: var(--light-red);
    transform: scale(1.1) rotate(90deg);
}

.wing-description,
.wing-extra {
    text-align: center;
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 2px 0 black;
}

.wing-extra {
    margin-top: 20px;
    font-style: italic;
    color: var(--yellow);
}

.wing-types-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.wing-type-section {
    background: linear-gradient(to top, var(--dark-red), rgba(121, 24, 24, 0.5));
    padding: 20px;
    border-radius: 8px;
    border: 2px solid var(--light-red);
    box-shadow: 0 4px 0 black;
}

.wing-type-header {
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 1.5rem;
    color: var(--yellow);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 2px 0 black, -1px -1px 0 var(--light-red);
    transform: skewX(-3deg);
}

.wing-prices {
    display: grid;
    gap: 10px;
}

.wing-price-item {
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: rgba(0, 0, 0, 0.3);
    padding: 10px 15px;
    border-radius: 5px;
    border-left: 3px solid var(--yellow);
    transition: all 0.2s ease;
}

/* .wing-price-item:hover {
    background: rgba(255, 215, 39, 0.1);
    border-left-color: var(--light-red);
    transform: translateX(5px);
} */

.wing-size {
    font-weight: bold;
    color: var(--white);
    text-shadow: 0 1px 0 black;
}

.wing-price {
    font-family: "Bungee", "Onest", sans-serif;
    color: var(--yellow);
    text-shadow: 0 2px 0 black;
}

.sauce-section,
.rubs-section {
    margin-top: 30px;
}

.sauce-header {
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 2rem;
    color: var(--white);
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 0 3px 0 black, -2px -2px 0 var(--yellow), 2px 3px 0 var(--light-red);
    transform: skewX(-4deg);
}

.heat-legend {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--white);
    text-shadow: 0 1px 0 black;
}

.flame-icon,
.no-heat-icon {
    font-size: 1rem;
}

.no-heat-icon {
    font-weight: bold;
    color: var(--white);
}

.sauces-grid,
.rubs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.sauce-item,
.rub-item {
    background: linear-gradient(to bottom, rgba(121, 24, 24, 0.6), rgba(63, 12, 12, 0.8));
    padding: 12px 15px;
    border-radius: 6px;
    border: 2px solid transparent;
    text-align: center;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.sauce-item::before,
.rub-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 39, 0.2), transparent);
    transition: left 0.5s ease;
}

/* .sauce-item:hover,
.rub-item:hover {
    border-color: var(--yellow);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(255, 215, 39, 0.3);
} */

/* .sauce-item:hover::before,
.rub-item:hover::before {
    left: 100%;
} */

/* .sauce-item.selected,
.rub-item.selected {
    background: linear-gradient(to bottom, var(--light-red), var(--dark-red));
    border-color: var(--yellow);
    box-shadow: 0 0 15px rgba(255, 215, 39, 0.5);
} */

.sauce-name,
.rub-name {
    font-weight: 600;
    color: var(--white);
    text-shadow: 0 2px 0 black;
    font-size: 0.95rem;
}

.sauce-heat {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 1rem;
    margin-top: 5px;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideDown {
    from {
        transform: translateY(-50px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@media screen and (width >=824px) {
    .mobile-links {
        display: none !important;
    }

    .backdrop {
        display: none !important;
    }
}

@media screen and (width < 1280px) {
    .container {
        margin-left: 10%;
        margin-right: 10%;
    }

    .container-image {
        margin-left: 15%;
        margin-right: 15%;
    }

    .home-location-row {
        padding: 0 10%;
    }
}

@media screen and (width < 1024px) {
    .container {
        margin-left: 2.5%;
        margin-right: 2.5%;
    }

    .container-image {
        margin-left: 5%;
        margin-right: 5%;
    }

    .home-location-row {
        padding: 0 2.5%;
    }

    .order-now {
        font-size: 1rem;
    }

    .menu-items-grid {
        gap: 15px;
        grid-template-columns: repeat(3, 1fr);
    }

    .menu-category {
        font-size: 2.25rem;
        text-shadow: 0 3px 0 black, -2px -2px 0 black, -3px -4px 0 var(--yellow), 2px 4px 0 var(--light-red);
    }
}

@media screen and (width < 824px) {
    .mobile-menu-view {
        display: flex;
    }

    .main-content {
        margin-top: 10px;
    }

    .top-section {
        flex-direction: column;
        gap: 25px;
        justify-content: space-between;
    }

    .hours-table {
        font-size: 1.1rem;
    }

    .hours-table .imp {
        font-size: 1.5rem;
    }

    .visit-us-at {
        display: none;
    }

    .menu-content,
    .home-content,
    .order-content,
    .specials-content {
        margin-top: 10px;
    }

    .mobile-navbar {
        display: flex;
    }

    .navbar {
        display: none;
    }

    .mobile-links:not(.hidden) {
        display: flex;
    }

    .mobile-links:has(.hidden) {
        display: none;
    }

    .container {
        margin-left: 10px;
        margin-right: 10px;
    }

    .menu-items-grid {
        gap: 15px;
        grid-template-columns: repeat(2, 1fr);
    }

    .scorchin-options-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scorchin-option .option-text {
        font-size: 1.35rem;
    }

    .scorchin-option {
        position: relative;
        height: 185px;
        width: 185px;
    }

    .menu-image {
        height: 225px;
    }

    .main-image {
        min-height: 60vh;
    }

    .hero-content {
        padding: 40px 20px;
    }

    .hero-btn-primary,
    .hero-btn-secondary {
        padding: 12px 28px;
        font-size: 1rem;
    }

    .features-strip {
        flex-wrap: wrap;
    }

    .feature-item {
        flex: 1 1 40%;
        padding: 14px 10px;
    }

    .feature-sep {
        display: none;
    }

    .feature-name {
        font-size: 1.1rem;
    }

    .home-location-row {
        padding: 0 10px;
    }

    .todays-special h2 {
        font-size: 1.5rem;
    }

    .todays-special p.e,
    .todays-special p.o {
        font-size: 0.9rem;
    }

    .todays-special p span.special-price.o,
    .todays-special p span.special-price.e {
        font-size: 1.1rem;
        margin-left: 10px;
    }

    .order-button {
        width: -webkit-fill-available;
        width: -moz-available;
        width: stretch;
        gap: 5px;
    }

    .order-button svg {
        height: 1.5rem !important;
    }

    .order-button img {
        height: 2.5rem !important;
    }
}

@media screen and (width < 632px) {
    .order-button {
        gap: 10px;
        font-size: 0.85rem !important;
    }

    .wing-modal-content {
        padding: 20px;
        margin: 10px;
    }

    .wing-modal-header h1 {
        font-size: 1.75rem !important;
    }

    .wing-types-container {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .wing-type-header {
        font-size: 1.25rem;
    }

    .sauce-header {
        font-size: 1.5rem;
    }

    .heat-legend {
        gap: 10px;
        font-size: 0.8rem;
    }

    .sauces-grid,
    .rubs-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 8px;
    }

    .sauce-item,
    .rub-item {
        user-select: none;
        padding: 10px 12px;
    }

    .sauce-name,
    .rub-name {
        font-size: 0.85rem;
    }
}

.happy-hour-banner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 25px 30px;
    background: linear-gradient(135deg, #0d0000 0%, var(--dark-red) 40%, var(--dark-red) 60%, #0d0000 100%);
    border: 2px solid var(--yellow);
    border-radius: 8px;
    box-shadow: 0 5px 0 black, 0 0 30px rgba(255, 215, 39, 0.15);
    box-sizing: border-box;
}

.happy-hour-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.happy-hour-title {
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 2.75rem;
    color: var(--yellow);
    text-shadow: 0 3px 0 black, 0 0 30px rgba(255, 215, 39, 0.4);
    transform: skewX(-4deg);
    line-height: 1;
}

.happy-hour-time-display {
    font-size: 1rem;
    color: var(--white);
    font-weight: 500;
    text-shadow: 0 2px 0 black;
    letter-spacing: 0.05rem;
}

.happy-hour-deals-list {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

.happy-hour-deal-item {
    background: rgba(255, 215, 39, 0.12);
    border: 1px solid rgba(255, 215, 39, 0.4);
    border-radius: 20px;
    padding: 6px 18px;
    font-size: 0.95rem;
    color: var(--white);
    text-shadow: 0 1px 0 black;
}

.everyday-special-card {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 25px 30px;
    background: linear-gradient(to right, #1a0808, var(--dark-red) 40%, #2a0a0a);
    border: 2px solid var(--light-red);
    border-radius: 8px;
    box-shadow: 0 5px 0 black;
    box-sizing: border-box;
    overflow: hidden;
}

.everyday-special-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 20px,
        rgba(255, 255, 255, 0.012) 20px,
        rgba(255, 255, 255, 0.012) 21px
    );
    pointer-events: none;
}

.everyday-deal-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--yellow);
    color: var(--dark-red);
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 0.7rem;
    padding: 4px 14px;
    border-bottom-left-radius: 6px;
    letter-spacing: 0.12rem;
}

.everyday-deal-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.everyday-deal-time {
    font-size: 0.8rem;
    color: var(--yellow);
    font-weight: 600;
    text-shadow: 0 1px 0 black;
    letter-spacing: 0.05rem;
    text-transform: uppercase;
}

.everyday-deal-name {
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 1.35rem;
    color: var(--white);
    text-shadow: 0 2px 0 black;
    text-wrap: pretty;
}

.everyday-deal-addon {
    font-size: 0.85rem;
    color: rgba(255, 250, 242, 0.6);
    font-style: italic;
    text-shadow: 0 1px 0 black;
}

.everyday-deal-price {
    flex-shrink: 0;
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 2.75rem;
    color: var(--yellow);
    text-shadow: 0 4px 0 black, 0 0 20px rgba(255, 215, 39, 0.3);
    line-height: 1;
    text-align: right;
}

.everyday-deal-price .dollar-sign {
    font-size: 1.25rem;
    vertical-align: super;
    margin-right: 2px;
}

.daily-specials-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.daily-special-card {
    background: linear-gradient(to bottom, #2d1010, var(--dark-red));
    border: 2px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 0 black;
    transition: transform 0.2s ease;
}

/* .daily-special-card:hover {
    transform: translateY(-3px);
} */

.daily-special-card.today {
    border-color: var(--yellow);
    box-shadow: 0 4px 0 black, 0 0 20px rgba(255, 215, 39, 0.25);
}

.daily-card-header {
    background: linear-gradient(to right, var(--dark-red), var(--light-red));
    padding: 10px 14px;
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 1.25rem;
    color: var(--white);
    text-shadow: 0 2px 0 black;
    text-align: center;
    position: relative;
    letter-spacing: 0.05rem;
}

.daily-card-header.today-header {
    background: linear-gradient(to right, #9a7200, var(--yellow));
    color: var(--dark-red);
    text-shadow: none;
}

.today-badge {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    font-size: 0.55rem;
    background: var(--dark-red);
    color: var(--yellow);
    padding: 2px 6px;
    border-radius: 3px;
    letter-spacing: 0.08rem;
    font-family: "Onest", sans-serif;
    font-weight: 700;
}

.daily-card-body {
    padding: 10px 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.special-row {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.2);
}

.special-row.drink-row {
    border-left: 3px solid #88aadd;
}

.special-row.food-row {
    border-left: 3px solid var(--yellow);
}

.special-type-badge {
    font-size: 0.55rem;
    font-weight: 700;
    font-family: "Onest", sans-serif;
    padding: 2px 5px;
    border-radius: 3px;
    letter-spacing: 0.05rem;
    flex-shrink: 0;
}

.drink-badge {
    background: #88aadd;
    color: #0a1a33;
}

.food-badge {
    background: var(--yellow);
    color: var(--dark-red);
}

.special-row-name {
    font-size: 0.82rem;
    color: var(--white);
    text-shadow: 0 1px 0 black;
    text-wrap: pretty;
    line-height: 1.3;
}

.special-row-price {
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 0.95rem;
    color: var(--yellow);
    text-shadow: 0 2px 0 black;
    white-space: nowrap;
}

.menu-category-nav {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 4px 2px 12px;
    scrollbar-width: none;
    -ms-overflow-style: none;
    margin-top: 5px;
}

.menu-category-nav::-webkit-scrollbar {
    display: none;
}

.menu-category-tab {
    flex-shrink: 0;
    cursor: pointer;
    user-select: none;
    font-family: "Bungee", "Onest", sans-serif;
    font-size: 0.85rem;
    color: var(--white);
    background: linear-gradient(to top, color-mix(in hsl, var(--dark-red) 100%, black 35%), var(--dark-red));
    border-radius: 4px;
    padding: 8px 18px;
    text-shadow: 0 2px 0 black;
    box-shadow: 0 3px 0 black;
    white-space: nowrap;
    transform: skewX(-5deg);
    transition: color 0.15s ease, background 0.15s ease, border-color 0.15s ease, box-shadow 0.15s ease;
}

.menu-category-tab span {
    display: inline-block;
    transform: skewX(5deg);
}

.menu-category-tab:hover {
    color: var(--yellow);
    background: linear-gradient(to top, var(--dark-red), var(--light-red));
}

.menu-category-tab:active {
    transform: skewX(-5deg) translateY(2px);
    box-shadow: 0 1px 0 black;
}

@media screen and (width < 824px) {
    .daily-specials-cards {
        grid-template-columns: repeat(2, 1fr);
    }

    .everyday-special-card {
        flex-direction: column;
        align-items: flex-start;
        padding: 20px;
    }

    .everyday-deal-price {
        font-size: 2rem;
        align-self: flex-end;
    }
}

@media screen and (width < 632px) {
    .happy-hour-title {
        font-size: 2rem;
    }

    .everyday-deal-name {
        font-size: 1.1rem;
    }

    .daily-specials-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}