/* ========================================
   ABOUT PAGE — moi.css
   Niang-pixels Portfolio
   ======================================== */

/* ── VARIABLES ── */
:root {
    --bg: #f3f2ee;
    --white: #ffffff;
    --border: #e0ddd6;
    --text: #1a1a1a;
    --muted: #6b7280;
    --accent: #0a66c2;
    --accent-light: #e8f0fb;
    --accent2: #057642;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 16px rgba(0,0,0,0.04);
    --transition: all 0.2s ease;
}

/* ── PAGE WRAPPER ── */
.about-page {
    max-width: 860px;
    margin: 0 auto;
    padding: 28px 16px 70px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ════════════════════════════════════════
   CARD BASE
   ════════════════════════════════════════ */
.ap-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    box-shadow: var(--shadow);
    overflow: hidden;
    animation: fadeUp 0.5s ease both;
}

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

.ap-card:nth-child(1) { animation-delay: 0.05s; }
.ap-card:nth-child(2) { animation-delay: 0.12s; }
.ap-card:nth-child(3) { animation-delay: 0.19s; }
.ap-card:nth-child(4) { animation-delay: 0.26s; }
.ap-card:nth-child(5) { animation-delay: 0.33s; }
.ap-card:nth-child(6) { animation-delay: 0.40s; }

/* ── SECTION HEADER ── */
.ap-section-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 26px 0;
    margin-bottom: 18px;
}

.ap-section-head h2 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.15rem;
    letter-spacing: -0.01em;
    color: var(--text);
}

.ap-section-head a {
    font-size: 0.78rem;
    color: var(--muted);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
}

.ap-section-head a:hover { color: var(--accent); }

/* ════════════════════════════════════════
   1. PROFIL CARD
   ════════════════════════════════════════ */
.profile-banner {
    height: 140px;
    background: linear-gradient(135deg, #0a66c2 0%, #1e8fc4 50%, #38b2e0 100%);
    position: relative;
    overflow: hidden;
}

.profile-banner::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
}

.profile-body {
    padding: 0 26px 24px;
}

.avatar-wrap {
    position: relative;
    display: inline-block;
    margin-top: -50px;
    margin-bottom: 12px;
}

.avatar-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--white);
    object-fit: cover;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    display: block;
}

