@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;700;800&display=swap');

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Vazirmatn',sans-serif;
    background:#0e0e0e;
    color:white;
}

.hero{
    position:relative;
    min-height:100vh;

    display:flex;
    justify-content:center;
    align-items:center;

    text-align:center;

    background:url('../image/backgrounds/hero.jpg');
    background-size:cover;
    background-position:center;
    overflow:hidden;
}

.hero-overlay{
    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:100%;

    background:
    linear-gradient(
        rgba(0,0,0,0.65),
        rgba(0,0,0,0.80)
    );
}

.hero-content{
    position:relative;
    z-index:2;

    width:90%;
    max-width:1000px;

    margin:auto;
}

.logo{

    width:180px;
    max-width:60vw;

    margin-bottom:25px;

    filter:drop-shadow(0 0 20px rgba(255,255,255,.15));
}

.hero h1{

    font-size:clamp(2rem,6vw,5rem);

    font-weight:800;

    margin-bottom:20px;
}

.hero p{

    font-size:clamp(1rem,2vw,1.4rem);

    color:#dddddd;

    max-width:700px;

    margin:auto;

    line-height:2;
}

.download-buttons{

    margin-top:40px;

    display:flex;
    justify-content:center;
    align-items:center;

    gap:20px;

    flex-wrap:wrap;
}

.btn{

    text-decoration:none;

    padding:16px 35px;

    border-radius:14px;

    font-size:1rem;

    font-weight:700;

    transition:.3s;
}

.bazaar{

    background:#27ae60;
    color:white;
}

.bazaar:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 25px rgba(39,174,96,.35);
}

.myket{

    background:#1e88e5;
    color:white;
}

.myket:hover{

    transform:translateY(-4px);

    box-shadow:
    0 10px 25px rgba(30,136,229,.35);
}

.scroll-indicator{

    margin-top:50px;

    font-size:2rem;

    animation:floatArrow 1.5s infinite;
}

@keyframes floatArrow{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(10px);
    }

    100%{
        transform:translateY(0);
    }
}

@media(max-width:768px){

    .hero h1{
        font-size:2.5rem;
    }

    .btn{

        width:100%;

        max-width:320px;
    }
}