@font-face {
  font-family: OPTIJackson;
  src: url(fonts/OPTIJackson.otf);
}

body {
    font-family: 'Poppins', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f3f3f3;
    color: #333;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

#dark-mode {
    position: absolute;
    left: 15px;
    top: 10px;
}

#dark-mode-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
}

#staff-comments {
    position: absolute;
    left: 70px;
    top: 10px;
}

#staff-comments-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
}

nav > #staff-comments-toggle {
    margin-right: 40px;
}

#staff-chat {
    position: absolute;
    left: 135px;
    top: 10px;
}

#staff-chat-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 24px;
}

nav > #staff-chat-toggle {
    margin-right: 80px;
}

#popup-box {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 1000;
    display: block;
    overflow: hidden;
    pointer-events: none;
}

#popup-container {
    position: relative;
    margin: 0;
    padding: 0;
    display: block;
    height: 100%;
    width: 100%;
}

nav > #dark-mode-toggle {
    display: none;
}

#dark-mode-toggle .fa-sun {
    display: none;
}

body.dark #dark-mode-toggle .fa-sun {
    display: inline;
}

body.dark #dark-mode-toggle .fa-moon {
    display: none;
}

nav > #staff-comments-toggle {
    display: none;
}

nav > #staff-chat-toggle {
    display: none;
}

nav > #staff-comments-toggle,
#staff-comments-toggle {
    color: white;    
}

nav > #staff-comments-toggle:hover,
#staff-comments-toggle:hover {
    color: #e91e63;    
}

nav > #staff-comments-toggle[data-comments="on"],
#staff-comments-toggle[data-comments="on"] {
    color: #e91e63;
}

nav > #staff-chat-toggle,
#staff-chat-toggle {
    color: white;    
}

nav > #staff-chat-toggle:hover,
#staff-chat-toggle:hover {
    color: #e91e63;    
}

nav > #staff-chat-toggle[data-chat="on"],
#staff-chat-toggle[data-chat="on"] {
    color: #e91e63;
}

header {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%), url('images/header-texture.png');
    color: #fff;
    padding: 60px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: fadeIn 1s ease-in-out;
    background-size: cover;
    z-index: 100;
}

header h1 {
    margin: 0;
    font-size: 10em;
    text-shadow: 0 0 10px pink, 3px 3px 5px rgba(0, 0, 0, 0.5);
    font-weight: 100;
    position: relative;
    z-index: 2;
    animation: fadeInDown 1s ease-in-out;
    font-family: 'OPTIJackson';
}

header h1 span {
    font-size: .25em;
    transform: rotate(-15deg) translate(-.1em, -.2em);
    position: absolute;
}

header p {
    margin: 10px 0 0;
    font-size: 1.2em;
    text-shadow: 1px 1px #333;
}

header .hours {
    margin-top: 20px;
    font-size: .7em;
    position: relative;
    z-index: 2;
    animation: fadeInUp 1.5s ease-in-out;
}

header .socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 50px;
    margin-bottom: -50px;
}

header .socials a {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,.4);
    height: 45px;
    cursor: pointer;
    transition: all .1s ease;
    z-index: 0;
    filter: brightness(1);
    transform: scale(1);
}

header .socials a:hover {
    z-index: 3;
    filter: brightness(1.1);
    transform: scale(1.1);
}

header .socials img {
    border-radius: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,.4);
    height: 45px;
    cursor: pointer;
    transition: all .1s ease;
    z-index: 0;
    filter: brightness(1);
    transform: scale(1);
}

header .socials img:hover {
    z-index: 3;
    filter: brightness(1.1);
    transform: scale(1.1);
}

nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: #333;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

nav ul {
    list-style-type: none;
    margin: 0;
    padding: 15px 0;
    text-align: center;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

nav ul li {
    display: inline-block;
    margin: 0 20px;
    position: relative;
}

nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1em;
    transition: color 0.3s;
}

nav ul li a:hover {
    color: #e91e63;
}

nav ul li ul.submenu {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
}

nav ul li:hover > ul.submenu {
    display: flex;
}

nav ul li ul li {
    position: relative;
    white-space: nowrap;
}

nav ul li ul li a {
    color: #333;
}

/* Second-level submenu */
nav ul li ul.sub-submenu {
    display: none;
    position: absolute;
    top: 0;
    left: 100%;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    flex-direction: column;
    align-items: flex-start;
}

nav ul li ul li:hover > ul.sub-submenu {
    display: flex;
}

.menu-toggle {
    display: none;
    height: 50px;
    margin-bottom: -4px;
    margin-top: -2px;
}

nav #order-now {
    position: absolute;
    right: 0px;
    background: white;
    padding: 10px 20px;
    top: 5px;
    cursor: pointer;
    color: black;
}

