*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Segoe UI',sans-serif;
}

body{
    background:#f8f8f8;
    direction:rtl;
}

.navbar{
    background:#FFC107;
    padding:15px 40px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    box-shadow:0 2px 10px rgba(0,0,0,.1);
}

.logo{
    font-size:28px;
    font-weight:bold;
    color:#333;
}

.navlinks a{
    text-decoration:none;
    color:#333;
    margin-right:20px;
    font-weight:bold;
}

.hero{
    height:400px;
    background:linear-gradient(rgba(0,0,0,.4),rgba(0,0,0,.4)),
    url('https://images.unsplash.com/photo-1504674900247-0877df9cc836');
    background-size:cover;
    background-position:center;
    display:flex;
    justify-content:center;
    align-items:center;
    flex-direction:column;
    color:white;
    text-align:center;
}

.hero h1{
    font-size:50px;
    margin-bottom:10px;
}

.hero p{
    font-size:20px;
}

.section{
    padding:60px 40px;
}

.section h2{
    text-align:center;
    margin-bottom:40px;
    color:#333;
}

.cards{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
    gap:25px;
}

.card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 5px 20px rgba(0,0,0,.1);
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
}

.card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.content{
    padding:20px;
}

.content h3{
    margin-bottom:10px;
}

.price{
    color:#FFC107;
    font-size:22px;
    font-weight:bold;
    margin:10px 0;
}

.btn{
    display:block;
    background:#FFC107;
    color:#333;
    text-align:center;
    padding:12px;
    text-decoration:none;
    border-radius:10px;
    font-weight:bold;
}

.footer{
    background:#333;
    color:white;
    text-align:center;
    padding:25px;
    margin-top:50px;
}