/* ========================================
   ABOUT PAGE STYLES - Agency-Style Layout
   Mitchell Fildes Portfolio
   ======================================== */

/* ========================================
   1. ABOUT HERO
   Two-column layout: text left, photo right
   ======================================== */
.about-page {
    padding-top: 104px;
}

.about-hero {
    padding: 80px 0 60px;
    background: #ffffff;
}

.about-hero-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.about-hero-text {
    max-width: 640px;
    margin: 0 auto;
}

.about-label {
    display: inline-block;
    font-family: "Barlow", sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #FF4D00;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.about-hero-title {
    font-family: "Sora", sans-serif;
    font-size: 4rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.about-hero-role {
    font-family: "Sora", sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    color: #FF4D00;
    margin-bottom: 16px;
}

.about-hero-location {
    font-family: "Barlow", sans-serif;
    font-size: 1rem;
    color: #888888;
    margin-bottom: 36px;
    line-height: 1.6;
}

.about-download {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    border: 2px solid #FF4D00;
    border-radius: 50px;
    color: #FF4D00;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.about-download::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #FF4D00, #ff6b33);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: -1;
}

.about-download:hover::before {
    left: 0;
}

.about-download:hover {
    color: #ffffff;
    border-color: #FF4D00;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 77, 0, 0.3);
}


/* ========================================
   2. STATS STRIP
   Horizontal bar with key numbers
   ======================================== */
.about-stats-strip {
    background: #FF4D00;
    padding: 48px 0;
}

.about-stats-inner {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
}

.about-stat {
    text-align: center;
    flex: 1;
}

.about-stat-number {
    display: block;
    font-family: "Sora", sans-serif;
    font-size: 3rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
    margin-bottom: 8px;
}

.about-stat-label {
    font-family: "Barlow", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.about-stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}

/* ========================================
   3. SECTION BLOCKS
   Reusable section pattern for content areas
   ======================================== */
.about-section-block {
    padding: 80px 0;
    background: #ffffff;
}

.about-section-block.about-section-alt {
    background: #f8f9fa;
}

.about-section-inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-section-header {
    margin-bottom: 48px;
}

.about-section-title {
    font-family: "Sora", sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    color: #333333;
    line-height: 1.2;
    letter-spacing: -0.5px;
}

/* ========================================
   4. EXPERIENCE GRID
   Modern card-style experience items
   ======================================== */
.about-experience-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.about-exp-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid #eee;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-exp-item:hover {
    background: #ffffff;
    border-color: rgba(255, 77, 0, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-exp-dot {
    width: 8px;
    height: 8px;
    background: #FF4D00;
    border-radius: 50%;
    flex-shrink: 0;
}

.about-exp-name {
    font-family: "Barlow", sans-serif;
    font-size: 1.05rem;
    font-weight: 500;
    color: #333333;
    flex: 1;
}

.about-exp-type {
    font-family: "Barlow", sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    color: #999999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.about-exp-current {
    background: linear-gradient(135deg, #FF4D00, #ff6b33);
    border-color: #FF4D00;
}

.about-exp-current .about-exp-dot {
    background: #ffffff;
}

.about-exp-current .about-exp-name {
    color: #ffffff;
    font-weight: 600;
}

.about-exp-current:hover {
    background: linear-gradient(135deg, #ff6b33, #FF4D00);
    border-color: #FF4D00;
    box-shadow: 0 8px 24px rgba(255, 77, 0, 0.3);
}

.about-exp-badge {
    font-family: "Barlow", sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    white-space: nowrap;
}

/* ========================================
   5. SKILL PILLS
   Flowing tag/pill layout for skills
   ======================================== */
.about-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.about-pill {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    font-family: "Barlow", sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #333333;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
}

.about-pill:hover {
    background: #FF4D00;
    color: #ffffff;
    border-color: #FF4D00;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 77, 0, 0.25);
}

/* Software pills match key skills styling */

/* ========================================
   6. CTA SECTION
   ======================================== */
.about-cta {
    background: #FF4D00;
    padding: 80px 0;
    text-align: center;
}

.about-cta-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-cta-title {
    font-family: "Sora", sans-serif;
    font-size: 3rem;
    font-weight: 400;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.about-cta-text {
    font-family: "Barlow", sans-serif;
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.6;
}

.about-cta-btn {
    display: inline-flex;
    align-items: center;
    padding: 18px 44px;
    border-radius: 50px;
    background: #ffffff;
    color: #FF4D00;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.about-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.25);
    background: #f8f9fa;
}

/* ========================================
   7. RESPONSIVE DESIGN
   ======================================== */

/* TABLET (1024px and below) */
@media (max-width: 1024px) {
    .about-hero-inner {
        padding: 0 30px;
    }

    .about-hero-title {
        font-size: 3rem;
    }

    .about-hero-role {
        font-size: 1.3rem;
    }

    .about-stats-inner {
        gap: 40px;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    .about-section-title {
        font-size: 2rem;
    }

    .about-experience-grid {
        gap: 12px;
    }
}

/* MOBILE (768px and below) */
@media (max-width: 768px) {
    .about-page {
        padding-top: 80px;
    }

    .about-hero {
        padding: 50px 0 40px;
    }

    .about-hero-inner {
        padding: 0 20px;
    }

    .about-hero-text {
        max-width: 100%;
    }

    .about-hero-title {
        font-size: 2.5rem;
    }

    .about-hero-role {
        font-size: 1.2rem;
    }

    .about-hero-location {
        margin-bottom: 28px;
    }

    .about-stats-strip {
        padding: 36px 0;
    }

    .about-stats-inner {
        flex-direction: column;
        gap: 28px;
        padding: 0 20px;
    }

    .about-stat-divider {
        width: 60px;
        height: 1px;
    }

    .about-stat-number {
        font-size: 2.5rem;
    }

    .about-section-block {
        padding: 60px 0;
    }

    .about-section-inner {
        padding: 0 20px;
    }

    .about-section-header {
        margin-bottom: 32px;
    }

    .about-section-title {
        font-size: 1.8rem;
    }

    .about-experience-grid {
        grid-template-columns: 1fr;
    }

    .about-pills {
        gap: 10px;
    }

    .about-pill {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-cta {
        padding: 60px 0;
    }

    .about-cta-inner {
        padding: 0 20px;
    }

    .about-cta-title {
        font-size: 2rem;
    }

    .about-cta-text {
        font-size: 1rem;
    }
}

/* SMALL MOBILE (480px and below) */
@media (max-width: 480px) {
    .about-hero-title {
        font-size: 2rem;
    }

    .about-hero-role {
        font-size: 1.1rem;
    }

    .about-stat-number {
        font-size: 2rem;
    }

    .about-stat-label {
        font-size: 0.85rem;
    }

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

    .about-exp-item {
        padding: 16px 18px;
    }

    .about-exp-name {
        font-size: 0.95rem;
    }

    .about-pill {
        padding: 8px 16px;
        font-size: 0.85rem;
    }

    .about-cta-title {
        font-size: 1.75rem;
    }

    .about-cta-btn {
        padding: 16px 36px;
        font-size: 1rem;
    }
}

/* ========================================
   8. REDUCED MOTION SUPPORT
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    .about-exp-item,
    .about-pill,
    .about-download,
    .about-cta-btn {
        transition: none;
    }
}
