.navbar {
    position: sticky;
    top: 0;
    background: rgb(227, 106, 106);
    color: #333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-radius: 5px;
}
.nav-links {
    display: flex;
    list-style: none;
}
.nav-links li a {
    color: #333;
    text-decoration: none;
    padding: 0 15px;
    display: inline; 
}
.hero{
    font-family: "Oswald", sans-serif;
    font-optical-sizing: auto;
    font-weight: <weight>;
    font-style: normal;
}
.btn-block {
    display: block;
    width: 200px;
    margin: 20px auto;
    background: #e67e22;
    color: white;
    text-align: center;
    padding: 10px;
    text-decoration: none;
    border-radius: 5px;
}
.inline-text {
    display: inline-block;
    background: #f1c40f;
    padding: 2px 8px;
    border-radius: 4px;
}
.info-section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 50px;
    gap: 20px;
}
.card {
    background-color: rgb(255, 242, 208);
    height: 250px;
    width: 250px;
    padding: 20px;
    border: 1px solid #ddd;
    text-align: center;
    border-radius: 5px;
}
@media (max-width: 768px) {
    .navbar {
        flex-direction: column;
        padding:15px;
        align-items: center;
    }
    .nav-links {
        display:flex;
        flex-direction: column;
        margin-top:15px;
        gap:10px;
        padding:0;
    }
    .info-section {
        flex-direction: column;
        padding: 20px;
    }
    .img-restro{
        margin-right: 0;
        width:100%;
        height:50px;
        width:50px;
        display:block;
        margin: 0 auto;
    }
    body{
        background-color: rgb(255, 251, 241);
    }
}
body{
    background-color: rgb(255, 251, 241);
}
.img-restro{
    margin-right: 750px;
}
.menu-container {
    padding: 40px 5%;
    text-align: center;
}
.menu-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content:center;
    margin-top: 30px;
}
.menu-item {
    border: 2px solid #f4f4f4;
    padding: 20px;
    border-radius: 8px;
    transition: 0.3s;
}
.menu-item:hover {
    border-color: #e67e22;
}
.price-tag {
    display: inline-block; 
    background: #333;
    color: #fff;
    padding: 5px 10px;
    font-weight: bold;
    margin-bottom: 10px;
}
.img-menu{
    margin-right: 750px;
}
.img-pasta{
    border: 2px solid #f4f4f4;
    border-radius: 8px;
    transition: 0.3s;

}
.img-pasta:hover{
    cursor: pointer;
    border-color:#e76e22;
}
.img-salmon{
    border: 2px solid #f4f4f4;
    border-radius: 8px;
    transition: 0.3s;   
}
.img-salmon:hover{
     cursor: pointer;
    border-color:#e76e22;   
}
.img-salad{
    border: 2px solid #f4f4f4;
    border-radius: 8px;
    transition: 0.3s;      
}
.img-salad:hover{
     cursor: pointer;
    border-color:#e76e22;  
}
.contact-section {
    max-width: 600px;
    margin: 50px auto;
    padding: 20px;
}
.contact-form label {
    display: block; 
    margin-bottom: 5px;
    font-weight: bold;
}
.contact-form textarea {
    display: block;
    width: 100%;
    padding: 12px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 4px;
}
.section-title {
    font-size: 40px;
    margin-bottom: 10px;
}
.img-contact{
    margin-right: 750px;
}
.btn-block:hover{
    cursor: pointer;
}