/* 
ABOUT SECTION CSS

Styles for the About Me section
- Full viewport height layout
- Responsive design for mobile and desktop
- Professional styling consistent with the portfolio theme
*/

.about-section {
    background-color: #1a1a1a;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 2.5rem;
    position: relative;
    z-index: 2;
    padding: 2rem 0;
}

/* Title with highlight background */
.section-title .title-highlight {
    position: relative;
    z-index: 1;
}

.section-title .title-highlight::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: -5px;
    right: -5px;
    height: 40%;
    background-color: rgba(100, 255, 218, 0.2);
    z-index: -1;
    transform: skewX(-15deg);
}

/* Large person icon */
.person-icon {
    font-size: 8rem;
    color: #64ffda;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 15px rgba(100, 255, 218, 0.5);
    border: 3px solid #64ffda;
    border-radius: 50%;
    width: 150px;
    height: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 20px rgba(100, 255, 218, 0.3);
}

/* About text paragraph */
.about-text {
    font-size: clamp(1.1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    color: #ccc;
    max-width: 700px;
    margin: 0 auto;
    text-align: left;
    padding: 0 2rem;
}

/* Interest icons section */
.interest-icons {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem 3rem;
    margin-top: 3rem;
    width: 100%;
    max-width: 700px;
    background-color: rgba(30, 30, 30, 0.5);
    border-radius: 15px;
    padding: 2rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(100, 255, 218, 0.1);
}

.icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.icon-item i {
    font-size: 2.2rem;
    color: #64ffda;
    transition: all 0.3s ease;
    background-color: rgba(100, 255, 218, 0.05);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    border: 1px solid rgba(100, 255, 218, 0.2);
}

.icon-item span {
    font-size: 0.9rem;
    font-weight: 500;
    color: #ccc;
    transition: color 0.3s ease;
}

.icon-item:hover i {
    transform: translateY(-5px);
    color: #fff;
    background-color: rgba(100, 255, 218, 0.15);
    box-shadow: 0 5px 15px rgba(100, 255, 218, 0.2);
}

.icon-item:hover span {
    color: #64ffda;
}

/* Mobile styles for about section */
@media (max-width: 768px) {
    .about-content {
        padding: 1.5rem 1rem;
        gap: 2rem;
    }
    
    .about-text {
        font-size: 1.1rem;
        line-height: 1.5;
        padding: 0 1rem;
    }
    
    .person-icon {
        font-size: 6rem;
        width: 120px;
        height: 120px;
    }
    
    .interest-icons {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem;
        margin-top: 2rem;
    }
    
    .icon-item i {
        width: 50px;
        height: 50px;
        font-size: 1.8rem;
    }
}
