body {
    margin: 0;
    padding: 0;
    background-color: #f4f4f4;
    overflow: hidden;
    font-family: 'Min', sans-serif;
}

/* Full-bleed background image */
.background-image img {
    width: 100vw;
    height: auto;
    display: block;
    z-index: -1;
    position: fixed;
    top: 0;
    left: 0;
}

/* Centered image at the top */
.top-image {
    text-align: center;
    position: absolute;
    top: 60px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.top-image img {
    width: 55vw;
    height: auto;
    display: block;
    filter: grayscale(50%) sepia(100%) hue-rotate(1deg) saturate(200%);
}

/* Styling for the draggable texts */
.draggable {
    position: absolute;
    padding: 10px; /* Control the padding width here */
    background-color: rgb(73, 53, 53); /* Brown background */
    color: white;
    cursor: move;
    text-align: center;
    z-index: 1;
    user-select: none;
    width: auto; /* Adjust the width to auto so it fits the content */
    max-width: 100%; /* Ensure text doesn't overflow */
}

/* Styling for the order button */
.order-button {
    position: absolute;
    bottom: 20px;
    right: 20px;
    padding: 10px 20px;
    background-color: rgb(73, 53, 53);
    color: white;
    border: none;
    cursor: pointer;
    font-size: 16px;
    user-select: none;
    z-index: 10; /* Ensure button is above other elements */
}

.order-button:hover {
    background-color: rgb(100, 75, 75); /* Slightly darker on hover */
}

/* Menu container */
#menu {
    position: fixed;
    top: 20px;
    left: 20px;
    height: 12vw;
    z-index: 10;
    width: 10vw;
    padding: 1vw;
    background-color: transparent;
    border-radius: 50px;
    overflow: hidden;
    cursor: pointer;
    display: flex;
    align-items: center;
    transition: width 0.5s ease;
}

/* Extend menu and reveal background when hovered */
#menu:hover {
    width: 55vw;
    background-color: rgba(255, 255, 255, 0);
}

.menu-content {
    display: flex;
    align-items: center;
    justify-content: start;
    height: 100%;
    white-space: nowrap;
}

.spinning-image {
    display: inline-block;
    text-align: center;
    width: 10vw;
    margin-right: 1vw;
    text-decoration: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

#menu:hover .spinning-image {
    opacity: 1;
}

.menu-content .spinning-image:first-child {
    opacity: 1;
}

.spinning-image img {
    width: 100%;
    height: auto;
    animation: spin 20s linear infinite;
    filter: grayscale(100%) sepia(100%) hue-rotate(1deg) saturate(300%);
    transition: transform 0.2s ease;
}

.spinning-image span {
    margin-top: 1.5vh;
    font-size: 1.03vw;
    color: rgb(73, 53, 53);
    font-family: 'Min', sans-serif;
    display: block;
    opacity: 0;
}

#menu:hover .spinning-image span {
    opacity: 1;
}

.spinning-image a {
    text-decoration: none;
    color: inherit;
}

.spinning-image img:hover {
    animation-duration: 1s;
}

/* Keyframes for image spinning */
@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

/* Custom font */
@font-face {
    font-family: 'Min';
    src: url('Minotaur-Regular-Trial.otf') format('truetype');
}
