.hero{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 2;
    text-align: center;
    padding: 20px;
}

.hero-title{
    font-family: 'Poppins', sans-serif;
    font-size: 150px;
    font-weight: 900;
    line-height: .9;
    letter-spacing: -6px;
    text-transform: uppercase;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 0 40px rgba(0,0,0,0.65);
}

.hero-title span{
    display: block;
    font-size: 170px;
    font-weight: 300;
    letter-spacing: 12px;
    opacity: .95;
}

.hero-subtitle{
    margin-top: 25px;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
    font-weight: 500;
    letter-spacing: 8px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
}
.hero-socials{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 45px;
    flex-wrap: wrap;
}
.hero-socials a{
    padding: 15px 40px;
    border: 1px solid rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(10px);
    border-radius: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 2px;
    transition: all .35s ease;
    text-decoration: none;
}

.hero-socials a i{
    font-size: 18px;
}

.hero-socials a:hover{
    transform: translateY(-6px);
    border-color: rgba(255,255,255,0.5);
    background: rgba(255,255,255,0.08);
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
}

.hero-socials a span{
    opacity: .9;
}