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

body{
background:#101010;
direction:rtl;
font-family:tahoma;
}

.container{
width:90%;
max-width:1300px;
margin:auto;
}

.header{
background:#000;
border-bottom:4px solid #d60000;
}

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

.logo{
color:#FFD700;
font-size:30px;
font-weight:bold;
}

.menu a{
color:#fff;
text-decoration:none;
margin-right:20px;
font-size:18px;
transition:.3s;
}

.menu a:hover{
color:#FFD700;
}

.hero{
height:85vh;
display:flex;
justify-content:center;
align-items:center;
text-align:center;
background:#151515;
}

.hero h1{
font-size:58px;
color:#FFD700;
margin-bottom:30px;
}

.hero p{
font-size:24px;
color:#fff;
line-height:45px;
margin-bottom:40px;
}

.btn{
display:inline-block;
padding:18px 45px;
background:#d60000;
color:#fff;
text-decoration:none;
border-radius:8px;
font-size:20px;
transition:.3s;
}

.btn:hover{
background:#FFD700;
color:#000;
}

.footer{
background:#000;
color:#fff;
padding:30px;
text-align:center;
}.header{
position:sticky;
top:0;
z-index:999;
background:#111;
border-bottom:3px solid #d40000;
}

.header-area{
display:flex;
justify-content:space-between;
align-items:center;
padding:15px 0;
}

.logo img{
height:70px;
}

.menu ul{
display:flex;
list-style:none;
gap:25px;
}

.menu a{
color:#fff;
text-decoration:none;
font-size:17px;
transition:.3s;
}

.menu a:hover{
color:#FFD700;
}

@media(max-width:900px){

.header-area{
flex-direction:column;
}

.menu ul{
flex-wrap:wrap;
justify-content:center;
margin-top:20px;
}

.logo img{
height:60px;
}

}