@font-face {
    font-family: "Yekan";
    src: url("Yekan.woff") format("woff");
}

body {
    margin: 0 auto;
    background: #f8f0df;
    background-image: url("bg.jpg");
    font-family: "Yekan", sans-serif;
    max-width: 1900px;
}

.main{
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: wrap;
    align-content: center;
}

/* منو */
.top-menu {
    background: #f3e4c2;
    padding: 5px 0;
    margin-top: 40px;
    margin-left: 30px;
    text-align: center;
    border-radius: 0 0 0px 35px;
    max-width: 627px;
}

.top-menu ul {
    padding: 0;
    margin: 0;
    list-style: none;
    display: flex;
    justify-content: space-evenly;
    gap: 5px;
}

.top-menu a {
    text-decoration: none;
    color: #002C49;
    font-size: 20px;
}

/* تصویر اصلی */
.hero img {
    width: 100%;
    display: block;
    border-radius: 185px 0 0 0;
    max-width: 700px;
}

/* عنوان و محتوا */
.title-box {
    text-align: right;
    padding: 20px;
}

.title-box h1 {
    font-size: 93px;
    font-weight: 900;
    color: #002C49;
    margin: 10px 0;
}

.hash {
    font-size: 47px;
    color: #002C49;
    margin-bottom: 25px;
}

/* دکمه */
.order-btn {
    background: #b58339;
    color: white;
    font-size: 39px;
    padding: 0px 53px;
    border: none;
    border-radius: 0 31px;
    cursor: pointer;
    font-weight: bold;
    float: left;
    font-family: 'Yekan';
}

.order-btn:hover {
    background: #8f672e;
}

section.hero {
    margin-top: 30px;
    margin-left: 30px;
}

.corner {
    width: 40px;
    height: 250px;
    background: #002C49;
    position: fixed;
    left: 0;
    top: 200px;
    border-radius: 0 10rem 0 0;
}

.logo {
    width: 100px;
    position: fixed;
    left: 200px;
    padding: 13px;
    background: #EBD0A5;
    border-radius: 0 0 28px 0;
    padding-bottom: 0;
}

img {
    max-width: 100%;
}

@media (max-width: 1100px) {
    
    .logo { display: none;}
    .corner { display: none;}
    
}

/* موبایل */
@media (max-width: 600px) {
    .hero img {border-radius: 85px 0 0 0;}
    
    .title-box h1 {
        font-size: 48px;
        text-align: center;
    }

    .hash {
        font-size: 24px;
        text-align: center;
    }

    .order-btn {
        font-size: 27px;
        padding: 0px 53px;
    }
}

