/* Modern About Section Styles */

:root {
    --about-bg-primary: #121212;
    --about-bg-secondary: #1a1a1a;
    --about-text-primary: #ffffff;
    --about-text-secondary: #b0b0b0;
    --about-text-muted: #808080;
    --about-accent-primary: #ff8201;
    --about-accent-secondary: #fb923c;
    --about-card-bg: rgba(26, 26, 26, 0.75);
    --about-card-border: rgba(40, 40, 40, 0.8);
    --about-stats-bg: rgba(18, 18, 18, 0.95);
    --about-social-bg: rgba(30, 30, 30, 0.5);
}

/* Light Theme Variables */
[data-theme="light"] {
    --about-bg-primary: #f8fafc;
    --about-bg-secondary: #f1f5f9;
    --about-text-primary: #1e293b;
    --about-text-secondary: #212529;
    --about-text-muted: #94a3b8;
    --about-card-bg: #ffffff;
    --about-card-border: #e2e8f0;
    --about-stats-bg: #ffffff;
    --about-social-bg: rgba(241, 245, 249, 0.7);
}

/* Modern About Section */
.modern-about-section {
    position: relative;
    padding: 100px 0; 
    overflow: hidden;
}

.modern-about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; 
    pointer-events: none;
}

.about-container {
    position: relative;
    z-index: 2; 
    margin: 0 auto;
    padding: 0 20px;
}

.about-header {
    margin-bottom: 60px;
    text-align: center;
}

.about-title {
    font-size: 3.5rem;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: var(--about-accent-primary);
    border-radius: 2px;
}

.about-subtitle {
    font-size: 1.1rem;
    color: var(--about-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* About Content Layout */
.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    margin-bottom: 60px;
}

/* About Info Section */
.about-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.about-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: var(--about-text-secondary);
    margin: 0;
}

.about-bio strong {
    color: var(--about-accent-primary);
    font-weight: 600;
}

.multi-talented {
    font-weight: 700;
    color: var(--about-text-primary);
}

.about-highlight {
    font-weight: 600;
    color: var(--about-text-primary);
}

.highlight-orange {
    color: var(--about-accent-primary);
    font-weight: 600;
}

/* About Stats */
.about-stats {
    display: flex;
    gap: 20px;
    margin-top: 30px;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 24px 15px;
    background: var(--about-stats-bg);
    border: 1px solid var(--about-card-border);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
    border-color: var(--about-accent-primary);
    box-shadow: 0 10px 25px rgba(255, 130, 1, 0.1);
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--about-accent-primary);
    margin-bottom: 5px;
    line-height: 1;
}

.stat-label {
    font-size: 0.85rem;
    color: var(--about-text-secondary) !important;
    line-height: 1.4;
}

/* Social Links */
.about-social {
    display: flex;
    gap: 15px;
    margin-top: 40px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--about-social-bg);
    border: 1px solid var(--about-card-border);
    color: var(--about-text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--about-accent-primary);
    color: white;
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(255, 130, 1, 0.2);
}

/* Profile Image */
.about-profile {
    position: relative;
}

.profile-image-container {
    position: relative;
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
}

.profile-image {
    width: 100%;
    height: auto;
    border-radius: 16px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.profile-frame {
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;
    border: 2px solid var(--about-accent-primary);
    border-radius: 25px;
    z-index: -1;
}

.profile-badge {
    position: absolute;
    bottom: -15px;
    right: -10px;
    background: var(--about-accent-primary);
    color: white;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 10px 20px rgba(255, 130, 1, 0.3);
}

/* Skills & Experience Tabs */
.about-tabs {
    margin-top: 20px;
}

.tabs-header {
    display: flex;
    border-bottom: 2px solid rgb(255 130 1 / 14%);
    margin-bottom: 40px;
}

.tab-button {
    padding: 12px 24px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--about-text-secondary);
    background: transparent;
    border: none;
    border-bottom: 3px solid transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 10px;
    position: relative;
}

.tab-button:hover {
    color: var(--about-accent-primary);
}

.tab-button.active {
    color: var(--about-accent-primary);
    border-bottom-color: var(--about-accent-primary);
}

.tab-button::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 3px;
    background-color: var(--about-accent-primary);
    transition: width 0.3s ease;
}

.tab-button:hover::after {
    width: 100%;
}

.tab-button.active::after {
    width: 100%;
}

.tab-content {
    display: none;
    animation: fadeIn 0.5s ease;
}

.tab-content.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Skills List */
.skills-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.skill-item {
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 30px;
    background: var(--about-card-bg);
    border: 1px solid var(--about-card-border);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.skill-item:hover {
    transform: translateY(-5px);
    border-color: var(--about-accent-primary);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.skill-header {
    display: flex;
    align-items: center;
    gap: 15px;
}

.skill-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #ff9500, #e67e00);
    border-radius: 12px;
    color: white;
    font-size: 1.2rem;
    position: relative;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 8px 16px rgba(255, 149, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
}

.skill-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(145deg, #ffb84d, #cc6600);
    border-radius: 14px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.skill-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    border-radius: 10px;
    pointer-events: none;
}

.skill-icon:hover {
    transform: translateY(-8px) rotateX(15deg) rotateY(5deg) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(255, 149, 0, 0.4),
        0 10px 20px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}

.skill-icon:hover::before {
    opacity: 1;
}

.skill-icon svg {
    transform: translateZ(10px);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    transition: transform 0.3s ease;
}

.skill-icon:hover svg {
    transform: translateZ(20px) scale(1.1);
}

.skill-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--about-text-primary);
    margin: 0;
}

.skill-subtitle {
    font-size: 0.9rem;
    color: var(--about-accent-primary);
    margin: 0;
    font-weight: 500;
}

.skill-description {
    font-size: 0.95rem;
    color: var(--about-text-secondary);
    margin: 0;
    line-height: 1.6;
}

/* Experience List */
.experience-list {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 30px !important;
}

.experience-item {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
    transition: all 0.3s ease;
}

.experience-item:hover {
    transform: translateY(-5px);
}

.experience-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--about-accent-primary), transparent);
}

.experience-item::after {
    content: '';
    position: absolute;
    top: 8px;
    left: -4px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--about-accent-primary);
}

.experience-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--about-text-primary);
    margin-bottom: 8px;
}

.experience-company {
    font-size: 1rem;
    color: var(--about-accent-primary);
    margin-bottom: 8px;
    font-weight: 500;
}

.experience-period {
    font-size: 0.9rem;
    color: var(--about-text-secondary);
}

/* Responsive Styles */
@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .about-profile {
        order: -1;
    }
    
    .skills-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .modern-about-section {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }

    .experience-list {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 576px) {
    .tabs-header {
        flex-wrap: wrap;
    }
    
    .tab-button {
        flex: 1;
        padding: 10px;
        text-align: center;
        font-size: 0.9rem;
    }
    
    .skill-item {
        padding: 20px;
    }
} 