/* ===========================
   HERO SECTION
   =========================== */

.hero{

    height:500px;

    width:min(1400px,95%);

    margin:2rem auto;
    align-items:flex-start;
    text-align:left;

    border-radius:24px;

    overflow:hidden;

    background-size:cover;

    background-position:center;

    background-repeat:no-repeat;

}

.hero h1{

    font-size:clamp(2rem, 3rem);

    max-width:750px;

    line-height:1.15;

    margin-bottom:1rem;

}

.hero p{

    color:var(--muted);

    font-size:1.1rem;

    max-width:550px;

    margin-bottom:3rem;

}

.hero-content{

    max-width:100%;

    height:100%;

    display:flex;

    flex-direction:column;

    justify-content:flex-end;

    padding:3rem;

}

/* ===========================
   SEARCH
   =========================== */

.search-box{

    display:flex;

    gap:1rem;

    width:100%;

}

.search-box input{

    flex:1;
    width:100%;

    padding:18px 22px;

    border:none;

    outline:none;

    border-radius:15px;

    background:var(--surface);

    color:var(--text);

    font-size:1rem;

}

.hero-bottom{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:1.5rem;

}
.hero-indicators{

    display:flex;

    gap:10px;

    margin-top:20px;

}
.hero-dot{

    width:12px;

    height:12px;

    border-radius:50%;

    background:rgba(255,255,255,0.4);

    cursor:pointer;

    transition:0.3s;

}
.hero-dot.active{

    background: var(blue);

    transform: scale(1.3);

    box-shadow:
        0 0 10px var(--primary);

}

.hero-btn{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:12px 24px;

    border-radius:12px;

    text-decoration:none;

    cursor:pointer;

    font-weight:600;

}

.hero-btn.primary{

    background:var(--primary);

    color:white;

}
.hero-btn.secondary{

    background:rgba(255,255,255,.1);

    color:white;

    border:1px solid rgba(255,255,255,.2);

}
.hero-buttons{

    display:flex;

    gap:1rem;

}
#featuredDescription{

    max-width:700px;

    overflow:hidden;

}
#featuredTitle{

    display:-webkit-box;

    -webkit-line-clamp:2;

    -webkit-box-orient:vertical;

    overflow:hidden;

}

.hero-info{

    display:flex;

    gap:1rem;

    margin-bottom:1rem;

}
.hero-info span{

    padding:8px 14px;

    border-radius:999px;

    background:rgba(255,255,255,.1);

    border:1px solid rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    font-size:.9rem;

    font-weight:600;

}