.avatar-initiale {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    border: 4px solid var(--white);
    background: linear-gradient(135deg, #0a66c2, #38b2e0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'DM Serif Display', serif;
    font-size: 2.4rem;
    color: white;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
}

.online-dot {
    width: 15px;
    height: 15px;
    background: #57c557;
    border: 2.5px solid var(--white);
    border-radius: 50%;
    position: absolute;
    bottom: 7px;
    right: 5px;
    animation: pulseDot 2s infinite;
}

@keyframes pulseDot {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%       { transform: scale(1.25); opacity: 0.7; }
}

.profile-info h1 {
    font-family: 'DM Serif Display', serif;
    font-size: 1.5rem;
    color: var(--text);
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}

.profile-pro-title {
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 5px;
}

.profile-slogan {
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.profile-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.76rem;
    color: var(--muted);
    margin-bottom: 18px;
}

.profile-meta-row span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.profile-actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

/* ── BOUTONS ── */
.btn-ap-primary {
    background: var(--accent);
    color: white;
    border: none;
    padding: 9px 20px;
    border-radius: 22px;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
    box-shadow: 0 3px 12px rgba(10,102,194,0.25);
}

.btn-ap-primary:hover {
    background: #0858a8;
    transform: translateY(-1px);
    color: white;
}

.btn-ap-outline {
    background: transparent;
    color: var(--accent);
    border: 1.5px solid var(--accent);
    padding: 8px 18px;
    border-radius: 22px;
    font-size: 0.83rem;
    font-weight: 600;
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: var(--transition);
}

.btn-ap-outline:hover {
    background: var(--accent-light);
    color: var(--accent);
}

/* ── STATS ── */
.stats-row {
    display: flex;
    padding: 0 26px 22px;
}

.stat-ap {
    flex: 1;
    text-align: center;
    padding: 12px 0;
    border-right: 1px solid var(--border);
}

.stat-ap:last-child { border-right: none; }

.stat-ap-num {
    font-family: 'DM Serif Display', serif;
    font-size: 1.7rem;
    color: var(--accent);
    display: block;
    line-height: 1;
    margin-bottom: 4px;
}

.stat-ap-label {
    font-size: 0.7rem;
    color: var(--muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* ════════════════════════════════════════
   2. BIO
   ════════════════════════════════════════ */
.bio-body {
    padding: 0 26px 24px;
}

.bio-quote {
    border-left: 3px solid var(--accent);
    padding-left: 14px;
    font-family: 'DM Serif Display', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: var(--accent);
    margin-bottom: 14px;
}

.bio-body p {
    font-size: 0.88rem;
    line-height: 1.85;
    color: #333;
}

.bio-link {
    color: var(--accent);
    font-weight: 600;
    text-decoration: none;
}

.bio-link:hover { text-decoration: underline; }

/* ════════════════════════════════════════
   3. COMPÉTENCES
   ════════════════════════════════════════ */
.skills-body {
    padding: 0 26px 24px;
}

.skills-cat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--muted);
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 20px;
}

.skills-cat-label:first-child { margin-top: 0; }

.skills-flex {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 8px;
}

.skill-ap-tag {
    background: var(--accent-light);
    color: var(--accent);
    border: 1px solid #c2d9f5;
    border-radius: 22px;
    padding: 6px 14px;
    font-size: 0.78rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: default;
    transition: var(--transition);
}

.skill-ap-tag:hover {
    background: var(--accent);
    color: white;
    transform: translateY(-2px);
}

.skill-ap-tag.green {
    background: #e6f4ed;
    color: var(--accent2);
    border-color: #b2d8c4;
}

.skill-ap-tag.green:hover {
    background: var(--accent2);
    color: white;
}

/* Barre de niveau */
.skill-bar-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
}

.skill-bar-wrap:last-child { border-bottom: none; }

.skill-bar-name {
    font-size: 0.82rem;
    font-weight: 500;
    min-width: 120px;
    color: var(--text);
}

.skill-bar-track {
    flex: 1;
    height: 6px;
    background: var(--border);
    border-radius: 10px;
    overflow: hidden;
}

.skill-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #38b2e0);
    border-radius: 10px;
    width: 0;
    transition: width 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.skill-bar-pct {
    font-size: 0.72rem;
    color: var(--muted);
    font-weight: 600;
    min-width: 34px;
    text-align: right;
}

/* ════════════════════════════════════════
   4. PARCOURS / EXPÉRIENCE
   ════════════════════════════════════════ */
.exp-body {
    padding: 0 26px 24px;
}

.exp-item {
    display: flex;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
}

.exp-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.exp-logo {
    width: 48px;
    height: 48px;
    border-radius: 8px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    border: 1px solid var(--border);
    background: var(--bg);
}

.exp-info h3 {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    color: var(--text);
}

.exp-company {
    font-size: 0.8rem;
    color: var(--muted);
    margin-bottom: 2px;
}

.exp-date {
    font-size: 0.74rem;
    color: #999;
    margin-bottom: 6px;
}

.exp-desc {
    font-size: 0.8rem;
    color: #555;
    line-height: 1.6;
}

/* ════════════════════════════════════════
   5. VALEURS
   ════════════════════════════════════════ */
.values-body {
    padding: 0 26px 24px;
}

.values-grid-ap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.value-ap-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 16px;
    transition: var(--transition);
}

.value-ap-card:hover {
    background: var(--accent-light);
    border-color: #c2d9f5;
    transform: translateY(-2px);
}

.value-ap-icon {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.value-ap-card h3 {
    font-size: 0.88rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--text);
}

.value-ap-card p {
    font-size: 0.77rem;
    color: var(--muted);
    line-height: 1.6;
}

/* ════════════════════════════════════════
   6. CONTACT
   ════════════════════════════════════════ */
.contact-ap-body {
    padding: 0 26px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-ap-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 11px 14px;
    border-radius: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    text-decoration: none;
    color: var(--text);
    font-size: 0.83rem;
    font-weight: 500;
    transition: var(--transition);
}