nav #order-now a {
    color: black;
}

nav #order-now:hover a {
    color: #e91e63;
}

nav #return {
    position: absolute;
    right: 0px;
    background: white;
    padding: 10px 20px;
    top: 5px;
    cursor: pointer;
    color: black;
}

nav #return a {
    color: black;
}

nav #return:hover a {
    color: #e91e63;
}

#widget-container.chat {
    display: block;
    position: sticky;
    top: 60px;
    padding-left: 10px;
    z-index: 500;
    width: min(600px, 90vw);
    height: 0;
}

#widget-container.chat iframe {
    height: 0;
    transition: height .2s ease;
}

#widget-container.chat.open iframe {
    height: 90vh;
}

main {
    flex: 1;
    width: 100%;
}

section {
    padding: 100px 20px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

#about {
    background: url('images/entrance.jpg') no-repeat center center fixed;
    background-size: cover;
    color: white;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background-position: top;
}

#about .overlay {
    background-color: rgba(0, 0, 0, 0.7);
    padding: 50px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

#about h2,
#about p {
    color: #fff;
}

section h2 {
    color: #e91e63;
    border-bottom: 2px solid #e91e63;
    padding-bottom: 5px;
    font-size: 2.5em;
    font-weight: 600;
    margin-top: 0;
}

section p, section ul {
    font-size: 1.2em;
    line-height: 1.6em;
}

section ul {
    list-style-type: square;
    padding-left: 20px;
}

section {
    margin-bottom: 10px;
}

#menu {
    background-color: #fff;
    padding: 60px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
}

#menu h2 {
    font-size: 3em;
    margin-bottom: 40px;
    text-align: center;
}

.menu-category {
    font-size: 2em;
    color: #e91e63;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
    border-bottom: 2px solid #e91e63;
    padding-bottom: 10px;
    text-align: left;
}

.menu-subcategory-section {
    border-top: 2px solid #333;
    border-radius: 10px;
    margin-bottom: -30px;
    padding: 20px;
    margin-top: 60px;
}

.menu-subcategory {
    color: #333;
    background: white;
    box-sizing: border-box;
    width: max-content;
    padding-inline: 10px;
    margin: -35px auto 10px;
    white-space: nowrap;
}

#menu-items {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-category-section {
    width: 100%;
}

.items-container {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}

.menu-item {
    background-color: #fff;
    background-size: cover;
    background-position: center;
    border: 2px solid #e91e63;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    width: calc(33.333% - 40px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.menu-item::before {
    content: "";
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: opacity 0.3s;
}

.menu-item:hover::before {
    opacity: 0.6;
}

.menu-item h4 {
    margin-top: 0;
    color: #e91e63;
    position: relative;
    z-index: 2;
}

.menu-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.menu-item.new::after {
    content: "NEW!";
    font-size: 70%;
    font-weight: 900;
    color: white;
    background: #e91e63;
    padding: 2%;
    display: block;
    position: absolute;
    bottom: 35%;
    right: 1%;
    clip-path: polygon(50% 0%, 83% 12%, 100% 43%, 94% 78%, 68% 100%, 32% 100%, 6% 78%, 0% 43%, 17% 12%);
    rotate: 20deg;
    z-index: 1;
}

/* Overlay for menu item details */
#menu-details-overlay, #event-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#menu-details, #event-details {
    background-color: #fff;
    border: 2px solid #e91e63;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

#menu-details img, #event-details img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

#menu-details .close-btn, #event-details .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 5;
}

#menu-details .close-btn:hover, #event-details .close-btn:hover {
    background: #d81b60;
}

.comment-by[data-suggested],
#item-suggested-by[data-suggested] {
    content: "";
    background-image: none;
    background-size: contain;
    border-radius: 100%;
    height: 100px;
    width: 100px;
    position: absolute;
    left: 30px;
    top: 50px;
    border-bottom: solid 2px #e91e63;
    border-right: solid 2px #e91e63;
    border-top: dashed 1px #333;
    border-left: dashed 1px #333;
    cursor: pointer;
    box-shadow: 0 2px 3px #333;
    transform: scale(1);
    transition: transform .3s ease;
    z-index: 70; /* Ensure it appears above other elements */
}

.comment-by[data-suggested][data-comment].auto,
#item-suggested-by[data-suggested][data-comment]:hover {
    transform: scale(1.2);
}

.comment-by[data-suggested="Melissa Salvato"],
#item-suggested-by[data-suggested="Melissa Salvato"] {
    background-image: url('images/chibi_melissa.png');
    background-color: #003a5f;
}

.comment-by[data-suggested="Jordyn Similis"],
#item-suggested-by[data-suggested="Jordyn Similis"] {
    background-image: url('images/chibi_jordyn.png');
    background-color: #fadb9f;
}

