body {
    font-family: 'Inter', sans-serif;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url('https://images.unsplash.com/photo-1571896349842-33c89424de2d?q=80&w=1920');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    min-height: 100vh;
}

.menu-icon {
    width: 6rem;
    height: 6rem;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    cursor: pointer;
}

.menu-icon:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scale(1.1);
}

.menu-text {
    color: white;
    font-size: 1.125rem;
    margin-top: 0.75rem;
    font-weight: 500;
}

.welcome-text {
    color: white;
    font-size: 3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeIn 0.5s ease-out forwards;
}

.subtitle-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.5rem;
    margin-bottom: 4rem;
    animation: fadeIn 0.5s ease-out forwards;
}

.hotel-logo {
    width: 120px;
    margin: 0 auto 2rem auto;
    animation: fadeIn 0.5s ease-out forwards;
    display: flex;
    justify-content: center;
}

.hotel-logo img {
    max-width: 100%;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.static-menu-container {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.menu-item {
    text-align: center;
}

#test {
    margin-top: -5em;
}