/* Profile Page Styles */

/* Profile Hero Section */
.profile-hero {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary-dark) 100%);
    padding: 100px 0 80px;
    position: relative;
    overflow: hidden;
}

.profile-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(255, 107, 107, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(255, 159, 28, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.profile-hero-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 60px;
    align-items: center;
}

.profile-image-container {
    position: relative;
    text-align: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center;
    border: 6px solid var(--primary-pink);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.profile-image:hover {
    transform: scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 107, 0.4);
}

.profile-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(255, 107, 107, 0.3);
}

.profile-info h1 {
    font-size: 3rem;
    font-weight: 800;
    color: var(--light-gray);
    margin: 0 0 10px 0;
    line-height: 1.1;
}

.profile-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin: 0 0 20px 0;
}

.profile-tagline {
    font-size: 1.2rem;
    color: var(--light-gray);
    opacity: 0.9;
    margin: 0 0 40px 0;
    line-height: 1.6;
    max-width: 600px;
}

/* Profile Stats */
.profile-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin: 40px 0;
    padding: 30px 0;
    border-top: 1px solid rgba(255, 107, 107, 0.2);
    border-bottom: 1px solid rgba(255, 107, 107, 0.2);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-pink);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    font-size: 0.9rem;
    color: var(--light-gray);
    opacity: 0.8;
    font-weight: 500;
}

/* Profile Actions */
.profile-actions {
    display: flex;
    gap: 20px;
    margin-top: 40px;
}

/* Profile Sections */
.profile-section {
    padding: 80px 0;
    position: relative;
}

.profile-section:nth-child(even) {
    background: var(--secondary-dark);
}

.profile-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--light-gray);
    text-align: center;
    margin-bottom: 60px;
    position: relative;
}

.profile-section h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-pink), var(--accent-orange));
    border-radius: 2px;
}

/* About Section */
.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--light-gray);
    margin-bottom: 25px;
    opacity: 0.9;
}

.about-highlights h3 {
    font-size: 1.4rem;
    color: var(--primary-pink);
    margin-bottom: 25px;
    font-weight: 600;
}

.achievement-list {
    list-style: none;
    padding: 0;
}

.achievement-list li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--light-gray);
    opacity: 0.9;
}

.achievement-list i {
    color: var(--accent-orange);
    margin-top: 4px;
    font-size: 1.1rem;
}

/* Experience Timeline */
.experience-timeline {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

.experience-timeline::before {
    content: '';
    position: absolute;
    left: 150px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, var(--primary-pink), var(--accent-orange));
}

.timeline-item {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 60px;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: 138px;
    top: 20px;
    width: 25px;
    height: 25px;
    background: var(--primary-pink);
    border-radius: 50%;
    border: 4px solid var(--primary-dark);
    z-index: 2;
}

.timeline-date {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary-pink);
    text-align: right;
    padding-top: 15px;
}

.timeline-content h3 {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--light-gray);
    margin: 0 0 8px 0;
}

.timeline-content h4 {
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--accent-orange);
    margin: 0 0 20px 0;
}

.timeline-content p {
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 1.7;
    margin-bottom: 20px;
}

.timeline-achievements {
    list-style: none;
    padding: 0;
}

.timeline-achievements li {
    color: var(--light-gray);
    opacity: 0.8;
    margin-bottom: 8px;
    padding-left: 20px;
    position: relative;
}

.timeline-achievements li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--primary-pink);
    font-weight: bold;
}

/* Skills Grid */
.skills-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.skill-category {
    background: var(--primary-dark);
    padding: 40px;
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.skill-category:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.skill-category h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--primary-pink);
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.skill-category i {
    font-size: 1.2rem;
}

.skill-list {
    list-style: none;
    padding: 0;
}

.skill-list li {
    color: var(--light-gray);
    opacity: 0.9;
    margin-bottom: 12px;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 107, 107, 0.1);
    font-weight: 500;
}

.skill-list li:last-child {
    border-bottom: none;
}

/* Value Proposition */
.value-proposition {
    background: var(--primary-dark);
}

.value-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.value-card {
    background: var(--secondary-dark);
    padding: 40px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid rgba(255, 107, 107, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: white;
}

.value-card h3 {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--light-gray);
    margin-bottom: 15px;
}

.value-card p {
    color: var(--light-gray);
    opacity: 0.9;
    line-height: 1.6;
}

/* Profile CTA */
.profile-cta {
    background: linear-gradient(135deg, var(--primary-pink), var(--accent-orange));
    padding: 80px 0;
    text-align: center;
    color: white;
}

.profile-cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.profile-cta p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
}

.cta-button.large {
    font-size: 1.2rem;
    padding: 18px 40px;
    background: white;
    color: var(--primary-pink);
}

.cta-button.large:hover {
    background: var(--light-gray);
    color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Responsive Design */
@media (max-width: 992px) {
    .profile-hero-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .profile-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .value-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .experience-timeline::before {
        left: 20px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-left: 40px;
    }
    
    .timeline-item::before {
        left: -28px;
    }
    
    .timeline-date {
        text-align: left;
        font-size: 0.9rem;
    }
}

@media (max-width: 768px) {
    .profile-image {
        width: 200px;
        height: 200px;
    }
    
    .profile-info h1 {
        font-size: 2.5rem;
    }
    
    .profile-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .profile-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .profile-hero {
        padding: 60px 0 40px;
    }
    
    .profile-section {
        padding: 60px 0;
    }
    
    .profile-section h2 {
        font-size: 2rem;
    }
    
    .skill-category,
    .value-card {
        padding: 30px;
    }
}