.comment-by[data-suggested="Jamie Waters"],
#item-suggested-by[data-suggested="Jamie Waters"] {
    background-image: url('images/chibi_jamie.png');
    background-color: seagreen;
}

.comment-by[data-suggested="Thalia Phoenix"],
#item-suggested-by[data-suggested="Thalia Phoenix"] {
    background-image: url('images/chibi_thalia.png');
    background-color: coral;
}

.comment-by[data-suggested="Phoenix Hunter"],
#item-suggested-by[data-suggested="Phoenix Hunter"] {
    background-image: url('images/chibi_phoenix.png');
    background-color: mediumvioletred;
}

.comment-by[data-suggested="Anita Pastel"],
#item-suggested-by[data-suggested="Anita Pastel"] {
    background-image: url('images/chibi_anita.png');
    background-color: lightblue;
}

.comment-by[data-suggested="Raye Nessance"],
#item-suggested-by[data-suggested="Raye Nessance"] {
    background-image: url('images/chibi_raye.png');
    background-color: palegreen;
}

.comment-by[data-suggested="Autumn Sundae"],
#item-suggested-by[data-suggested="Autumn Sundae"] {
    background-image: url('images/chibi_autumn.png');
    background-color: darksalmon;
}

.comment-by[data-suggested="Primrose Jackson"],
#item-suggested-by[data-suggested="Primrose Jackson"] {
    background-image: url('images/chibi_primrose.png');
    background-color: brown;
}

.comment-by[data-suggested="Sonny Meadows"],
#item-suggested-by[data-suggested="Sonny Meadows"] {
    background-image: url('images/chibi_sonny.png');
    background-color: teal;
}

.comment-by[data-suggested="Tysondovah"],
#item-suggested-by[data-suggested="Tysondovah"] {
    background-image: url('images/chibi_tysondovah.png');
    background-color: lavenderblush;
}

.comment-by[data-suggested="Miki Hartwell"],
#item-suggested-by[data-suggested="Miki Hartwell"] {
    background-image: url('images/chibi_miki.png');
    background-color: hotpink;
}

.comment-by[data-suggested][data-comment]::after,
#item-suggested-by[data-suggested][data-comment]::after {
    content: attr(data-comment);
    position: absolute;
    top: 40%;
    left: 100%; /* Position to the right of the element */
    transform: translateY(-50%);
    background-color: #333;
    color: #fff;
    padding: 5px;
    border-radius: 3px;
    width: min(70vw, 420px);
    max-width: 420px; /* Set the width limit */
    white-space: pre-wrap;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none; /* Prevents the tooltip from blocking hover */
    animation: wobble-in 0.5s ease forwards, wobble-out 0.5s ease forwards;
    animation-play-state: paused;
    transform-origin: left center;
    box-shadow: 0 5px 5px -3px rgba(51, 51, 51, .5);
    scale: .9;
}

@keyframes wobble-in {
    0% {
        transform: translateY(-50%) translateX(-10px) rotate(-45deg);
    }
    25% {
        transform: translateY(-50%) translateX(-5px) rotate(1deg);
    }
    50% {
        transform: translateY(-50%) translateX(0px) rotate(-.8deg);
    }
    75% {
        transform: translateY(-50%) translateX(5px) rotate(.4deg);
    }
    100% {
        transform: translateY(-50%) translateX(10px) rotate(0deg);
    }
}

@keyframes wobble-out {
    0% {
        transform: translateY(-50%) translateX(10px) rotate(0deg);
    }
    25% {
        transform: translateY(-50%) translateX(5px) rotate(-.4deg);
    }
    50% {
        transform: translateY(-50%) translateX(0px) rotate(.8deg);
    }
    75% {
        transform: translateY(-50%) translateX(-5px) rotate(-1deg);
    }
    100% {
        transform: translateY(-50%) translateX(-10px) rotate(45deg);
    }
}


.comment-by[data-suggested][data-comment].auto::after,
#item-suggested-by[data-suggested][data-comment]:hover::after {
    opacity: 1;
    visibility: visible;
    animation-play-state: running; /* Start the wobble-in animation */
    animation: wobble-in 0.5s ease forwards;
}

.comment-by[data-suggested][data-comment]::after,
#item-suggested-by[data-suggested][data-comment]::after {
    opacity: 0;
    visibility: hidden;
    animation: wobble-out 0.5s ease forwards;
}

#menu-item-name {
    position: absolute;
    bottom: 33px;
    left: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2em;
    z-index: 2;
    width: -webkit-fill-available;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-items: stretch;
}

#menu-item-name h4 {
    text-align: left;
}

.labels {
    bottom: 2px;
    left: 15px;
    position: absolute;
}

#menu-item-name .labels {
    text-align: right;
    margin-top: -10px;
    position: relative;
}

