/* ==================== */
/* About Section - Clean Professional Style */
/* ==================== */

/* Center the section title */
#about .section-title {
    justify-content: center;
    text-align: center;
}

#about .section-title::after {
    display: none;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
}

/* Two Column Layout */
.about-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 60px;
    align-items: start;
}

/* Left: Text Content */
.about-text p {
    font-size: 17px;
    color: #8892b0;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-text p:first-child::first-letter {
    font-size: 48px;
    font-weight: 600;
    color: #00bfff;
    float: left;
    line-height: 1;
    margin-right: 12px;
    margin-top: 5px;
}

.about-text .highlight {
    color: #00bfff;
    font-weight: 500;
}

.about-text a {
    color: #00bfff;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s;
}

.about-text a:hover {
    border-color: #00bfff;
}

/* Right: Photo & Quick Info */
.about-aside {
    position: static;
}

.about-photo-wrapper {
    position: relative;
    width: 100%;
    max-width: 280px;
    margin-bottom: 30px;
}

.about-photo {
    width: 100%;
    aspect-ratio: 1;
    border-radius: 10px;
    background: linear-gradient(135deg, #1a2035, #0d1225);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    position: relative;
    z-index: 2;
    border: 2px solid #1a2035;
    transition: all 0.3s ease;
}

.about-photo:hover {
    border-color: #00bfff;
}

/* Photo border effect */
.about-photo-wrapper::after {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    width: 100%;
    height: 100%;
    border: 2px solid #00bfff;
    border-radius: 10px;
    z-index: 1;
    transition: all 0.3s ease;
}

.about-photo-wrapper:hover::after {
    top: 10px;
    left: 10px;
}

/* Quick Facts */
.about-facts {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.about-fact {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: #8892b0;
}

.about-fact svg {
    width: 18px;
    height: 18px;
    color: #00bfff;
    flex-shrink: 0;
}

/* Skills Tags */
.about-skills {
    margin-top: 40px;
}

.about-skills h4 {
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #00bfff;
    margin-bottom: 15px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.skill-tag {
    background: rgba(0, 191, 255, 0.1);
    color: #00bfff;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    transition: all 0.3s ease;
}

.skill-tag:hover {
    background: rgba(0, 191, 255, 0.2);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-aside {
        order: -1;
        position: static;
    }

    .about-photo-wrapper {
        max-width: 200px;
        margin: 0 auto 30px;
    }

    .about-text p:first-child::first-letter {
        font-size: 36px;
    }
}
