body {
    font-family: 'Noto Sans SC', sans-serif; /* This is a modern Chinese font */
    margin: 0;
    padding: 0;
    background-color: #fffff0;
    padding-top: 70px;
    /* Add padding to the top of the body */
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    padding-top: 30px;
    display: flex;
    justify-content: space-between;
    margin: 0 auto; /* Center the container */
}

.container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px;
}

.aboutUs, .info, .delivery {
    width: 100%;
    border: 1px solid #dee2e6;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.info {
    font-size: 30px;
    width: 100%;
    border: 1px solid #dee2e6;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
}

.info p {
    margin-bottom: 10px; /* Add some space between lines */
}

.logo-container {
    display: flex; /* Center the logo */
    justify-content: center;
    margin-bottom: 20px; /* Add some space below the logo */
}

.logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

@media screen and (max-width: 768px) {
    .container {
        flex-direction: column;
    }

    .boxL, .middlebox, .boxR {
        width: 100%;
    }
}

.para {
    text-align: left;
}

.navbar {
    font-size: 1.2em;
    background-color: #b22222; /* FireBrick */
    display: flex; /* Add this line */
    justify-content: center; /* Modify this line */
    align-items: center; /* Add this line */
    overflow: hidden;
    position: fixed;
    top: 0;
    width: 100%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    z-index: 1000; /* Ensure the navbar is above other elements */
}

.navbar a {
    display: block;
    color: #ffd700; /* Gold */
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    transition: background-color 0.3s ease;
    float: none; /* Add this line */
    margin: 0; /* Add this line */
}

.navbar a:hover {
    background-color: darkred;
    color: gold;
}

.logo-container {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
}

.navbar-logo {
    width: 250px;
    height: 100px;
}

.checkout-button {
    display: block;
    margin: 20px auto;
    padding: 10px 20px;
    font-size: 30px;
    color: #fff;
    background-color: #b22222;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.checkout-button:hover {
    background-color: darkred;
}

main {
    flex: 1 0 auto;
}

.site-footer {
    background-color: #b22222; /* FireBrick */
    color: #ffd700; /* Gold */
    text-align: center;
    width: 100%;
    box-shadow: 0 -4px 8px rgba(0, 0, 0, 0.1); /* Optional: Add a subtle shadow */
    flex-shrink: 0;
    padding: 0;
    margin-top: auto;
}

.locatonInfo {
    color: #333;
    padding: 20px;
    border-radius: 5px;
    margin-bottom: 20px;
}

.locatonInfo h1 {
    font-size: 24px;
    color: #444;
    margin-bottom: 10px;
}

.locatonInfo p {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.locatonInfo a {
    color: #0066cc;
    text-decoration: none;
}

.locatonInfo a:hover {
    text-decoration: underline;
}

.location {
    position: relative;
    overflow: hidden;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
}

.location .responsive-iframe {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

#categoryNavbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 0;
    list-style: none;
}

#categoryNavbar a {
    color: #333;
    text-decoration: none;
    padding: 10px;
    margin: 5px;
    flex-grow: 1;
    text-align: center;
    border: 1px solid #ccc;
    border-radius: 5px;
    display: block;
    color: #000;
    padding: 8px 16px;
    text-decoration: none;
}

#categoryNavbar a.active {
    color: #0078d4;
    border-color: #0078d4;
}

#categoryNavbar a:hover {
    color: #0078d4;
    border-color: #0078d4;
}

.menu-item {
    border-bottom: 1px solid #ccc;
    padding: 10px 0;
    padding-left: 20px;
}

.menu-item h3 {
    margin: 0;
    font-size: 20px;
    color: #333;
}

.menu-item .price {
    color: #0078d4;
    font-weight: bold;
}  

.menuTitle{
    text-align: center;
    font-size: 2.5em;
    padding: 5px;
    border-radius: 10px;
    margin: 0 auto 20px auto; /* Top and bottom margin is 0, left and right margin is auto */
    width: 80%; /* Take up 80% of its container's width */
}

.menu-message {
    text-align: center;
    font-size: 1.5em;
    color: #d9534f; /* A spicy red color */
    font-weight: bold;
}

.image-caption {
    text-align: center;
    font-size: 20px;
    color: #333;
}

.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 10px;
}

.image-container {
    position: relative;
    overflow: hidden;
}

.image-container img {
    width: 100%;
    height: auto;
    display: block;
}

.image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 5px;
    font-size: 20px;
    text-align: center;
}

/* This applies to the whole window */
html {
    scrollbar-width: thin;
    scrollbar-color: #888 #f5f5f5;
}

/* This applies to a specific element */
.your-element {
    scrollbar-width: thin;
    scrollbar-color: #888 #f5f5f5;
}

/* For Webkit browsers like Chrome and Safari */
html::-webkit-scrollbar,
.your-element::-webkit-scrollbar {
    width: 12px;
}

html::-webkit-scrollbar-track,
.your-element::-webkit-scrollbar-track {
    background: transparent;
}

html::-webkit-scrollbar-thumb,
.your-element::-webkit-scrollbar-thumb {
    background-color: #888;
    border-radius: 20px;
    border: 3px solid #f5f5f5;
}

.footerP{
    margin-top: 0;
    margin-bottom: 0;
}