.label {
    padding: 8px;
    border-radius: 5px 5px 0 0;
    font-size: 14px;
    font-weight: bold;
    margin-right: 10px;
}

.vegan {
    background-color: #4CAF50; /* Green background for better visibility */
    color: white;
    white-space: nowrap;
}

.gluten-free {
    background-color: #FF9800; /* Orange background for better visibility */
    color: black;
    white-space: nowrap;
}

.spicy {
    background-color: #FF5733; /* Bright orange-red for visibility */
    color: white;
    white-space: nowrap;
}

.nut-allergy {
    background-color: #FFD700; /* Gold for high visibility */
    color: black;
    white-space: nowrap;
}

.dairy-free {
    background-color: #8A2BE2; /* Blue-violet for distinction */
    color: white;
    white-space: nowrap;
}

.vegetarian {
    background-color: #6B8E23; /* Olive green for a natural feel */
    color: white;
    white-space: nowrap;
}

footer {
    background-color: #333;
    color: #fff;
    text-align: center;
    padding: 20px 0;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
}

button {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

button:hover {
    background: linear-gradient(135deg, #d81b60 0%, #ff4081 100%);
    transform: scale(1.05);
}

/* Ad banner styles */
#advert {
    aspect-ratio: 5 / 1;
    padding: 20px 0;
    width: 100%;
    max-width: 1240px;
}

#advert:has(.slides:empty) {
    display: none;
}

#advert .ad-banner {
    position: relative;
    max-height: 100%;
    margin: auto;
    overflow: hidden;
    border-radius: 10px;
}

#advert .slides {
    display: flex;
    transition: transform 0.5s ease;
}

#advert .slide {
    min-width: 100%;
    box-sizing: border-box;
    transition: transform 0.5s ease-in-out;
    aspect-ratio: 5 / 1;
}

#advert .slide img {
    width: 100%;
    height: 100%;
    display: block;
    border-radius: 10px;
}

#advert .dots {
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}

#advert .dot {
    cursor: pointer;
    height: 15px;
    width: 15px;
    margin: 0 2px;
    background-color: #bbb;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.6s ease;
}

#advert .active, #advert .dot:hover {
    background-color: #717171;
}

#shop {
    background: #fff;
    color: #333;
    padding: 60px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#shop #shop-list .shop-item-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    align-items: stretch;
    gap: 20px;
}

#shop #shop-list h4 {
    margin-top: 0;
    color: #e91e63;
    font-size: 25px;
    position: relative;
}

#shop #shop-list p {
    margin: 0;
    margin-bottom: 20px;
}

#shop .shop-item {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: center;
    transition: transform 0.1s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#shop .shop-item img {
    max-width: 300px;
    max-height: 300px;
    border-radius: 10px;
}

#shop .shop-item:hover {
    transform: scale(1.05);
}

#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#contact-form label, #contact-form input, #contact-form textarea {
    margin-bottom: 10px;
    font-size: 1.1em;
}

#contact-form input, #contact-form textarea {
    resize: vertical;
}

#events, #testimonials {
    background-color: #fff;
    padding: 60px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
}

#testimonials h2 {
    font-size: 3em;
    margin-bottom: 40px;
    text-align: center;
}

#events h2 {
    font-size: 3em;
    margin-bottom: 40px;
    text-align: center;
}

#events-list {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.event-item {
    background-color: #fff;
    background-size: cover;
    background-position: center;
    border: 2px solid #e91e63;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    width: calc(50% - 20px); /* Adjust the width calculation */
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
    margin: 20px 0;
}

.event-item:first-child {
    width: 100%; /* Ensure the first event spans the full width */
}

.event-item::before {
    content: "";
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.8), rgba(255, 255, 255, 0.8));
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 1;
    transition: opacity 0.3s;
}

.event-item:hover::before {
    opacity: 0.6;
}

.event-item h4 {
    margin-top: 0;
    color: #e91e63;
    position: relative;
    z-index: 2;
}

.event-item p {
    color: #333;
    position: relative;
    z-index: 2;
    margin: 10px 0;
}

.event-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.event-image-container {
    position: relative;
}

.event-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2em;
    z-index: 2;
}

#event-details {
    background-color: #fff;
    border: 2px solid #e91e63;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    animation: fadeIn 0.5s ease-in-out;
    max-width: 600px;
    border-radius: 10px;
    position: relative;
}

#event-details img {
    max-width: 100%;
    height: auto;
    margin-bottom: 10px;
    border-radius: 10px;
}

#event-details .event-image-container {
    position: relative;
}

#event-details .event-image-container img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

#event-details .event-name {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 1.2em;
    z-index: 2;
}

#event-details-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

#event-details .close-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 3;
}

#staff {
    padding: 60px 20px;
    border-radius: 10px;
    text-align: center;
}

