/**
 * About Page Styles
 * Will and Estate Lawyers Australia
 * 
 * File: /assets/css/about.css
 * Used on: About Us page
 */

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

.about-hero {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    color: var(--white);
    padding: 4rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.about-hero-container {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

.about-badge {
    display: inline-block;
    background-color: rgba(244, 165, 185, 0.2);
    color: var(--pink-light);
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.2;
    font-weight: 700;
    color: var(--white);
}

.about-hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: var(--pink-light);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* ============================================
   MISSION SECTION
   ============================================ */

.mission-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.mission-container {
    max-width: 1000px;
    margin: 0 auto;
}

.mission-content {
    background-color: var(--pink-light);
    border-left: 4px solid var(--pink);
    padding: 2.5rem;
    border-radius: 1rem;
    margin-bottom: 3rem;
}

.mission-content h2 {
    color: var(--navy);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.mission-content p {
    color: var(--text-dark);
    font-size: 1.125rem;
    line-height: 1.8;
    margin-bottom: 1rem;
}

.mission-content p:last-child {
    margin-bottom: 0;
}

/* ============================================
   STATS SECTION
   ============================================ */

.stats-section {
    padding: 4rem 1.5rem;
    background-color: var(--gray);
}

.stats-container {
    max-width: 1280px;
    margin: 0 auto;
}

.stats-header {
    text-align: center;
    margin-bottom: 3rem;
}

.stats-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.stat-card {
    background-color: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--gray-light);
    transition: all 0.3s;
}

.stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--pink);
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--pink);
    margin-bottom: 0.5rem;
    line-height: 1;
}

.stat-label {
    font-size: 1.125rem;
    color: var(--navy);
    font-weight: 600;
}

.stat-description {
    font-size: 0.875rem;
    color: var(--gray-dark);
    margin-top: 0.5rem;
}

/* ============================================
   VALUES SECTION
   ============================================ */

.values-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.values-container {
    max-width: 1280px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 3rem;
}

.values-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

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

.value-card {
    background-color: var(--gray);
    padding: 2rem;
    border-radius: 1rem;
    border-left: 4px solid var(--pink);
}

.value-icon {
    width: 64px;
    height: 64px;
    background-color: var(--pink-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.value-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--navy);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-card p {
    color: var(--gray-dark);
    line-height: 1.7;
}

/* ============================================
   TEAM SECTION
   ============================================ */

.team-section {
    padding: 4rem 1.5rem;
    background-color: var(--gray);
}

.team-container {
    max-width: 1280px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-header h2 {
    font-size: 2.5rem;
    color: var(--navy);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.team-header p {
    font-size: 1.125rem;
    color: var(--gray-dark);
}

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

.team-member {
    background-color: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--gray-light);
    transition: all 0.3s;
}

.team-member:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--pink);
}

.team-member-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 4rem;
    font-weight: 700;
}

.team-member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member-content {
    padding: 2rem;
}

.team-member-name {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 0.25rem;
    font-weight: 700;
}

.team-member-role {
    color: var(--pink);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
}

.team-member-credentials {
    color: var(--gray-dark);
    font-size: 0.875rem;
    margin-bottom: 1rem;
    font-style: italic;
}

.team-member-bio {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.team-member-testimonial {
    background-color: var(--pink-light);
    padding: 1.5rem;
    border-left: 3px solid var(--pink);
    border-radius: 0.5rem;
    font-style: italic;
    color: var(--gray-dark);
    line-height: 1.7;
    position: relative;
}

.team-member-testimonial::before {
    content: '"';
    font-size: 3rem;
    color: var(--pink);
    position: absolute;
    top: -0.5rem;
    left: 0.5rem;
    line-height: 1;
}

.testimonial-attribution {
    margin-top: 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy);
    font-style: normal;
}

/* ============================================
   TIMELINE / HISTORY
   ============================================ */

.history-section {
    padding: 4rem 1.5rem;
    background-color: var(--white);
}

.history-container {
    max-width: 800px;
    margin: 0 auto;
}

.timeline {
    position: relative;
    padding-left: 2rem;
}

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

.timeline-item {
    position: relative;
    padding-bottom: 2rem;
    padding-left: 2rem;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -2rem;
    top: 0.5rem;
    width: 14px;
    height: 14px;
    background-color: var(--pink);
    border-radius: 50%;
    transform: translateX(-6px);
}

.timeline-year {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--pink);
    margin-bottom: 0.25rem;
}

.timeline-item h3 {
    color: var(--navy);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-item p {
    color: var(--gray-dark);
    line-height: 1.6;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 767px) {
    .about-hero {
        padding: 2.5rem 1.5rem;
    }

    .about-hero h1 {
        font-size: 2rem;
    }

    .stats-header h2,
    .values-header h2,
    .team-header h2 {
        font-size: 2rem;
    }

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

    .mission-content {
        padding: 1.5rem;
    }

    .team-member-image {
        height: 200px;
    }
}
