
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
html {
    scroll-behavior: smooth;
}
        body {
            font-family: 'Arial', sans-serif;
            background-color: #f5f1eb;
            padding: 50px; 
            min-height: 100vh;
            display:flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 2rem;
        }

        .menu-container {
            background-color: #f5f1eb;
            border: 3px solid #8B0000;
            max-width: 400px;
            width: 100%;
            padding: 40px 20px;
            margin: 0 auto;
        }

        .menu-header {
            text-align: center;
            margin-bottom: 10px; margin-top:50px;
        }

        .menu-title {
            font-size: 3.5rem;
            font-weight: bold;
            color: #8B0000;
            margin-bottom: 40px;
            line-height: 1;
        }

        .menu-subtitle {
            text-decoration: underline;
            font-size: 1rem;
            color: #8B0000;
            font-weight: normal;
            position: relative;
            text-decoration-thickness: 1px;
            text-underline-offset: 8px;
            margin-bottom: 30px;

        }


        .menu-items {
            list-style: none;
        }

        .menu-item {
            display: flex;
            justify-content: space-between;
            align-items: baseline;
            margin-bottom: 20px;
            position: relative;
        }

        .item-name {
            font-size: 1.1rem;
            color: #333;
            font-weight: normal;
            background-color: #f5f1eb;
            padding-right: 8px;
            z-index: 1;
            position: relative;
        }

        .item-price {
            font-size: 1.1rem;
            color: #333;
            font-weight: normal;
            background-color: #f5f1eb;
            padding-left: 8px;
            z-index: 1;
            position: relative;
        }

        .menu-item::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            right: 0;
            height: 1px;
            background-image: repeating-linear-gradient(
                to right,
                #999 0,
                #999 2px,
                transparent 2px,
                transparent 6px
            );
            z-index: 0;
        }

        h2{
            text-transform: uppercase;
        }

        /* Mobile optimizations */
        @media (max-width: 480px) {
            body {
                padding: 20px;
            }
            
            .menu-container {
                padding: 30px 20px;
            }
            
            .menu-title {
                font-size: 2.8rem;
            }
            
            .menu-subtitle {
                font-size: 1.5rem;
            }
            
            .item-name,
            .item-price {
                font-size: 1rem;
            }
        }

        @media (max-width: 320px) {
            .menu-title {
                font-size: 2.4rem;
            }
            
            .item-name,
            .item-price {
                font-size: 0.95rem;
            }
        }


.container {
    width: 100%;
    max-width: 400px;
}

.language-selector {
    background-color: #f5f1eb;
    border: 3px solid #8B0000;
    padding: 40px 30px;
    text-align: center;
}

.title {
    color: #8B0000;
    font-size: 1.5rem;
    margin-bottom: 30px;
    text-transform: uppercase;
    font-weight: bold;
}

.language-list {
    list-style: none;
}

.language-item {
    margin-bottom: 20px;
}

.language-item:last-child {
    margin-bottom: 0;
}

.language-link {
    display: inline-block;
    color: #333;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 15px 30px;
    border: 2px solid #8B0000;
    background-color: transparent;
    transition: all 0.3s ease;
    min-width: 200px;
}

.language-link:hover {
    background-color: #8B0000;
    color: #f5f1eb;
}

/* Mobile optimizations */
@media (max-width: 480px) {
    .language-selector {
        padding: 30px 20px;
    }
    
    .title {
        font-size: 1.3rem;
    }
    
    .language-link {
        font-size: 1.1rem;
        padding: 12px 25px;
        min-width: 180px;
    }
}

@media (max-width: 320px) {
    .title {
        font-size: 1.2rem;
    }
    
    .language-link {
        font-size: 1rem;
        padding: 10px 20px;
        min-width: 160px;
    }
}

.menu-nav {
    width: 100%;
    background-color: #f5f1eb;
    padding: 15px 0;
    text-align: center;
    margin-bottom: 40px;
}

.menu-nav-list {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 0;
    margin: 0;

}

.menu-nav-link {
    
    text-decoration: none;
    font-size: 1.1rem;
    color: #8B0000;
    font-weight: bold;
    padding: 8px 12px;
    transition: all 0.3s ease;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.menu-nav-link:hover {
    border-color: #8B0000;
    background-color: #8B0000;
    color: #f5f1eb;
    border-radius: 4px;
    
}

/* Responsive tweaks */
@media (max-width: 480px) {
    .menu-nav-link {
        font-size: 0.8rem;
        padding: 6px 10px;
    }
    .test{
        font-size: 1rem;
    }
}
.scroll-top-inside {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(110px); /* Adjust based on half container width */
    background-color: #f5f1eb;
    border: 2px solid #8B0000;
    color: #8B0000;
    font-size: 1.5rem;
    font-weight: bold;
    text-decoration: none;
    width: 45px;
    height: 45px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 999;
}

.scroll-top-inside:hover {
    background-color: #8B0000;
    color: #f5f1eb;
}

html {
    scroll-behavior: smooth;
}
a{
    color: #8B0000;
    font-size: 4rem;
}