#staff h2 {
    font-size: 3em;
    margin-bottom: 40px;
    text-align: center;
    color: #e91e63;
}

#staff-list {
    display: flex;
    flex-wrap: wrap;
    grid-gap: 20px;
    justify-content: space-evenly;
    align-items: stretch;
    justify-items: center;
}

.staff-member {
    background-color: #fff;
    border: 2px solid #e91e63;
    padding: 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
    border-radius: 10px;
    text-align: center;
    min-width: min(45vw, 380px);
    max-width: min(100vw, 380px);
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.staff-member img {
    max-width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 50%;
    margin-bottom: 10px;
}

.staff-member h4 {
    margin-top: 0;
    color: #e91e63;
    font-size: 28px;
    position: relative;
}

.staff-member h4::after {
    content: "";
    position: relative;
    display: inline-block;
    height: 30px;
    width: 20px;
    right: -5px;
    top: 10px;
    background-clip: border-box;
    background-size: contain;
    background-repeat: no-repeat;
}

.staff-member h4.male::after {
    background-image: url(images/male.png);
}

.staff-member h4.female::after {
    background-image: url(images/female.png);
}

.staff-member h4.futa::after {
    background-image: url(images/futa.png);
}

.staff-member p {
    color: #333;
}

.staff-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

#event-details .close-btn:hover {
    background: #d81b60;
}

#contact {
    padding: 60px 20px;
    border-radius: 10px;
    text-align: center;
}

#contact h2 {
    font-size: 3em;
    margin-bottom: 40px;
    text-align: center;
    color: #e91e63;
}

#contact-form {
    display: flex;
    flex-direction: column;
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
}

#contact-form label {
    margin-bottom: 10px;
    font-size: 1.1em;
    color: #333;
    text-align: left;
}

#contact-form input,
#contact-form textarea {
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1em;
    margin-bottom: 20px;
    transition: border-color 0.3s;
}

#contact-form input:focus,
#contact-form textarea:focus {
    border-color: #e91e63;
    outline: none;
}

#contact-form textarea {
    resize: vertical;
    height: 150px;
}

#contact-form button {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: #fff;
    border: none;
    padding: 15px 20px;
    cursor: pointer;
    font-size: 1.2em;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 600;
    border-radius: 5px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

#contact-form button:hover {
    background: linear-gradient(135deg, #d81b60 0%, #ff4081 100%);
    transform: scale(1.05);
}

.testimonials-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.testimonial {
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 20px;
    max-width: 300px;
    text-align: left;
    transition: transform 0.1s ease;
}

.testimonial:hover {
    transform: scale(1.05);
}

.testimonial p {
    font-style: italic;
    font-size: 18px;
    color: #555;
    margin-bottom: 10px;
}

.testimonial h4 {
    font-size: 16px;
    color: #ff4081;
    margin-top: 10px;
    text-align: right;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideIn {
    from {
        transform: translateY(-20px);
    }
    to {
        transform: translateY(0);
    }
}

/* Media queries for responsive design */
@media (max-width: 768px) {
    header {
        font-size: 2vw;
    }

    .staff-member {
        width: 100%;
    }

    .items-container {
        flex-direction: column;
    }

    .menu-item, .event-item {
        width: 100%;
    }
    
    #item-suggested-by[data-suggested][data-comment]:hover {
        transform: scale(1);
    }
}

@media (max-width: 1160px) {
    nav ul {
        flex-direction: column;
        display: none; /* Hide the menu by default on mobile */
    }

    nav ul.show {
        display: flex;
        flex-wrap: nowrap;
        flex-direction: column;
        justify-content: flex-start;
        overflow-y: auto;
        height: 90vh;
        padding: 0;
    }

    .menu-toggle {
        display: block;
        position: relative;
        z-index: 1;
    }

    nav ul li {
        display: block;
        margin: 10px 0;
    }
    
    nav #order-now, nav #return {
        position: relative;
    }
    
    #dark-mode {
        display: none;
    }
    
    nav > #dark-mode-toggle {
        display: block;
        cursor: pointer;
        font-size: 16px;
        position: absolute;
        box-shadow: none;
        right: 1px;
        top: 0;
        height: 50px;
        margin-bottom: -4px;
        margin-top: -2px;
    }
    
    #staff-comments {
        display: none;
    }
    
    nav > #staff-comments-toggle {
        display: block;
        cursor: pointer;
        font-size: 16px;
        position: absolute;
        box-shadow: none;
        right: 1px;
        top: 0;
        height: 50px;
        margin-bottom: -4px;
        margin-top: -2px;
    }
    
    #staff-chat {
        display: none;
    }
    
    nav > #staff-chat-toggle {
        display: block;
        cursor: pointer;
        font-size: 16px;
        position: absolute;
        box-shadow: none;
        right: 1px;
        top: 0;
        height: 50px;
        margin-bottom: -4px;
        margin-top: -2px;
    }

    nav ul li ul.submenu {
        display: block;
        position: relative;
        width: 100%;
        top: 0px;
    }

    nav ul li ul li:hover > ul.sub-submenu {
        display: none;
    }
}

