/* Add this at the end of style.css */

/* ========== Hero Section - Horizontal Layout Override ========== */
.hero-content-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-left {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-right {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.hero-greeting {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-text-dark);
    margin: 0;
    font-family: var(--font-body);
}

.hero-name {
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    margin: 0;
    line-height: 1.2;
}

.hero-title {
    font-size: 1.3rem;
    background: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    box-shadow: var(--shadow-sm);
    transition: var(--transition-medium);
}

.social-icon:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.profile-frame {
    width: 350px !important;
    height: 350px !important;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-content-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .hero-left {
        order: 1;
    }

    .hero-right {
        order: 2;
        align-items: center;
    }

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

@media (max-width: 768px) {
    .profile-frame {
        width: 250px !important;
        height: 250px !important;
    }

    .hero-greeting {
        font-size: 2rem;
    }

    .hero-name {
        font-size: 2.5rem;
    }

    .hero-title {
        font-size: 1.1rem;
    }
}


/* About section image */
.about-image {
    width: 100%;
    max-width: 400px;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(45, 80, 22, 0.16);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.05);
}