/* ============================================================
   About Page — Social Diverse
   Dark Premium Theme
   ============================================================ */

.about-page {
    background: #0f1923;
    padding-bottom: 0;
}

/* ---- Hero Banner ---- */
.about-hero {
    position: relative;
    background: linear-gradient(135deg, #1d9a8a 0%, #6a60f0 100%);
    padding: 80px 0 60px;
    text-align: center;
    overflow: hidden;
}

.about-hero__overlay {
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(255,255,255,0.12) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(106,96,240,0.2) 0%, transparent 50%);
    pointer-events: none;
}

.about-hero__title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.about-hero__subtitle {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.88);
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ---- Creator Section ---- */
.about-creator {
    padding: 60px 0;
    background:
        radial-gradient(ellipse at 40% 50%, rgba(29, 154, 138, 0.18) 0%, transparent 55%),
        radial-gradient(ellipse at 80% 30%, rgba(106, 96, 240, 0.16) 0%, transparent 45%),
        linear-gradient(160deg, #0f2027 0%, #134e5e 50%, #1a3a5c 100%);
}

.creator-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.creator-photos {
    position: relative;
    padding: 48px 40px 48px 40px;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    min-height: 280px;
}

.creator-img {
    object-fit: cover;
    box-shadow: 0 12px 36px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, rgba(29,154,138,0.15), rgba(106,96,240,0.15));
}

.creator-img--primary {
    width: 210px;
    height: 210px;
    border-radius: 50%;
    object-position: center 20%;
    border: 5px solid rgba(29, 154, 138, 0.3);
    z-index: 2;
}

.creator-img--secondary {
    width: 130px;
    height: 130px;
    border-radius: 50%;
    object-position: 70% 30%;
    border: 4px solid rgba(106, 96, 240, 0.3);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.35);
    position: absolute;
    bottom: 30px;
    right: 30px;
    z-index: 3;
}

.creator-bio {
    padding: 48px 48px 48px 20px;
}

.creator-label {
    display: inline-block;
    background: linear-gradient(135deg, rgba(29,154,138,0.15), rgba(106,96,240,0.15));
    color: #1d9a8a;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: 6px 16px;
    border-radius: 999px;
    margin-bottom: 16px;
    border: 1px solid rgba(29, 154, 138, 0.2);
}

.creator-name {
    font-family: 'Poppins', sans-serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
}

.creator-tagline {
    font-size: 1.05rem;
    color: #6a60f0;
    font-weight: 600;
    margin-bottom: 24px;
}

.creator-story p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 14px;
}

.creator-story p:last-child {
    margin-bottom: 0;
}

.creator-story strong {
    color: #1d9a8a;
    font-weight: 600;
}

/* Social Links */
.creator-social {
    display: flex;
    gap: 14px;
    margin-top: 28px;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.social-link i {
    font-size: 1.1rem;
}

.social-link--linkedin {
    background: #0077b5;
    color: #fff;
}

.social-link--linkedin:hover {
    background: #005e93;
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 119, 181, 0.3);
    transform: translateY(-2px);
}

.social-link--instagram {
    background: linear-gradient(135deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    color: #fff;
}

.social-link--instagram:hover {
    opacity: 0.9;
    color: #fff;
    box-shadow: 0 8px 24px rgba(220, 39, 67, 0.3);
    transform: translateY(-2px);
}

/* ---- Goals Section ---- */
.about-goals {
    padding: 70px 0;
    background: #121e2b;
}

.section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.55);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 16px;
}

.goal-card {
    background: rgba(255, 255, 255, 0.04);
    border-radius: 20px;
    padding: 32px 28px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.06);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.goal-card:hover {
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
    transform: translateY(-4px);
    border-color: rgba(29, 154, 138, 0.2);
}

.goal-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(29,154,138,0.15), rgba(106,96,240,0.15));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.goal-icon i {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #1d9a8a, #6a60f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.goal-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.goal-card p {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin: 0;
}

/* ---- Vision & Mission ---- */
.about-vision {
    padding: 70px 0;
    background: #0f1923;
}

.vision-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 40px 36px;
    height: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    border-left: 4px solid #1d9a8a;
    transition: box-shadow 0.3s ease;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.vision-card:hover {
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.vision-card--mission {
    border-left-color: #6a60f0;
}

.vision-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(29,154,138,0.15), rgba(106,96,240,0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.vision-icon i {
    font-size: 1.2rem;
    color: #1d9a8a;
}

.vision-card--mission .vision-icon i {
    color: #6a60f0;
}

.vision-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
}

.vision-card p {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin: 0;
}

/* ---- Version Footer ---- */
.about-version {
    padding: 40px 0 100px;
    background: #0f1923;
}

.version-text {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    font-weight: 500;
    margin-bottom: 6px;
}

.version-badge {
    display: inline-block;
    background: linear-gradient(135deg, #1d9a8a, #6a60f0);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 3px 12px;
    border-radius: 999px;
    letter-spacing: 0.5px;
}

.version-note {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.35);
    margin: 0;
}

/* ---- Responsive ---- */
@media (max-width: 991px) {
    .about-hero {
        padding: 60px 0 44px;
    }

    .about-hero__title {
        font-size: 2.2rem;
    }

    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .creator-bio {
        padding: 36px;
    }

    .creator-photos {
        min-height: 260px;
    }

    .creator-img--secondary {
        right: 20px;
        bottom: 20px;
    }

    .about-version {
        padding-bottom: 120px;
    }
}

@media (max-width: 576px) {
    .about-hero {
        padding: 48px 20px 36px;
    }

    .about-hero__title {
        font-size: 1.8rem;
    }

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

    .about-creator {
        padding: 32px 0;
    }

    .creator-card {
        border-radius: 18px;
        margin: 0 -4px;
    }

    .creator-photos {
        padding: 32px 20px;
        min-height: 230px;
    }

    .creator-img--primary {
        width: 170px;
        height: 170px;
    }

    .creator-img--secondary {
        width: 110px;
        height: 110px;
        right: 16px;
        bottom: 16px;
    }

    .creator-bio {
        padding: 24px 24px 32px;
    }

    .creator-name {
        font-size: 1.7rem;
    }

    .creator-social {
        flex-direction: column;
    }

    .social-link {
        justify-content: center;
    }

    .goals-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .about-goals {
        padding: 48px 0;
    }

    .about-vision {
        padding: 48px 0;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .vision-card {
        padding: 28px 24px;
    }

    .about-version {
        padding: 32px 0 120px;
    }
}