header {
    background: linear-gradient(135deg, rgba(233, 30, 99, 0.8) 0%, rgba(255, 64, 129, 0.8) 100%), url('images/header-background.jpg') no-repeat center center;
    background-size: cover;
    color: #fff;
    padding: 100px 20px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
    pointer-events: none;
}

header p {
    margin: 10px 0 0;
    font-size: 1.5em;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease-in-out;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

#menu-details img.placeholder {
    display: block;
    background-image: repeating-linear-gradient(
        45deg,
        #ff99cc,     /* Light pink */
        #ff99cc 10px,
        #ff66b2 10px,     /* Darker pink */
        #ff66b2 20px
    );
    background-size: cover;
    background-position: center;
    width: 600px;  /* Adjust as needed */
    aspect-ratio: 1 / 1;
}

/* QR Code Scanner Modal */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1000; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 5vh auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    max-width: 600px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* Order List */
#order-list {
    position: fixed;
    bottom: 0;
    left: 0;
    width: calc(100% - 40px);
    height: 50px;
    background-color: #fff;
    border-top: 2px solid #0288d1;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 20px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    z-index: 15;
    transition: all .2 ease;
}

#order-list span {
    font-size: 8rem;
}

div#table-number {
    font-size: max(2vw, 32px) !important;
    position: absolute;
    bottom: 90px;
    right: 0;
    background: #0288d1;
    color: white;
    padding: 10px;
    border-top: solid 2px;
    border-left: solid 2px;
    border-radius: 10px 0 0 0;
    cursor: pointer;
}

div#table-number:hover {
    filter: brightness(1.3);
}

body:not(.ordering-mode) #order-list {
    display: none;
}

.order-button {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: #fff !important;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.order-button:hover {
    background: linear-gradient(135deg, #d81b60 0%, #ff4081 100%);
    transform: scale(1.05);
}

.order-button.disabled {
    opacity: .3;
    pointer-events: none;
}

.order-staff-member {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

#order-staff::after {
    content: "Staff Member";
    color: white;
    background: #0288d1;
    position: absolute;
    bottom: 5px;
    padding: 0 10px;
    border-radius: 100px;
    left: 30px;
}

#order-staff,
#order-items {
    display: flex;
    gap: 10px;
}

#order-staff, #order-staff img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

#order-staff img {
    margin-top: -20px;
    border-inline: solid 2px #0288d1;
    border-top: solid 2px #0288d1;
}

img[src $= "images/melissa.jpg"] {
    background: #003a5f;
}

img[src $= "images/jordyn.jpg"] {
    background: #fadb9f;
}

img[src $= "images/jamie.jpg"] {
    background: seagreen;
}

img[src $= "images/thalia.jpg"] {
    background: coral;
}

img[src $= "images/phoenix.jpg"] {
    background: mediumvioletred;
}

img[src $= "images/anita.jpg"] {
    background: lightblue;
}

img[src $= "images/raye.jpg"] {
    background: palegreen;
}

img[src $= "images/autumn.jpg"] {
    background: darksalmon;
}

img[src $= "images/primrose.jpg"] {
    background: brown;
}

img[src $= "images/sonny.jpg"] {
    background: teal;
}

img[src $= "images/tysondovah.jpg"] {
    background: lavenderblush;
}

img[src $= "images/miki.jpg"] {
    background: hotpink;
}

#order-items img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.remove-btn {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.8);
    color: #fff !important;
    border: none;
    padding: 0;
    border-radius: 100%;
    cursor: pointer;
    font-size: 2rem;
    box-shadow: none;
    display: none;
}

.order-staff-member .remove-btn {
    margin-top: -20px;
    height: 150px;
    width: 150px;
    top: -10px;
    left: 2px;
}

.order-item:hover .remove-btn,
.order-staff-member:hover .remove-btn {
    display: block;
    background: rgba(0, 0, 0, 0.8);
}

.order-item, .order-staff-member {
    position: relative;
    cursor: pointer;
}

.order-item {
    height: 50px;
}

.order-staff-member {
    height: 150px;
}

#order-list .order-button {
    float: right;
    position: absolute;
    right: 15px;
    display: none;
}

/* Ordering mode styles */
body.ordering-mode {
    background-color: #e0f7fa;
}

body.ordering-mode footer {
    padding-bottom: 100px;
}

.ordering-mode header {
    filter: hue-rotate(230deg);    
}

