
{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body{
    background: #183128;
    color: white;
}
ul{
    list-style: none;

}
a{
    text-decoration: none;
}
#navbar ul{
    display: flex;
    margin-right: 100px;
}
#navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    direction: ltr; 
}
#navbar img{
    width:160px;
    margin-left:100px ;
    direction: rtl;
    padding: 15px 20px ;
}
#navbar ul li a{
padding: 15px 20px ;
color: #fff;
justify-content: flex-start;

}

#navbar img {
    width: 180px;

}
/* الهيدر */

.hero{
    text-align: center;
    padding: 40px 20px;
}

.hero h1{
    font-size: 55px;
    color: #d4af37;
    margin-bottom: 10px;
}

.hero p{
    font-size: 18px;
}

/* المنيو */

.menu-container{
    width: 90%;
    margin: auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px,1fr));
    gap: 25px;
    padding-bottom: 50px;
}

/* الكارد */

.card{
    background: #224235;
    border-radius: 20px;
    overflow: hidden;
    transition: .3s;
    box-shadow: 0 5px 15px rgba(0,0,0,.3);
}

.card:hover{
    transform: translateY(-8px);
}

.card img{
    width: 100%;
    height: 220px;
    object-fit: cover;
}

.card h2{
    color: #d4af37;
    text-align: center;
    padding: 15px;
    font-size: 28px;
}

.item{
    display: flex;
    justify-content: space-between;
    padding: 12px 20px;
    border-bottom: 1px solid rgba(255,255,255,.1);
}

.item span{
    font-size: 17px;
}

button{
    width: 100%;
    padding: 15px;
    border: none;
    background: #d4af37;
    color: #183128;
    font-size: 18px;
    cursor: pointer;
    transition: .3s;
    font-weight: bold;
}

button:hover{
    background: white;
}