/* =========================================
   About Section - Personal Touch
   ========================================= */

.about-personal {
    background: var(--background-card);
}

.about-intro {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1000px;
    margin: 0 auto var(--spacing-xl);
}

.about-image {
    position: relative;
}

.profile-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--background-elevated) 0%, var(--background-card) 100%);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: var(--text-base);
    border: 2px dashed var(--border-color);
    position: relative;
    overflow: hidden;
}

.profile-placeholder::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 30%, rgba(16, 185, 129, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.profile-placeholder span {
    position: relative;
    z-index: 1;
}

.profile-img {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: var(--radius-xl);
    box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
    border: 3px solid var(--border-color);
    transition: all var(--transition-base);
}

.profile-img:hover {
    transform: scale(1.02);
    box-shadow: 0 24px 48px -12px rgba(16, 185, 129, 0.5);
    border-color: var(--primary-green);
}

.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.about-text h3 {
    font-size: var(--text-3xl);
    color: var(--text-white);
    margin-bottom: var(--spacing-sm);
    background: linear-gradient(135deg, var(--primary-green-light) 0%, var(--accent-red-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-text p {
    font-size: var(--text-base);
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: var(--spacing-sm);
}

.about-text p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-intro {
        grid-template-columns: 1fr;
        text-align: center;
        gap: var(--spacing-md);
    }

    .profile-placeholder,
    .profile-img {
        width: 200px;
        height: 200px;
        margin: 0 auto;
    }

    .about-text h3 {
        font-size: var(--text-2xl);
    }

    .about-text p {
        font-size: var(--text-sm);
    }
}

@media (max-width: 480px) {
    .profile-placeholder,
    .profile-img {
        width: 150px;
        height: 150px;
    }
}