.ordering-mode.ordering-mode *:not(p, strong, li a, header, div.hours, h1, h1 *, footer, span.label, nav, nav *), .ordering-mode #staff *:not(p, strong), .ordering-mode #menu-details {
    border-color: #0288d1;
    color: #0288d1;
}

.ordering-mode.ordering-mode nav button:hover,
.ordering-mode.ordering-mode nav a:hover {
    color: #0288d1;
}

.ordering-mode.ordering-mode nav button#menu-toggle.menu-toggle {
    color: white;
    background: #0288d1
}

.ordering-mode .order-button, .ordering-mode #menu-details #close-btn {
    background: #0288d1;
}

.ordering-mode div.socials {
    display: none;
}

.ordering-mode nav li:not(.stay),
body:not(.ordering-mode) nav li.hide {
    display: none;
}

.ordering-mode nav li.hide {
    display: block;
}

.ordering-mode .staff-member.disabled {
    opacity: .8;
    pointer-events: none;
    position: relative;
}

.ordering-mode .staff-member.disabled::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, black, transparent 25%);
}

.ordering-mode .staff-member.disabled .overworked-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgb(255, 0, 0);
    color: white !important;
    padding: 5px 10px;
    border-radius: 5px;
    font-weight: bold;
    text-align: center;
    font-size: 2.5rem;
    white-space: nowrap;
    rotate: -20deg;
    pointer-events: none; /* Ensure the text doesn't block interactions */
}

.ordering-mode .staff-member:not(:has(p.waiter, p.waitress)) {
    display: none;
}

body:not(.ordering-mode) .staff-member.disabled .overworked-text {
    display: none;
}

.ordering-mode .staff-member.disabled img {
    filter: grayscale(.5) brightness(0.5);
    opacity: .7;
    filter: grayscale(.6) brightness(0.8);
}

/* Help section */
#help {
    background-color: #fff;
    padding: 60px 20px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
}

#help h2 {
    font-size: 3em;
    margin-bottom: 40px;
    text-align: center;
}

#help p {
    font-size: 1.2em;
    line-height: 1.6em;
    color: black;
}

#help button {
    background: #0288d1;
    color: white;
    margin: auto;
    margin-top: 30px;
    user-select: none;
}

#help button.disabled {
    opacity: .5;
    pointer-events: none;
}

body:not(.ordering-mode) #help, body:not(.ordering-mode) #menu-description button {
    display: none;
}

#menu-description {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

/* Popup Overlay */
.popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 1000;
}

/* Popup Content */
.popup-content {
    background-color: #fff;
    padding: 20px;
    text-align: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    position: relative;
    max-width: 400px;
    width: 80%;
}

/* Close Button */
.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    background: #e91e63;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2em;
    line-height: 1;
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.close-popup-btn:hover {
    background: #d81b60;
}

#ok-popup-btn {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
}

#ok-popup-btn:hover {
    background: linear-gradient(135deg, #d81b60 0%, #ff4081 100%);
    transform: scale(1.05);
}

#qr-buttons {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    margin-top: 20px;
}

#file-upload-btn {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    width: 100%;
}

#file-upload-btn:hover {
    background: linear-gradient(135deg, #d81b60 0%, #ff4081 100%);
    transform: scale(1);
}

#pre-order-btn {
    background: linear-gradient(135deg, #e91e63 0%, #ff4081 100%);
    color: #fff;
    border: none;
    padding: 10px 20px;
    cursor: pointer;
    font-size: 1.1em;
    transition: background-color 0.3s, transform 0.3s;
    font-weight: 600;
    border-radius: 4px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    margin-top: 20px;
    width: 100%;
}

#pre-order-btn:hover {
    background: linear-gradient(135deg, #d81b60 0%, #ff4081 100%);
    transform: scale(1);
}

/* Expand Order List */

#order-list.open {
    height: 100vh;
    z-index: 500;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    padding: 0;
    margin: 0;
    width: 100vw;
    overflow-y: auto;
}

body.ordering-mode:has(#order-list.open) {
    overflow: hidden;
}

#order-list.open div#table-number {
    font-size: max(2vw, 32px) !important;
    position: relative;
    bottom: auto;
    right: 0;
    padding: 10px;
    border: none;
    text-align: center;
    position: sticky;
    top: 0;
    left: 0;
    border-radius: 0;
    z-index: 5;
}

#order-list > span {
    transform: rotate(0deg);
    height: 100px;
    width: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

#order-list.open > span {
    transform: rotate(90deg);
    width: 150px;
    height: 50px;
    margin-block: 25px;
    margin-left: 50px;
}

#order-list.open div#order-staff {
    width: auto;
    padding: 20px;
    margin: 0;
    border: none;
    position: relative;
}

#order-list.open div#order-staff {
    margin-left: 35px;
}

