/* About Me Page Styles */

/* Hero Section */
.about-hero-section {
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.05) 0%, rgba(60, 199, 113, 0.05) 100%);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.about-hero-content {
    padding-right: 20px;
}

.about-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--primary-background);
    color: var(--tertiary-color);
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.about-hero-title {
    font-size: 48px;
    font-weight: 700;
    color: var(--tertiary-color);
    margin-bottom: 20px;
    line-height: 1.2;
}

.text-gradient {
    background: var(--primary-background);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-description {
    font-size: 18px;
    color: var(--quaternary-color);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-stats-inline {
    display: flex;
    gap: 40px;
    flex-wrap: wrap;
}

.about-stats-inline .stat-item {
    text-align: left;
}

.about-stats-inline .stat-item h3 {
    font-size: 36px;
    font-weight: 700;
    background: var(--primary-background);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
}

.about-stats-inline .stat-item p {
    font-size: 14px;
    color: var(--quaternary-color);
    margin: 0;
    font-weight: 500;
}

/* Hero Image */
.about-hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.image-wrapper {
    position: relative;
    width: 300px;
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.profile-image {
    width: 250px;
    height: 250px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
    z-index: 2;
    box-shadow: 0 10px 40px rgba(40, 233, 193, 0.3);
    border: 5px solid #fff;
}

.image-decoration {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: var(--primary-background);
    opacity: 0.2;
    z-index: 1;
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.2;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.3;
    }
}

/* Info Grid */
.about-info-grid .info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: #FAFAFA;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.about-info-grid .info-item:hover {
    background: var(--quinary-color);
    transform: translateY(-2px);
}

.about-info-grid .info-item i {
    font-size: 28px;
    color: var(--secondary-color);
    min-width: 40px;
}

.about-info-grid .info-item > div {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.info-label {
    font-size: 13px;
    color: var(--quaternary-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 16px;
    color: var(--tertiary-color);
    font-weight: 600;
}

/* Skills Section */
.skill-card {
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.skill-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-background);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.skill-card:hover::before {
    transform: scaleX(1);
}

.skill-card:hover {
    transform: translateY(-5px);
}

.skill-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.1) 0%, rgba(60, 199, 113, 0.1) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon {
    background: var(--primary-background);
    transform: rotate(5deg) scale(1.05);
}

.skill-icon i {
    font-size: 32px;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.skill-card:hover .skill-icon i {
    color: var(--tertiary-color);
}

.skill-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--tertiary-color);
    margin-bottom: 15px;
}

.skill-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    justify-content: center;
}

.skill-tag {
    padding: 6px 15px;
    background: var(--quinary-color);
    color: var(--quaternary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.skill-card:hover .skill-tag {
    background: linear-gradient(135deg, rgba(40, 233, 193, 0.15) 0%, rgba(60, 199, 113, 0.15) 100%);
    color: var(--tertiary-color);
}

/* Interests Section */
.interest-card {
    text-align: center;
    padding: 30px 20px;
    border-radius: 20px;
    transition: all 0.3s ease;
    background: #fff;
    border: 2px solid transparent;
}

.interest-card:hover {
    border-color: var(--primary-color);
    box-shadow: 0 5px 25px rgba(40, 233, 193, 0.15);
    transform: translateY(-5px);
}

.interest-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-background);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    transition: all 0.3s ease;
}

.interest-card:hover .interest-icon {
    transform: scale(1.1) rotate(10deg);
}

.interest-icon i {
    font-size: 26px;
    color: var(--tertiary-color);
}

.interest-title {
    font-size: 18px;
    font-weight: 600;
    color: var(--tertiary-color);
    margin-bottom: 10px;
}

.interest-description {
    font-size: 14px;
    color: var(--quaternary-color);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.cta-title {
    font-size: 36px;
    font-weight: 700;
    color: var(--tertiary-color);
}

.cta-description {
    font-size: 18px;
    color: var(--quaternary-color);
    line-height: 1.8;
}

.cta-buttons .thm-btn {
    min-width: 160px;
}

/* Responsive Styles */
@media screen and (max-width: 991px) {
    .about-hero-title {
        font-size: 36px;
    }

    .about-hero-description {
        font-size: 16px;
    }

    .about-stats-inline {
        gap: 30px;
    }

    .about-stats-inline .stat-item h3 {
        font-size: 30px;
    }

    .image-wrapper {
        width: 250px;
        height: 250px;
    }

    .profile-image {
        width: 200px;
        height: 200px;
    }

    .cta-title {
        font-size: 28px;
    }

    .cta-description {
        font-size: 16px;
    }
}

@media screen and (max-width: 767px) {
    .about-hero-section {
        min-height: auto;
        padding: 60px 0;
    }

    .about-hero-content {
        padding-right: 0;
        text-align: center;
    }

    .about-hero-title {
        font-size: 32px;
    }

    .about-stats-inline {
        justify-content: center;
        gap: 20px;
    }

    .about-stats-inline .stat-item {
        text-align: center;
    }

    .about-stats-inline .stat-item h3 {
        font-size: 28px;
    }

    .about-info-grid .info-item {
        padding: 15px;
    }

    .about-info-grid .info-item i {
        font-size: 24px;
        min-width: 35px;
    }

    .skill-icon {
        width: 60px;
        height: 60px;
    }

    .skill-icon i {
        font-size: 28px;
    }

    .cta-title {
        font-size: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .thm-btn {
        width: 100%;
    }
}

@media screen and (max-width: 576px) {
    .about-badge {
        font-size: 12px;
        padding: 6px 15px;
    }

    .about-hero-title {
        font-size: 28px;
    }

    .about-hero-description {
        font-size: 15px;
    }

    .about-stats-inline .stat-item h3 {
        font-size: 24px;
    }

    .image-wrapper {
        width: 200px;
        height: 200px;
    }

    .profile-image {
        width: 160px;
        height: 160px;
    }

    .skill-title {
        font-size: 18px;
    }

    .interest-title {
        font-size: 16px;
    }

    .interest-description {
        font-size: 13px;
    }
}
