.hero{
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 36px;
}

.hero-left{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 16px;
}

.intro{
    font-size: 44px;
    line-height: 1.1;
}

.intro .tukar {
    color: var(--accent);
}

.description{
    font-size: 16px;
    color: var(--muted);
    max-width: 620px;
}

.hero-button{
    display: flex;
    padding-top: 24px;
    gap: 14px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 700;
    border: none;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.see-work{
    background-color: var(--accent);
    color: white;
    box-shadow: var(--shadow);
}

.contact-me {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255,255,255,0.15);
}

.btn:hover {
    transform: translateY(-3px);
}

.see-work:hover {
    background-color: var(--accent-2);
    color: #111;
}

.contact-me:hover{
    background-color: rgba(255,255,255,0.08);
}

.hero-right {
    flex: 1;
    display: flex;
    justify-content: center;
}


.hero-image {
    width: 100%;
    max-width: 520px;
    border-radius: 20px;
    box-shadow: var(--shadow);
    object-fit: cover;
}

@media (max-width: 980px) {
    .intro {
        font-size: 36px;
    }
}

@media (max-width: 820px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
    }

    .hero-left {
        align-items: center;
    }

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