/* Import base styles from global.css */
@import url('global.css');

/* ========================================
   ABOUT PAGE SPECIFIC STYLES
   ======================================== */

/* Header Section */
.about-header {
    padding: 4rem 1.5rem 2rem;
    background: linear-gradient(to bottom right, var(--blue-50), white, var(--blue-100));
    text-align: center;
}

.header-content {
    max-width: 4xl;
    margin: 0 auto;
}

.header-title {
    font-family: var(--font-inter);
    font-weight: 800;
    font-size: 3rem;
    color: var(--slate-800);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

@media (min-width: 1024px) {
    .header-title {
        font-size: 3.75rem;
    }
}

.mission-statement {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1.5rem;
    color: var(--blue-600);
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

@media (min-width: 1024px) {
    .mission-statement {
        font-size: 1.75rem;
    }
}

.header-description {
    font-family: var(--font-inter);
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .header-description {
        font-size: 1.25rem;
    }
}

/* Mission Section */
.mission-section {
    padding: 5rem 1.5rem 0 1.5rem;
    background-color: white;
}

.mission-content {
    max-width: 4xl;
    margin: 0 auto;
    text-align: center;
}

.mission-text {
    font-family: var(--font-inter);
    font-size: 1.125rem;
    color: var(--slate-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    text-align: center;
}

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

@media (min-width: 1024px) {
    .mission-text {
        font-size: 1.25rem;
    }
}

/* Team Section */
.team-section {
    padding: 0 1.5rem 5rem 1.5rem;
    background-color: white;
}

.section-subtitle {
    font-family: var(--font-inter);
    font-size: 1.125rem;
    color: var(--slate-600);
    margin-bottom: 0;
    line-height: 1.5;
    font-weight: 400;
}

@media (min-width: 1024px) {
    .section-subtitle {
        font-size: 1.25rem;
    }
}

.team-container {
    display: flex;
    justify-content: center;
    margin-top: 4rem;
}

.team-member {
    display: flex;
    width: 350px;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--blue-200);
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.team-member:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.member-image {
    margin-bottom: 1.5rem;
}

.member-photo {
    width: 8rem;
    height: 8rem;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--blue-200);
    transition: transform 0.3s ease;
}

.team-member:hover .member-photo {
    transform: scale(1.05);
}

.member-info {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.member-name {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--slate-800);
    margin-bottom: 0.5rem;
}

.member-role {
    font-family: var(--font-inter);
    font-weight: 600;
    font-size: 1rem;
    color: var(--blue-600);
    margin-bottom: 1rem;
}

.member-description {
    font-family: var(--font-inter);
    font-size: 0.875rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.member-links {
    margin-top: auto;
}

.linkedin-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background-color: transparent;
    border: 2px solid #0A66C2;
    border-radius: 50%;
    transition: transform 0.3s ease;
    color: #0A66C2;
}

.linkedin-link:hover {
    transform: scale(1.1);
}

.linkedin-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Values Section */
.values-section {
    padding: 5rem 1.5rem;
    background-color: white;
}

.values-grid {
    display: grid;
    gap: 2rem;
    margin-top: 4rem;
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2.5rem;
    }
}

.value-card {
    text-align: center;
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(4px);
    border: 1px solid var(--blue-200);
    border-radius: 1rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.value-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    transform: translateY(-4px);
}

.value-icon {
    width: 3rem;
    height: 3rem;
    color: var(--blue-600);
    margin: 0 auto 1.5rem;
}

.value-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--slate-800);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.value-description {
    font-family: var(--font-inter);
    font-size: 1rem;
    color: var(--slate-600);
    line-height: 1.6;
    margin: 0;
}

/* CTA Section */
.about-cta {
    padding: 5rem 1.5rem;
    background: linear-gradient(to bottom right, rgba(239, 246, 255, 0.5), white, var(--blue-100));
}

.cta-title {
    font-family: var(--font-inter);
    font-weight: 700;
    font-size: 2.25rem;
    color: var(--slate-800);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
}

.cta-description {
    font-family: var(--font-inter);
    font-size: 1.25rem;
    color: var(--slate-600);
    margin-bottom: 2rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

@media (min-width: 640px) {
    .cta-buttons {
        flex-direction: row;
    }
}

/* Animation Styles */
.team-member {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.team-member.animate {
    opacity: 1;
    transform: translateY(0);
}

.value-card {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out, box-shadow 0.3s ease, border-color 0.3s ease;
}

.value-card.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 640px) {
    .about-header {
        padding: 3rem 1rem 1.5rem;
    }
    
    .header-title {
        font-size: 2.5rem;
    }
    
    .mission-statement {
        font-size: 1.25rem;
    }
    
    .header-description {
        font-size: 1rem;
    }
    
    .mission-section {
        padding: 3rem 1rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .team-section {
        padding: 3rem 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .team-member {
        padding: 1.5rem;
    }
    
    .member-photo {
        width: 6rem;
        height: 6rem;
    }
    
    .values-section {
        padding: 3rem 1rem;
    }
    
    .value-card {
        padding: 1.5rem;
    }
    
    .value-title {
        font-size: 1.25rem;
    }
    
    .about-cta {
        padding: 3rem 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-description {
        font-size: 1.125rem;
    }
}

/* Focus states for accessibility */
.team-member:focus-within {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
}

.value-card:focus-within {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
}

.linkedin-link:focus {
    outline: 2px solid var(--blue-600);
    outline-offset: 2px;
}

/* Print styles */
@media print {
    .about-header,
    .mission-section,
    .team-section,
    .values-section,
    .about-cta {
        padding: 1rem 0;
    }
    
    .team-member,
    .value-card {
        border: 1px solid #000;
        box-shadow: none;
        background: white !important;
    }
    
    .member-photo {
        border: 1px solid #000;
    }
    
    .linkedin-link {
        border-color: #000 !important;
        color: #000 !important;
    }
}
