header{
    width:100%;
    height:80px;
    background:#3B2F2F;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 60px;
    box-sizing:border-box;
}


.logo h1{
    color:#F5F1E8;
    margin:0;
    font-size:30px;
}

.logo span{
    color:#C96A1B;
    font-size:14px;
}


nav a{
    color:#F5F1E8;
    text-decoration:none;
    margin:0 15px;
    font-size:16px;
}


nav a:hover{
    color:#C96A1B;
}


.phone{
    color:#F5F1E8;
    border:1px solid #C96A1B;
    padding:12px 20px;
    border-radius:8px;
}
/* افکت هدر */
header{
    position: sticky;
    top:0;
    z-index:1000;
    box-shadow:0 4px 15px rgba(0,0,0,0.25);
}


/* حرکت نرم منو */
nav a{
    transition:0.3s;
}

nav a:hover{
    transform:translateY(-3px);
}


/* دکمه تماس */
.phone{
    cursor:pointer;
    transition:0.3s;
}

.phone:hover{
    background:#C96A1B;
    color:#3B2F2F;
}


/* هماهنگ شدن در موبایل */
@media(max-width:900px){

    header{
        height:auto;
        flex-direction:column;
        gap:20px;
        padding:25px;
    }

    nav{
        display:flex;
        flex-wrap:wrap;
        justify-content:center;
    }

    nav a{
        margin:8px;
    }

    .phone{
        margin-bottom:10px;
    }
}
.hero{
    height:500px;
    background:
    linear-gradient(rgba(0,0,0,0.55),rgba(0,0,0,0.55)),
    url("images/chah.jpg");

    background-size:cover;
    background-position:center;

    display:flex;
    align-items:center;
    justify-content:center;
    text-align:center;
    direction:rtl;
}


.hero-content{
    max-width:700px;
    color:#F5F1E8;
}


.hero-content h2{
    font-size:42px;
    margin-bottom:20px;
}


.hero-content p{
    font-size:18px;
    line-height:2;
    color:#eee;
}


.hero-btn{
    display:inline-block;
    margin-top:25px;
    padding:14px 35px;
    background:#C96A1B;
    color:white;
    text-decoration:none;
    border-radius:10px;
    transition:.3s;
}


.hero-btn:hover{
    background:#F5F1E8;
    color:#3B2F2F;
}

.hero{
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-bg{
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
}

.hero-content{
    position: relative;
    color: white;
    text-align: center;
}
.mini-footer{
    width:100%;
    background:#1b0d04;
    border-top:2px solid #d4af37;
    color:white;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:15px 40px;
    direction:rtl;
    box-sizing:border-box;
    margin-top:0;
}


.mini-logo{
    display:flex;
    align-items:center;
    gap:10px;
}


.mini-logo img{
    width:35px;
    height:35px;
    object-fit:contain;
}


.mini-logo span{
    color:#d4af37;
    font-size:20px;
    font-weight:bold;
}


.mini-footer p{
    color:#ddd;
    font-size:14px;
    margin:0;
}


.mini-phone{
    color:#fff;
    font-size:15px;
}


.mini-phone i{
    color:#d4af37;
    margin-left:8px;
}


@media(max-width:700px){

    .mini-footer{
        flex-direction:column;
        gap:12px;
        text-align:center;
    }

}