
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;900&display=swap');

*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:'Vazirmatn',sans-serif;
background:#fff7f0;
color:#2b2b2b;
line-height:2;
}

.container{
width:92%;
max-width:1400px;
margin:auto;
}

header{
position:sticky;
top:0;
z-index:999;
background:rgba(44,26,20,0.9);
backdrop-filter:blur(10px);
}

.nav{
display:flex;
justify-content:space-between;
align-items:center;
padding:20px 0;
}

.logo{
font-size:32px;
font-weight:900;
color:#ffd7a3;
}

nav a{
text-decoration:none;
color:white;
margin-right:25px;
font-weight:600;
}

.hero{
padding:120px 0;
background:linear-gradient(135deg,#4e2d21,#86543c,#d39a69);
text-align:center;
}

.hero h1{
font-size:58px;
color:white;
margin-bottom:20px;
}

.hero p{
color:#ffe8cf;
max-width:800px;
margin:auto;
font-size:20px;
}

.badge{
display:inline-block;
padding:10px 20px;
background:#ffd7a3;
border-radius:50px;
margin-bottom:25px;
font-weight:700;
color:#4e2d21;
}

.hero-btn{
display:inline-block;
margin-top:35px;
padding:15px 30px;
background:#ffd7a3;
color:#4e2d21;
text-decoration:none;
border-radius:16px;
font-weight:700;
}

.apps-section{
padding:100px 0;
}

.section-title{
text-align:center;
margin-bottom:60px;
}

.section-title h2{
font-size:46px;
color:#4e2d21;
margin-bottom:10px;
}

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

.app-card{
background:white;
padding:28px;
border-radius:28px;
box-shadow:0 15px 40px rgba(0,0,0,0.08);
transition:0.4s;
border:1px solid rgba(211,154,105,0.2);
}

.app-card:hover{
transform:translateY(-10px);
}

.app-top{
display:flex;
align-items:center;
gap:18px;
margin-bottom:20px;
}

.app-top img{
width:80px;
height:80px;
border-radius:22px;
background:white;
padding:10px;
object-fit:contain;
box-shadow:0 5px 18px rgba(0,0,0,0.08);
}

.app-top h3{
font-size:24px;
color:#4e2d21;
margin-bottom:5px;
}

.rate{
background:#ffe0b6;
padding:6px 12px;
border-radius:50px;
font-size:14px;
font-weight:700;
color:#5a341f;
}

.app-card p{
color:#555;
min-height:70px;
}

.app-card a{
display:inline-block;
margin-top:20px;
background:#5a341f;
color:white;
padding:13px 22px;
border-radius:14px;
text-decoration:none;
font-weight:700;
}

footer{
background:#2b1a14;
padding:30px;
text-align:center;
color:#ffe7cc;
margin-top:50px;
}

@media(max-width:768px){

.hero h1{
font-size:38px;
}

.nav{
flex-direction:column;
gap:15px;
}

.apps-grid{
grid-template-columns:1fr;
}

}
