* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", Arial, sans-serif;
}

body {
    background: #000;
    color: #fff;
}

.hero {
    position: relative;
    height: 100vh;
    background: url("./images/hero-bg.jpg.webp") center center / cover no-repeat;
    display: flex;
    align-items: center;
    padding-left: 8%;
}

.overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
}

.shadow-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.8) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-left: 50px;
}

.hero-content h3 {
    letter-spacing: 3px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.473);
    margin-bottom: 20px;
    font-weight: 500;
    text-transform: uppercase;
}

.hero-content h1 {
    font-size: 52px;
    line-height: 1.3;
    font-weight: 600;
    margin-bottom: 50px;
}

.btn-outline {
    display: inline-block;
    padding: 14px 30px;
    border: 2px solid #fff;
    color: #fff;
    text-decoration: none;
    letter-spacing: 2px;
    font-size: 12px;
    transition: all 0.3s ease;
}

.btn-outline:hover {
    background: #fff;
    color: #000;
}

.social-links {
    position: absolute;
    right: 60px;
    top: 50%;
    transform: translateY(-50%);
    list-style: none;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: end;
}

.social-links li {
    margin: 15px 0;
}

.social-links a {
    color: #fff;
    font-size: 14px;
    text-decoration: none;
    display: flex;
    
    align-items: center;
}

.social-links i {
    height: 30px;
    width:30px;
    border: 2px solid #fff;
    border-radius: 50%;
    margin-left: 10px;
    align-items: center;
    display: flex;
    justify-content: center;
}

.social-links span {
    opacity: 0;
    
    transition: 0.3s;
    white-space: nowrap;
}

.social-links a:hover span {
    opacity: 1;
}

@media (max-width: 768px) {
    .hero {
        padding: 40px;
    }

    .hero-content h1 {
        font-size: 36px;
    }

    .social-links {
        display: none;
    }
    .hero-content{
        text-align: center;
        width: 100% !important;
    }
}
