/* ===========================
   UltraFootballZone
   Main Stylesheet
=========================== */

/* فونت پیش‌فرض سایت */
body{
    font-family: "Vazirmatn", sans-serif;
    background:#f5f5f5;
    color:#212529;
    direction: rtl;
}

/* لینک‌ها */
a{
    text-decoration:none;
}

/* ===========================
   Navbar
=========================== */

.navbar-brand{
    font-size:1.4rem;
    font-weight:700;
}

.nav-link{
    font-size:1rem;
    transition:.3s;
}

.nav-link:hover{
    color:#0dcaf0 !important;
}

/* ===========================
   Hero Section
=========================== */

.hero-section{
    background:linear-gradient(135deg,#0d6efd,#0b2239);
    color:white;
    padding:100px 0;
}

.hero-section h1{
    font-weight:800;
}

.hero-section p{
    font-size:1.2rem;
    opacity:.9;
}

/* ===========================
   Cards
=========================== */

.card{
    border:none;
    border-radius:16px;
    transition:.3s;
}

.card:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 30px rgba(0,0,0,.15);
}

/* ===========================
   Footer
=========================== */

footer{
    margin-top:80px;
}

footer a{
    transition:.3s;
}

footer a:hover{
    color:#0dcaf0 !important;
}

/* ===========================
   Responsive
=========================== */

@media (max-width:768px){

    .hero-section{
        padding:70px 0;
    }

    .hero-section h1{
        font-size:2.3rem;
    }

    .hero-section p{
        font-size:1rem;
    }

}