#order-list.open div#order-items {
    display: flex;
    margin: 0 75px;
    border: solid;
    border-radius: 10px;
    flex-direction: column;
    padding: 20px;
    margin-bottom: 100px;
}

#order-list.open div#order-items:empty {
    border-style: dashed;
}

#order-list.open div#order-items div.order-item:hover {
    background: lightgray;
}

#order-list.open div#order-items:empty::before {
    content: "Your order is empty. Add some items in!";
    color: #333;
}

#order-list.open div#order-items div.order-item {
    display: flex;
    align-items: center;
    gap: 25px;
    padding: 15px;
}

#order-list.open div#order-staff div.order-staff-member {
    gap: 50px;
}

#order-list.open div#order-staff div.order-staff-member span img {
    margin: 0;
}

#order-list.open div#order-staff div.order-staff-member span {
    position: relative;
    height: 150px;
    width: 150px;
    display: flex;
}

#order-list.open div#order-staff div.order-staff-member span .remove-btn {
    top: 0;
    left: 0;
    margin: 0;
}

#order-list div#order-items div.order-item span {
    font-size: 1rem;
}

#order-list.open div#order-items div.order-item span {
    position: relative;
    height: 50px;
    width: 50px;
    display: flex;
}

#order-list div#order-staff div.order-staff-member div.item-details,
#order-list div#order-items div.order-item div.item-details {
    display: none;
}

#order-list.open div#order-staff div.order-staff-member div.item-details,
#order-list.open div#order-items div.order-item div.item-details {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: stretch;
    overflow: hidden;
}

#order-list.open div#order-staff div.order-staff-member div.item-details h3,
#order-list.open div#order-staff div.order-staff-member div.item-details p,
#order-list.open div#order-items div.order-item div.item-details h3,
#order-list.open div#order-items div.order-item div.item-details p {
    margin: 0;
    color: #333;
}
 
#order-list.open div#order-items div.order-item div.item-details h3,
#order-list.open div#order-items div.order-item div.item-details p {   
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

#order-list.open .order-button {
    bottom: 10px;
    position: fixed;
    width: 300px;
    left: calc(50vw - 150px);
    display: block;
}

@media (max-width: 768px) {
    #order-list:not(.open) *:not(#table-number) {
        display: none;
    }
    
    #order-list:not(.open) {
        height: 0;
        padding-block: 15px;
    }
    
    #order-list:not(.open) #table-number {
        bottom: 30px;
    }
    
    #order-list:not(.open)::after {
        transform: scaleX(2) rotate(-90deg);
        content: "»";
        font-size: 3rem;
        text-align: center;
        width: 100%;
    }

    #order-list.open div#order-staff {
        margin-left: 5px;
    }
    
    #order-list.open > span {
        margin-left: 30px;
    }
    
    #order-list.open div#order-items {
        margin: 0 15px;
        margin-bottom: 100px;
    }
}

/* Dark Mode */

body.dark {
    background: #111;
}

body.dark section#menu,
body.dark section#staff,
body.dark section#events,
body.dark section#shop,
body.dark section#testimonials,
body.dark section#contact form#contact-form,
body.dark section#help {
    background: #222;
}

body.dark section#help p,
body.dark section#shop p,
body.dark #order-list.open div#order-staff .order-staff-member .item-details h3,
body.dark #order-list.open div#order-staff .order-staff-member .item-details p,
body.dark #order-list.open div#order-items .order-item .item-details h3,
body.dark #order-list.open div#order-items .order-item .item-details p,
body.dark #order-list.open div#order-items:empty::before {
    color: antiquewhite;
}

body.dark section#menu .menu-subcategory-section {
    border-color: antiquewhite;
}

body.dark section#shop .shop-item,
body.dark section#staff .staff-member,
body.dark section#staff .staff-member p,
body.dark section#staff .staff-member strong {
    background: #333;
    color:antiquewhite;
}

body.dark section#menu h4.menu-subcategory,
body.dark section#contact form#contact-form label,
body.dark section#contact form#contact-form input,
body.dark section#contact form#contact-form textarea {
    background: #222;
    color: antiquewhite;
}

body.dark #order-list {
    background: #333;
    color: antiquewhite;
}

.morph-container {
  position: relative;
  width: 300px; /* Adjust to the size of your images */
  height: 300px;
  margin: 20px auto;
}

.morph-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* This ensures the images cover the entire container */
  transition: opacity 0.6s ease-in-out; /* Smooth transition for the fade effect */
}

.anime {
  opacity: 1;
}

.real {
  opacity: 0;
}

.morph-container:hover .anime,
.morph-container:focus .anime {
  opacity: 0;
}

.morph-container:hover .real,
.morph-container:focus .real {
  opacity: 1;
}
