.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 80px 5% 0;
    gap: 2rem;
    position: relative;
}

.hero-content {
    flex: 1;
    animation: slideIn 1s ease-out;
}

.title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.subtitle {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    color: #8b5cf6;
    margin-bottom: 1.5rem;
    font-weight: 600;
    letter-spacing: -0.5px;
}

.description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    max-width: 600px;
    font-weight: 300;
    letter-spacing: 0.2px;
}

.download-cv {
    font-family: 'Space Grotesk', sans-serif;
    display: inline-block;
    padding: 1rem 2rem;
    background: transparent;
    color: white;
    border: 2px solid #8b5cf6;
    border-radius: 30px;
    text-decoration: none;
    margin-bottom: 2rem;
    transition: all 0.2s;
    /* Reduced from 0.3s */
    font-weight: 600;
    letter-spacing: 1px;
    font-size: 1.1rem;
}

.download-cv:hover {
    background: #8b5cf6;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.4);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    animation: float 3s ease-in-out infinite;
}

.hero-image img {
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 4px solid #8b5cf6;
    object-fit: cover;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.social-links {
    display: flex;
    gap: 1.2rem;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #8b5cf6;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.2s, background 0.2s;
    /* Reduced from 0.3s */
    font-size: 1.2rem;
}

.social-btn:hover {
    transform: translateY(-5px);
    background: #7c3aed;
}

@media (max-width: 768px) {
    .hero {
        flex-direction: column-reverse;
        text-align: center;
        padding-top: 5rem;
    }

    .hero-image img {
        width: 200px;
        height: 200px;
        margin-top: 1rem;
    }

    .title {
        font-size: 2.5rem;
    }

    .subtitle {
        font-size: 2rem;
    }

    .social-links {
        justify-content: center;
    }
}