/* About Page Styles */

/* Hero Section */
.about-hero-section {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('../../assets/images/about/hero.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(255, 255, 255, 0.5);
    z-index: 1;
}

.about-hero-content {
    text-align: center;
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.about-hero-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #1a1a2e;
}

@media (max-width: 768px) {
    .about-hero-section {
        min-height: 400px;
    }
    
    .about-hero-title {
        font-size: 2rem;
    }
}

/* Who We Are Section */
.who-we-are-section {
    background-color: #ffffff;
    padding: 5rem 2rem;
}

.who-we-are-container {
    max-width: 1200px;
    margin: 0 auto;
}

.who-we-are-title {
    font-size: 3rem;
    font-weight: 700;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 0.75rem;
}

.who-we-are-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    color: #1a1a2e;
    text-align: center;
    margin-bottom: 4rem;
}

.who-we-are-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 3rem;
}

.who-we-are-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.who-image {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

.who-we-are-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.who-paragraph {
    font-size: 1.125rem;
    color: #1a1a2e;
    line-height: 1.7;
    text-align: left;
}

.who-paragraph strong {
    font-weight: 700;
}

.who-we-are-cta {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 3rem;
}

@media (max-width: 768px) {
    .who-we-are-section {
        padding: 3rem 1.5rem;
    }
    
    .who-we-are-title {
        font-size: 2rem;
    }
    
    .who-we-are-subtitle {
        font-size: 1.25rem;
        margin-bottom: 3rem;
    }
    
    .who-we-are-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }
    
    .who-paragraph {
        font-size: 1rem;
    }
    
    .who-we-are-cta {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .who-we-are-cta .cta-button {
        width: 100%;
        max-width: 300px;
    }
}

/* Team Section */
.team-section {
    padding-top: 3rem;
    padding-bottom: 4rem;
}

.team-section-title {
    font-family: var(--font-main), sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 2rem;
    text-align: center;
}

.team-section-title-advisory {
    margin-top: 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

@media (min-width: 581px) {
    .team-grid.team-grid-management {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        grid-template-columns: unset;
    }

    .team-grid-management .team-card {
        flex: 0 0 calc((100% - 2.5rem) / 2);
        max-width: 380px;
    }

    .team-grid-advisory {
        grid-template-columns: 1fr;
    }
}

@media (min-width: 900px) {
    .team-grid.team-grid-management .team-card {
        flex: 0 0 calc((100% - 5rem) / 3);
        max-width: 380px;
    }
}

.team-grid-advisory {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.team-card {
    text-align: center;
}

.team-card-image-wrap {
    width: 160px;
    height: 160px;
    margin: 0 auto 1.25rem;
    border-radius: 50%;
    overflow: hidden;
    background: #1f2937;
}

[data-theme="light"] .team-card-image-wrap {
    background: #ffffff;
}

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

.team-card-name {
    font-family: var(--font-main), sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-main);
    margin-bottom: 0.25rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    flex-wrap: wrap;
}

.team-card-linkedin {
    display: inline-flex;
    align-items: center;
    color: var(--text-muted);
    transition: color 0.2s ease;
}

.team-card-linkedin svg {
    display: block;
    vertical-align: middle;
}

.team-card-linkedin:hover {
    color: var(--accent);
}

.team-card-role {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--accent, #6366f1);
    margin-bottom: 0.75rem;
}

.team-card-bio {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .team-section-title-advisory {
        margin-top: 3rem;
    }

    .team-grid {
        gap: 2rem;
    }
}

