/* About Section */
.about {
    background-color: var(--night);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.about-text p {
    color: var(--gray-300);
    line-height: 1.75;
}

.about-text .highlight {
    color: var(--electric-blue);
}

.about-text .highlight-green {
    color: var(--mint-green);
}

.about-text .highlight-purple {
    color: var(--neon-purple);
}

.about-image {
    display: flex;
    justify-content: center;
    border-radius: 50%;
}

.profile-container {
    width: 15rem;
    height: 15rem;
    border-radius: 50%;
    overflow: hidden;
}

.profile-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

/* Responsive */
@media (min-width: 480px) {
    .profile-container {
        width: 18rem;
        height: 18rem;
    }
}

@media (min-width: 768px) {
    .about-content {
        grid-template-columns: 1fr 1fr;
    }
    
    .profile-container {
        width: 20rem;
        height: 20rem;
    }
}

@media (min-width: 1024px) {
    .about-content {
        gap: 4rem;
    }
}
