body, html {
    height: 100%;
    margin: 0;
}

.hero {
    background: url('../../assets/images/background.png') no-repeat center center/cover;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*justify-content: center;*/
    text-align: center;
    color: white;
    position: relative;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    margin-top: 40px;
}

.hero-logo img {
    width: 180px;
    margin-bottom: 30px;
}

.hero h1 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-weight: 500;
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.btn-custom {
    background: white;
    color: #1a1a1a;
    border: none;
    border-radius: 10px;
    padding: 16px 40px;
    margin: 8px 0;
    font-weight: 600;
    transition: all 0.3s;
    width: 400px;
}

.btn-custom:hover {
    color: #1a1a1a;
    background: #f0f0f0;
    transform: translateY(-3px);
}

.social-icons {
    margin-top: 40px;
}

.social-icons a {
    text-decoration: none;
}

.social-icons img {
    cursor: pointer;
    width: 28px;
    margin: 0 10px;
    filter: brightness(0) invert(1);
    transition: all 0.3s;
}

.social-icons img:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .hero-content {
        margin-top: 30px;
    }
    .hero h1 {
        font-size: 1rem;
    }

    .btn-custom {
        width: 320px;
    }
}
