
body{
margin:0;
font-family:tahoma;
background:#f5f1ea;
direction:rtl;
}

header{
background:#111;
padding:20px;
display:flex;
justify-content:space-between;
align-items:center;
}

.logo{
color:gold;
font-size:35px;
font-weight:bold;
}

nav a{
color:white;
margin:0 10px;
text-decoration:none;
}

.hero{
height:80vh;
background:url('images/hero.jpg') center/cover;
display:flex;
justify-content:center;
align-items:center;
}

.overlay{
background:rgba(0,0,0,0.6);
padding:40px;
border-radius:20px;
color:white;
text-align:center;
}

.products,.branches{
padding:60px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:25px;
}

.product,.branch{
background:white;
padding:20px;
border-radius:15px;
box-shadow:0 5px 15px rgba(0,0,0,0.1);
text-align:center;
}

.product img{
width:100%;
height:250px;
object-fit:cover;
border-radius:10px;
}

h2{
text-align:center;
font-size:40px;
}

footer{
background:#111;
color:white;
text-align:center;
padding:25px;
margin-top:40px;
}
