/* About Page Specific Styles */

/* About Section */
.about-section {
    padding: 4rem 0;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

/* Profile Section */
.profile-section {
    position: sticky;
    top: 8rem;
}

.profile-image {
    position: relative;
    margin-bottom: 2rem;
    max-width: 400px;
}

.profile-image img {
    width: 100%;
    border-radius: 1rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.profile-badge {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    width: 4rem;
    height: 4rem;
    background: #06b6d4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
    box-shadow: 0 8px 24px rgba(6, 182, 212, 0.3);
}

.profile-info {
    text-align: center;
}

.profile-name {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.profile-title {
    color: #06b6d4;
    font-family: 'JetBrains Mono', monospace;
    font-size: 1.125rem;
    margin-bottom: 2rem;
}

.profile-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 2rem;
}

.profile-stats .stat-item {
    background: #1e293b;
    padding: 1rem;
    border-radius: 0.5rem;
    text-align: center;
}

.profile-stats .stat-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: #06b6d4;
    font-family: 'JetBrains Mono', monospace;
    margin-bottom: 0.25rem;
}

.profile-stats .stat-label {
    font-size: 0.875rem;
    color: #94a3b8;
}

.contact-info {
    background: #1e293b;
    padding: 1.5rem;
    border-radius: 0.75rem;
    text-align: left;
}

.contact-title {
    font-family: 'JetBrains Mono', monospace;
    color: #06b6d4;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 0;
    font-size: 0.875rem;
    color: #cbd5e1;
}

.contact-icon {
    width: 2rem;
    height: 2rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #06b6d4;
}

/* Content Section */
.content-section {
    space-y: 3rem;
}

.content-block {
    margin-bottom: 3rem;
}

.block-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.block-icon {
    width: 2rem;
    height: 2rem;
    background: #06b6d4;
    border-radius: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #0f172a;
}

.block-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #f8fafc;
}

.block-content {
    background: #1e293b;
    padding: 2rem;
    border-radius: 0.75rem;
}

.block-content p {
    color: #cbd5e1;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.block-content p:last-child {
    margin-bottom: 0;
}

/* Skills Grid */
.skills-grid {
    background: #1e293b;
    padding: 2rem;
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 0.75rem;
}

.skill-item {
    background: #334155;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    text-align: center;
    font-size: 0.875rem;
    font-weight: 500;
    color: #f8fafc;
    transition: all 0.2s ease;
    cursor: default;
}

.skill-item:hover {
    background: rgba(6, 182, 212, 0.2);
    color: #06b6d4;
}

/* Timeline */
.timeline {
    background: #1e293b;
    padding: 2rem;
    border-radius: 0.75rem;
    space-y: 1.5rem;
}

.timeline-item {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #334155;
    transition: all 0.2s ease;
}

.timeline-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.timeline-item:hover {
    background: #334155;
    margin: 0 -1rem 1.5rem -1rem;
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
    border-bottom: 1px solid #475569;
}

.timeline-item:hover:last-child {
    margin-bottom: -1rem;
    border-bottom: none;
}

.timeline-header {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-bottom: 0.75rem;
}

.timeline-role {
    font-size: 1.125rem;
    font-weight: 600;
    color: #f8fafc;
}

.timeline-company {
    color: #06b6d4;
    font-weight: 500;
}

.timeline-date {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #94a3b8;
    font-size: 0.875rem;
    margin-bottom: 0.75rem;
}

.timeline-description {
    color: #cbd5e1;
    line-height: 1.5;
}

/* Approach Grid */
.approach-grid {
    background: #1e293b;
    padding: 2rem;
    border-radius: 0.75rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.approach-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
}

.approach-dot {
    width: 1.5rem;
    height: 1.5rem;
    background: rgba(6, 182, 212, 0.2);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.25rem;
    position: relative;
}

.approach-dot::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0.5rem;
    height: 0.5rem;
    background: #06b6d4;
    border-radius: 50%;
}

.approach-content h4 {
    font-size: 1rem;
    font-weight: 600;
    color: #f8fafc;
    margin-bottom: 0.5rem;
}

.approach-description {
    color: #94a3b8;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .profile-section {
        position: static;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
        align-items: center;
    }
    
    .profile-image {
        margin-bottom: 0;
    }
    
    .profile-info {
        text-align: left;
    }
}

@media (max-width: 768px) {
    .profile-section {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .profile-info {
        text-align: center;
    }
    
    .skills-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
    
    .approach-grid {
        grid-template-columns: 1fr;
    }
    
    .about-section {
        padding: 2rem 0;
    }
}

@media (max-width: 480px) {
    .profile-stats {
        grid-template-columns: 1fr;
    }
    
    .block-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }
    
    .block-content,
    .skills-grid,
    .timeline,
    .approach-grid {
        padding: 1rem;
    }
    
    .contact-info {
        padding: 1rem;
    }
}
