/* =====================
   About Section - Simple Layout
   ===================== */
.about-section {
    position: relative;
    z-index: 10;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0;
    background: transparent;
}

.about-wrapper {
    display: flex;
    gap: 10rem;
    align-items: center;
    justify-content: center;
}

/* About Content - Left Side */
.about-content {
    flex: 1;
    max-width: 900px;
    background: rgba(255, 255, 255, 0.481);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .about-content {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

.about-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-color);
    margin-bottom: 1.5rem;
}

/* Name as main title */
.about-name-title {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    white-space: nowrap;
}

/* Degree subtitle */
.about-degree {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    opacity: 0.85;
}

.about-tagline {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-color);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.heart-icon {
    color: #e91e63;
    font-size: 1.8rem;
}

.about-description {
    font-family: var(--font-body);
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--text-color);
    margin-bottom: 0;
    text-align: justify;
}

.resume-link {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: underline;
    text-underline-offset: 4px;
    transition: color 0.3s ease;
}

.resume-link:hover {
    color: var(--primary-color);
}

/* About Image - Right Side */
.about-image {
    flex: 0 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.about-image img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

[data-theme="dark"] .about-image img {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

/* Name below image */
.about-name {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-color);
    margin-top: 1rem;
    margin-bottom: 0.75rem;
    text-align: center;
}

/* Social links */
.about-social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1rem;
    margin-top: 1rem;
}

.about-social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--text-color);
    font-size: 1.2rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.about-social-links a:hover {
    background: var(--primary-color);
    color: #fff;
    transform: translateY(-3px);
}

[data-theme="dark"] .about-social-links a {
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.1);
}

/* Email links */
.about-emails {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.about-emails a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-emails a:hover {
    color: var(--primary-color);
}

.about-emails a i {
    font-size: 1rem;
}

/* Resume button */
.resume-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.resume-btn:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* About Section Responsive */
@media (max-width: 991.98px) {
    .about-wrapper {
        flex-direction: column-reverse;
        gap: 1.5rem;
        text-align: center;
    }

    .about-content {
        max-width: 100%;
    }

    .about-name-title {
        font-size: 1.75rem;
        white-space: normal;
    }

    .about-degree {
        font-size: 1.05rem;
    }

    .about-description {
        text-align: justify;
        font-size: 0.80rem;
    }

    .about-image img {
        width: 240px;
        height: 240px;
    }
}

@media (max-width: 575.98px) {
    .about-section {
        padding: 80px 0;
    }

    .about-title {
        font-size: 1.5rem;
    }

    .about-name-title {
        font-size: 1.35rem;
        white-space: normal;
        line-height: 1.3;
    }

    .about-degree {
        font-size: 0.95rem;
    }

    .about-tagline {
        font-size: 1.25rem;
    }

    .about-description {
        font-size: 0.9rem;
        line-height: 1.65;
    }

    .about-image img {
        width: 200px;
        height: 200px;
    }
}