/*******************************************************************************
  File Name : root/assets/css/hero-home.css
  Purpose   : Home Hero Styles
*******************************************************************************/

/* =====================================================
   HOME HERO
===================================================== */

.hero-section {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 580px;
    padding: 70px 0;
    overflow: hidden;
    background:
        linear-gradient(rgba(8,18,38,.68), rgba(8,18,38,.68)),
        var(--hero-bg) center center / cover no-repeat;
}

.hero-overlay {
    display: none;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* =====================================================
   BADGE
===================================================== */

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    margin-bottom: 36px;
    border: 1px solid rgba(255,255,255,.12);
    background: rgba(255,255,255,.04);
    color: #ffffff;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.hero-badge i {
    color: #0d6efd;
}

/* =====================================================
   TYPOGRAPHY
===================================================== */

.hero-section h1 {
    max-width: 820px;
    margin: 0 auto 26px;
    font-size: clamp(3rem,5vw,4.8rem);
    font-weight: 800;
    line-height: 1.10;
    letter-spacing: -1.5px;
    color: #ffffff;
}

.hero-section p {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.28rem;
    font-weight: 400;
    line-height: 1.70;
    color: rgba(255,255,255,.95);
}

/* =====================================================
   BUTTONS
===================================================== */

.hero-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 38px;
}

.hero-buttons .btn {
    min-width: 200px;
    min-height: 58px;
    padding: 16px 36px;
    font-weight: 600;
    border-radius: 0;
    transition: .25s;
}

.hero-buttons .btn:hover {
    transform: translateY(-2px);
}

/* =====================================================
   HERO STATS
===================================================== */

.hero-stats-section {
    background: #07111f;
    border-top: 1px solid rgba(255,255,255,.06);
    border-bottom: 1px solid rgba(255,255,255,.06);
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 100px;
    padding: 36px 0;
}

.hero-stat {
    display: flex;
    flex-direction: column;
}

.hero-stat strong {
    font-size: 2.7rem;
    font-weight: 800;
    line-height: 1;
    color: #ffffff;
}

.hero-stat span {
    margin-top: 10px;
    color: rgba(255,255,255,.70);
    font-size: .95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

/* =====================================================
   RESPONSIVE
===================================================== */

@media (max-width:991px){

    .hero-section{
        min-height:auto;
        padding:60px 0;
        text-align:center;
    }

    .hero-content{
        max-width:100%;
    }

    .hero-section p{
        max-width:100%;
    }

    .hero-buttons{
        justify-content:center;
    }

    .hero-stats{
        gap:50px;
    }

}

@media (max-width:768px){

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

    .hero-section h1{
        font-size:2.8rem;
        letter-spacing:-1px;
    }

    .hero-section p{
        font-size:1.08rem;
        line-height:1.70;
    }

    .hero-buttons{
        flex-direction:column;
        align-items:center;
        width:100%;
    }

    .hero-buttons .btn{
        width:100%;
        max-width:320px;
    }

    .hero-stats{
        flex-direction:column;
        gap:30px;
        text-align:center;
    }

    .hero-stat strong{
        font-size:2.2rem;
    }

}