.contact-ap-item:hover {
    background: var(--accent-light);
    border-color: #c2d9f5;
    transform: translateX(5px);
    color: var(--accent);
}

.contact-ap-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    background: var(--accent-light);
}

.contact-ap-info small {
    display: block;
    font-size: 0.71rem;
    color: #999;
    font-weight: 400;
    margin-top: 1px;
}

/* Réseaux sociaux */
.socials-ap {
    display: flex;
    gap: 10px;
    padding: 0 26px 24px;
    flex-wrap: wrap;
}

.social-ap-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--bg);
    border: 1.5px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    text-decoration: none;
    color: var(--muted);
    transition: var(--transition);
}

.social-ap-btn:hover {
    border-color: var(--accent);
    background: var(--accent-light);
    transform: translateY(-3px);
    color: var(--accent);
    box-shadow: 0 4px 10px rgba(10,102,194,0.15);
}

/* ── FOOTER ── */
.ap-footer {
    text-align: center;
    font-size: 0.72rem;
    color: #bbb;
    padding-top: 6px;
    letter-spacing: 0.05em;
}

/* ════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════ */
@media (max-width: 600px) {
    .about-page {
        padding: 16px 10px 50px;
    }

    .values-grid-ap {
        grid-template-columns: 1fr;
    }

    .stats-row {
        flex-wrap: wrap;
    }

    .stat-ap {
        border-right: none;
        border-bottom: 1px solid var(--border);
        min-width: 50%;
    }

    .stat-ap:last-child {
        border-bottom: none;
    }

    .profile-actions {
        flex-direction: column;
    }

    .btn-ap-primary,
    .btn-ap-outline {
        justify-content: center;
    }

    .ap-section-head {
        padding: 18px 16px 0;
    }

    .bio-body,
    .skills-body,
    .exp-body,
    .values-body,
    .contact-ap-body,
    .socials-ap,
    .stats-row,
    .profile-body {
        padding-left: 16px;
        padding-right: 16px;
    }
}




:root {
    --primary-color: #0084ff;
    --primary-dark: #1e53af;
    --secondary-color: #10b981;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --bg-white: #ffffff;
    --border-color: #e5e7eb;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
    --border-radius: 8px;
    --max-width: 1200px;
}




/* ========================================
   ABOUT HERO SECTION
   ======================================== */

.about-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.hero-text {
    animation: fadeInLeft 0.8s ease;
    font-size: 3.5rem;
}

.about-title {
    font-weight: 900;
}

.about-subtitle {
    font-size: 1.5rem;
    opacity: 0.95;
}



.hero-image img {
    width: 100%;
    max-width: 400px;
    height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 25px -5px var(--primary-color);
    position: relative;
    z-index: 2;
}

.image-decoration {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 100%;
    height: 100%;
    border: 4px solid var(--primary-color);
    border-radius: 20px;
    z-index: 1;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* ========================================
   BIOGRAPHY SECTION
   ======================================== */
.biography-section {
    padding: 5rem 5rem;
    background: var(--bg-white);
}

.biography-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
}

.bio-main h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-dark);
}

.bio-text {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
    text-align: justify;
}

.btn-download-cv {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: var(--primary-color);
    color: white;
    border-radius: var(--border-radius);
    font-weight: 600;
    transition: var(--transition);
    text-decoration: none;
}

.btn-download-cv:hover {
    background: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.bio-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.stat-card {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    text-align: center;
    border: 2px solid transparent;
    transition: var(--transition);
}

.stat-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.stat-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--text-light);
    font-size: 1rem;
}

/* ========================================
   SKILLS SECTION
   ======================================== */
.skills-section {
    padding: 5rem 0;
    background: var(--bg-light);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 3rem;
    color: var(--text-dark);
}

