nav {
    background-color: #ff6f61; /* Coral */
    padding: 1em;
}

nav ul {
    list-style: none;
    display: flex;
    justify-content: center;
    gap: 2em;
}

nav a {
    color: #fff;
    text-decoration: underline;
    font-weight: bold;
    font-family: cursive;
    font-size: 3em;
    letter-spacing: 4px;
}

nav a:hover {
    color: #ffd700; /* Yellow */
}

.outer-box{
    background-color: #d4b39b;
    padding: 2vw;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 30px;
}

.inner-box {
    background-color: #f5d7af;
    padding: 3vh;
    border-radius: 10px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);

}

.inner-box h1 {
    font-size: 3em;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 15px;
    color: #3e2723;
    font-family: cursive;
    letter-spacing: 0.9em;
    display: flex;
    justify-content: center;
    align-items: center;
}



.outer-box-item{
    background-color: #d4b39b;
    padding: 0.4vw;
    border-radius: 12px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
    margin-bottom: 0px;
    height: 10vh;
    display: flex;
    justify-content: center;
    align-items: center;


}

.inner-box-item {
    background-color: #f5d7af;
    border-radius: 10px;
    position: relative;
    box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.1);
    width: 100%;

}

.inner-box-item h2 {
    font-size: 2em;
    font-weight: bold;
    margin-bottom: 15px;
    margin-top: 15px;
    color: black;
    font-family: cursive;
    letter-spacing: 0.4em;
    display: flex;
    justify-content: center;
    align-items: center;
}







/* Menu Section */
.menu {
    padding: 2em;
    background: linear-gradient(to right, #ffe6cc, #ffcccc); /* Pink-to-peach gradient */
    height: auto;
}

.menu-category {
    margin-bottom: 2em;
    height: auto;
}

.menu-category h3 {
    font-size: 1.5em;
    color: #ff6f61; /* Coral */
    margin-bottom: 1em;
}

.menu-category {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1em;
}

.menu-item {
    background-color: #fff;
    padding: 1em;
    border-radius: 5px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: 3s;
}
.menu-item:hover {
    transform: scale(1.04)
}

.menu-item img {
    width: 100%;
    max-width: 200px;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1em;
    border: 3px solid black;
}

.menu-item h4 {
    font-size: 1.2em;
    color: #ff6f61; /* Coral */
    margin-bottom: 0.5em;
}

.menu-item p {
    font-size: 1em;
    color: #666;
    margin-bottom: 0.5em;
}

.menu-item span {
    font-weight: bold;
    color: #ffd700; /* Yellow */
}


/* md */
@media (max-width: 768px) {
    .container {
        max-width: 100%;
    }
    .inner-box h1 {
        font-size: 2.5em;
        font-weight: bold;
        margin-bottom: 15px;
        margin-top: 15px;
        color: #3e2723;  /* Dark brown for text */
        font-family: cursive;
        letter-spacing: 0.5em;
        display: flex;
        justify-content: center;
        align-items: center;
    }


}