@font-face {
    font-family: 'yekan';
    src: url('yekan-bakh/yekan-bakh-regular/yekan-bakh-en-04-regular.woff2');
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family:'yekan';
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;
 
    overflow:hidden;
    position:relative;

    background:linear-gradient(rgb(12 40 137 / 92%), rgb(0 21 80));



    background-size:cover;
    background-position:center;
}

.landing{
    text-align:center;
    z-index:2;

    width:90%;
    max-width:500px;

    padding:40px 30px;

    border:1px solid rgba(255,255,255,.08);

    background:rgb(47 43 43 / 46%);

    backdrop-filter:blur(12px);

    border-radius:24px;

    box-shadow:
        0 10px 40px rgba(0,0,0,.35);
}

.logo{
    width:110px;
    margin:0 auto 25px;
}

h1{
    color:#fff;
    font-size:2.3rem;
    margin-bottom:10px;
    font-weight:700;
}

p{
    color:#d6d6d6;
    font-size:1rem;
    margin-bottom:35px;
    line-height:1.8;
}

.menu-btn{
    display:block;

    padding:14px 38px;

    background:linear-gradient(135deg,#f5ce75,#d6a825);

    color:#111;

    border-radius:14px;

    text-decoration:none;

    font-size:1rem;
    font-weight:700;

    transition:.3s;
    margin-bottom: 10px;
}

.menu-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 10px 25px rgba(214,168,37,.35);
}

@media(max-width:768px){

    .landing{
        padding:35px 22px;
    }

    h1{
        font-size:1.8rem;
    }

    p{
        font-size:.95rem;
    }

    .menu-btn{
        width:100%;
    }

}



.modal{
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.6);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 999;
        font-family:'yekan';

}

.modal-box{
        font-family:'yekan';

    background: #fff;
    padding: 30px;
    border-radius: 14px;
    width: 320px;
    text-align: center;
}

.modal-box h3{
        font-family:'yekan';

    margin-bottom: 15px;
}

.modal-box input{
        font-family:'yekan';

    width: 100%;
    padding: 10px;
    border-radius: 8px;
    border: 1px solid #ddd;
    margin-bottom: 10px;
}

.modal-box button{
        font-family:'yekan';

    width: 100%;
    padding: 10px;
    border: none;
    border-radius: 8px;
    background: #333;
    color: white;
    cursor: pointer;
}

#errorText{
        font-family:'yekan';

    color: red;
    font-size: 13px;
    margin-top: 8px;
}