.skills-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.skill-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.skill-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.skill-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.skill-name {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.skill-bar {
    width: 100%;
    height: 12px;
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.skill-progress {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 0.5rem;
    transition: width 1s ease;
    animation: progressAnimation 1.5s ease;
}

@keyframes progressAnimation {
    from {
        width: 0;
    }
}

.skill-percent {
    font-size: 0.75rem;
    color: white;
    font-weight: 700;
}

/* ========================================
   TIMELINE SECTION
   ======================================== */
.timeline-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 50px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 20px;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--primary-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    animation: fadeInUp 0.6s ease;
}

.timeline-marker {
    position: absolute;
    left: -38px;
    top: 0;
    width: 20px;
    height: 20px;
    background: var(--primary-color);
    border: 4px solid var(--bg-white);
    border-radius: 50%;
    box-shadow: 0 0 0 4px var(--border-color);
}

.timeline-content {
    background: var(--bg-light);
    padding: 2rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.timeline-date {
    display: inline-block;
    padding: 0.25rem 1rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.timeline-organization {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.timeline-description {
    color: var(--text-light);
    line-height: 1.6;
}

/* ========================================
   VALUES SECTION
   ======================================== */
.values-section {
    padding: 5rem 4rem;
    background: var(--white);
}


.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.value-card {
    background: var(--bg-light);
    padding: 2.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border-radius: 16px;
}



.value-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
    border-bottom: 3px solid var(--primary-color);

}

.value-icon {
    font-size: 4rem;
    background: var(--bg-light);
    border-radius: 10px;
    width: 6rem;
    height: 6rem;
    justify-content: center;
    margin: 1rem auto;
}

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

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

/* ========================================
   INTERESTS SECTION
   ======================================== */
.interests-section {
    padding: 5rem 0;
    background: var(--bg-white);
}

.interests-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    max-width: 800px;
    margin: 0 auto;
}

.interest-tag {
    background: var(--bg-light);
    padding: 1rem 2rem;
    border-radius: 50px;
    font-size: 1.1rem;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
    transition: var(--transition);
    cursor: default;
}

.interest-tag:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: scale(1.05);
}

/* ========================================
   CTA SECTION
   ======================================== */
.cta-section {
    padding: 5rem 0;
    background: var(--white);
    color: var(--text-dark);
    text-align: center;
}



.cta-content p {
    font-size: 1.5rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 1rem 2.5rem;
    border-radius: var(--border-radius);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.cta-buttons .btn-primary {
    background: rgb(0, 162, 255);
    color: white;
    text-decoration: none;
    border-radius: 8px;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid rgb(0, 162, 255);
    border-radius: 8px;
    text-decoration: none;
}

.cta-buttons .btn-secondary:hover {
    background: rgb(0, 162, 255);
    color: #ffffff;
}

/* ========================================
   VIEW ALL LINK
   ======================================== */
.view-all-link {
    text-align: center;
    margin-top: 2rem;
}

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-view-all:hover {
    transform: translateX(5px);
}



/* ========================================
   DARK MODE
   ======================================== */
body.dark-mode .biography-section,
body.dark-mode .timeline-section,
body.dark-mode .interests-section {
    background: var(--bg-light);
}

body.dark-mode .skills-section,
body.dark-mode .values-section {
    background: var(--bg-white);
}

body.dark-mode .stat-card,
body.dark-mode .skill-card,
body.dark-mode .value-card,
body.dark-mode .interest-tag {
    border-color: var(--border-color);
}

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 968px) {
    .about-hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-image {
        display: flex;
        justify-content: center;
    }
    
    .biography-content {
        grid-template-columns: 1fr;
    }
    
    .bio-stats {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    .about-title {
        font-size: 2.5rem;
    }
    
    .about-subtitle {
        font-size: 1.2rem;
    }

    .section{
        padding: 3rem 3rem;
    }
    
    .hero-image img {
        max-width: 300px;
        height: 300px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-content p {
        font-size: 1.2rem;
    }
    
    .timeline {
        padding-left: 40px;
    }
    
    .timeline-marker {
        left: -30px;
        width: 16px;
        height: 16px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-subtitle {
        font-size: 1rem;
    }
    
    .bio-stats {
        grid-template-columns: 1fr;
    }
    
    .skills-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .social-links {
        justify-content: center;
    }
}