
/*==================================================
    HIT AUCTION WEBSITE
    PART 2 - HOME PAGE
==================================================*/


/*==========================
HERO SECTION
==========================*/
/*================ HERO =================*/

.hero-section{
    position:relative;
    height:500px;
    background:url("../images/hero-bg.jpg") center center no-repeat;
    background-size:cover;
    display:flex;
    align-items:center;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.hero-content{
    position:relative;
    z-index:2;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    padding-top:0;
    padding-bottom:0;
}

.hero-tag{
    display:inline-block;
    background:#2596BE;
    color:#fff;
    padding:8px 20px;
    border-radius:30px;
    margin-bottom:15px;
}

.hero-desc{
    color:#fff;
    font-size:20px;
    line-height:30px;
    margin:15px auto;
    max-width:700px;
}

.hero-buttons{
    margin-top:20px;
}

.hero-stats{

    display:flex;

    justify-content:center;

    gap:40px;

    margin-top:30px;

}

.stat-box h2{

    color:#fff;

    font-size:40px;

    font-weight:700;

    margin:0;

}

.stat-box p{

    color:#ddd;

    margin-top:8px;

}

@media(max-width:768px){

.hero-title{

font-size:40px;

}

.hero-desc{

font-size:16px;

line-height:28px;

}

.hero-stats{

flex-direction:column;

gap:20px;

}

}

.btn-main{

    background:#2596BE;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

    transition:.3s;

}

.btn-main:hover{

    background:#19799d;

    color:#fff;

    transform:translateY(-3px);

}

.btn-outline-main{

    border:2px solid #fff;

    color:#fff;

    padding:16px 34px;

    border-radius:8px;

    font-weight:600;

}

.btn-outline-main:hover{

    background:#fff;

    color:#000;

}



/*==========================
COMMON SECTION
==========================*/

.section{

    padding:90px 0;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title h2{

    font-size:42px;

    font-weight:700;

    color:#081b29;

}

.section-title p{

    color:#777;

    font-size:18px;

    margin-top:15px;

}


/*==========================
AUCTION CARD
==========================*/

.auction-card{

    background:#fff;

    border-radius:20px;

    overflow:hidden;

    box-shadow:0 15px 40px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.auction-card:hover{

    transform:translateY(-8px);

}

.auction-image{

    height:220px;

    overflow:hidden;

}

.auction-image img{

    width:100%;

    height:100%;

    object-fit:cover;

    transition:.4s;

}

.auction-card:hover img{

    transform:scale(1.08);

}

.auction-body{

    padding:25px;

}

.auction-title{

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;

}

.auction-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:10px;

    color:#777;

}

.auction-info i{

    color:#2596BE;

}

.auction-footer{

    margin-top:20px;

}

.view-btn{

    width:100%;

    display:block;

    background:#2596BE;

    color:#fff;

    text-align:center;

    padding:13px;

    border-radius:8px;

    font-weight:600;

}

.view-btn:hover{

    background:#081b29;

    color:#fff;

}


/*==========================
STATISTICS
==========================*/

.stats-card{

    background:#fff;

    border-radius:18px;

    padding:35px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.3s;

}

.stats-card:hover{

    transform:translateY(-6px);

}

.stats-card i{

    font-size:45px;

    color:#2596BE;

    margin-bottom:18px;

}

.stats-card h3{

    font-size:40px;

    font-weight:700;

    color:#081b29;

}

.stats-card p{

    color:#666;

    margin:0;

}


/*==========================
FEATURES
==========================*/

.feature-box{

    background:#fff;

    padding:35px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 10px 35px rgba(0,0,0,.08);

    transition:.35s;

    height:100%;

}

.feature-box:hover{

    transform:translateY(-8px);

}

.feature-box i{

    width:90px;

    height:90px;

    background:#2596BE;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    border-radius:50%;

    font-size:38px;

    margin:auto;

    margin-bottom:25px;

}

.feature-box h4{

    font-weight:700;

    margin-bottom:15px;

}

.feature-box p{

    color:#666;

    line-height:28px;

}


/*==========================
DOWNLOAD APP
==========================*/

.download-section{

    background:#081b29;

    color:#fff;

    padding:90px 0;

    text-align:center;

}

.download-section h2{

    font-size:42px;

    font-weight:700;

}

.download-section p{

    color:#ccc;

    margin:20px auto;

    max-width:700px;

}

.store-buttons{

    margin-top:35px;

}

.store-buttons img{

    height:60px;

    margin:10px;

}