/* About Page - Consistent with Home & Funds */

/* Hero Section */
.about-hero {
    position: relative;
    height: 60vh;
    min-height: 450px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), 
                url('../images/hero-ocean-shore.jpg') center center/cover;
    overflow: hidden;
    filter: contrast(1.15) brightness(1.1);
}

.about-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.05) 0%, 
        transparent 50%, 
        rgba(0,0,0,0.15) 100%);
    z-index: 1;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.about-hero-content-inner {
    display: flex;
    justify-content: center;
    padding: 0 80px;
}

.about-hero-text {
    width: 100%;
    max-width: calc(300px + 60px + 750px);
    text-align: left;
}

.about-hero-heading {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 48px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 20px 0;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.about-hero-subheading {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255,255,255,0.9);
    margin: 0;
    line-height: 1.6;
}

/* Minimal Sections */
.minimal-section {
    padding: 80px 80px;
    background: #ffffff;
    position: relative;
}

.minimal-section:first-of-type {
    background: #ffffff;
}

.minimal-section:first-of-type::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('../images/mountain-grayscale.jpg') center center/cover no-repeat fixed;
    filter: grayscale(100%);
    opacity: 0.35;
    z-index: 0;
    pointer-events: none;
}

.minimal-section:first-of-type .minimal-container {
    position: relative;
    z-index: 1;
}

.minimal-section.minimal-alt {
    background: #fafbfc;
}

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

.minimal-heading {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 28px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 40px 0;
    letter-spacing: -0.5px;
}

.minimal-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.minimal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #4a4a4a;
    margin: 0;
}

.minimal-content p:first-child {
    font-size: 18px;
    color: #1a1a1a;
}

/* Founder Message */
.founder-message {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 60px;
    align-items: start;
}

.founder-photo {
    position: sticky;
    top: 120px;
}

.founder-photo img {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    filter: grayscale(100%);
}

.founder-text {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.founder-text p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #1a1a1a;
    margin: 0;
    font-style: italic;
}

.founder-text p:first-child {
    font-size: 20px;
    font-weight: 500;
    font-style: normal;
    color: #1a1a1a;
}

.founder-signature {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e1e4e8;
}

.founder-name {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: #1a1a1a;
    margin-bottom: 4px;
}

.founder-title {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #6a737d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Who We Are Section - Matches Funds Management Layout */
.who-we-are-section {
    position: relative;
    background: linear-gradient(135deg, #0a2d2d 0%, #08252d 50%, #061e23 100%);
    background-size: cover;
    background-position: center;
    padding: 120px 80px 80px 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.who-we-are-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 !important;
    display: flex;
    flex-direction: column;
    align-items: stretch;
}

/* Breadcrumb */
.who-we-are-section .hero-breadcrumb {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 32px;
}

.who-we-are-section .breadcrumb-inner {
    width: 100%;
    max-width: calc(300px + 60px + 750px);
    text-align: left;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    font-family: 'Inter', sans-serif;
}

.who-we-are-section .breadcrumb-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.who-we-are-section .breadcrumb-link:hover {
    color: #ffffff;
}

.who-we-are-section .breadcrumb-separator {
    margin: 0 8px;
    color: rgba(255, 255, 255, 0.5);
}

.who-we-are-section .breadcrumb-current {
    color: #ffffff;
    font-weight: 500;
}

/* Content Wrapper */
.who-we-are-content-wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
}

/* Card */
.who-we-are-card {
    flex: 0 0 300px;
    min-width: 300px;
    max-width: 300px;
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.who-we-are-card-image {
    position: relative;
    width: 100%;
    height: 180px;
}

.who-we-are-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.who-we-are-badge {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: #ffffff;
    color: #3a9999;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
}

.who-we-are-card-content {
    padding: 20px 20px 24px 20px;
    color: #ffffff;
}

.who-we-are-card-title {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 12px 0;
    color: #ffffff;
}

.title-accent {
    width: 35px;
    height: 3px;
    background: #3a9999;
    margin-bottom: 12px;
}

.who-we-are-card-text {
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
}

/* Content */
.who-we-are-content {
    flex: 1;
    max-width: 750px;
}

.section-eyebrow {
    display: inline-block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: #3a9999;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.who-we-are-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 32px;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.4;
    margin: 0 0 24px 0;
    letter-spacing: -0.5px;
}

.who-we-are-description {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.who-we-are-description p {
    font-family: 'Inter', sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
}

/* Leadership Section - Refined Brenton Branding */
.leadership-section {
    padding: 100px 80px;
    background: #fafbfc;
    border-top: 1px solid #e1e4e8;
}

.leadership-container {
    max-width: 1400px;
    margin: 0 auto;
}

.leadership-header {
    margin-bottom: 60px;
    text-align: center;
}

.leadership-section .section-eyebrow {
    color: #3a9999;
    display: inline-block;
    margin-bottom: 16px;
}

.leadership-section .eyebrow-line {
    display: inline-block;
    width: 40px;
    height: 2px;
    background: #3a9999;
    margin-right: 12px;
    vertical-align: middle;
}

.leadership-section .eyebrow-text {
    vertical-align: middle;
}

.leadership-title {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 42px;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0 0 16px 0;
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.leadership-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    color: #586069;
    line-height: 1.6;
    margin: 0;
    max-width: 600px;
    margin: 0 auto;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
}

/* Leader Card - Simplified Design Without Images */
.leader-card {
    background: #ffffff;
    border: 1px solid #e1e4e8;
    border-radius: 0;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    padding: 32px 24px;
}

.leader-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(58, 153, 153, 0.12);
    border-color: #3a9999;
}

/* Content Area */
.leader-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.leader-name {
    font-family: 'Circular', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #1a1a1a;
    margin: 0 0 8px 0;
    letter-spacing: -0.3px;
    line-height: 1.3;
}

.leader-position {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 400;
    color: #586069;
    line-height: 1.5;
    margin: 0 0 24px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid #e1e4e8;
}

/* Actions Container */
.leader-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: auto;
}

/* View Profile Link */
.leader-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: #3a9999;
    text-decoration: none;
    transition: all 0.3s ease;
    flex: 1;
}

.leader-link svg {
    transition: transform 0.3s ease;
    width: 16px;
    height: 16px;
}

.leader-link:hover {
    color: #2d7a7a;
    gap: 12px;
}

.leader-link:hover svg {
    transform: translateX(4px);
}

/* LinkedIn Link */
.leader-linkedin {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: #f6f8fa;
    border: 1px solid #e1e4e8;
    border-radius: 4px;
    color: #0077b5;
    text-decoration: none;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.leader-linkedin svg {
    width: 20px;
    height: 20px;
}

.leader-linkedin:hover {
    background: #0077b5;
    border-color: #0077b5;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Carousel for Mobile/Tablet */
.leadership-carousel {
    display: none;
    position: relative;
    overflow: hidden;
    padding: 0 50px;
}

.carousel-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s ease;
}

.carousel-track .leader-card {
    min-width: 320px;
    max-width: 320px;
    flex-shrink: 0;
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #ffffff;
    border: 1px solid #e1e4e8;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.carousel-btn:hover {
    background: #3a9999;
    border-color: #3a9999;
    color: #ffffff;
}

.carousel-btn-prev {
    left: 0;
}

.carousel-btn-next {
    right: 0;
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.carousel-indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #e1e4e8;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-indicator.active {
    background: #3a9999;
    width: 24px;
    border-radius: 4px;
}

/* Featured Report Section - Using styles from style.css */

/* Responsive Design */

/* Large Desktop */
@media (max-width: 1200px) {
    .who-we-are-content-wrapper {
        gap: 50px;
    }
}

/* Tablet */
@media (max-width: 1024px) {
    .about-hero {
        height: 60vh;
        min-height: 500px;
    }

    .about-hero-heading {
        font-size: 38px;
    }

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

    .minimal-section {
        padding: 80px 30px;
    }

    .founder-message {
        grid-template-columns: 180px 1fr;
        gap: 40px;
    }

    .founder-photo img {
        width: 180px;
        height: 180px;
    }

    .who-we-are-section {
        padding: 100px 40px 60px 40px;
    }

    .who-we-are-content-wrapper {
        gap: 40px;
    }

    .leadership-section {
        padding: 80px 40px;
    }

    .leadership-title {
        font-size: 36px;
    }

    /* Switch to carousel on tablet */
    .leadership-grid {
        display: none;
    }

    .leadership-carousel {
        display: block;
    }
}

@media (max-width: 900px) {
    .who-we-are-content-wrapper {
        gap: 32px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .about-hero {
        height: 50vh;
        min-height: 400px;
    }

    .about-hero-heading {
        font-size: 32px;
    }

    .about-hero-subheading {
        font-size: 16px;
    }

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

    .minimal-section {
        padding: 60px 20px;
    }

    .minimal-heading {
        font-size: 24px;
        margin-bottom: 28px;
    }

    .minimal-content p {
        font-size: 15px;
    }

    .minimal-content p:first-child {
        font-size: 17px;
    }

    .founder-message {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .founder-photo {
        position: static;
        text-align: center;
    }

    .founder-photo img {
        width: 160px;
        height: 160px;
    }

    .founder-text p {
        font-size: 15px;
    }

    .founder-text p:first-child {
        font-size: 18px;
    }

    .who-we-are-section {
        padding: 80px 20px 50px 20px;
    }

    .who-we-are-section .hero-breadcrumb {
        text-align: left;
        margin-bottom: 24px;
    }

    .who-we-are-content-wrapper {
        flex-direction: column;
        gap: 40px;
    }

    .who-we-are-card {
        width: 100%;
        max-width: 500px;
        margin: 0 auto;
    }

    .who-we-are-card-image {
        height: 220px;
    }

    .who-we-are-card-content {
        padding: 28px 25px 35px;
    }

    .who-we-are-card-title {
        font-size: 19px;
    }

    .who-we-are-card-text {
        font-size: 14px;
    }

    .who-we-are-title {
        font-size: 26px;
        margin-bottom: 24px;
    }

    .who-we-are-description p {
        font-size: 15px;
    }

    .leadership-section {
        padding: 60px 20px;
    }

    .leadership-header {
        margin-bottom: 40px;
    }

    .leadership-title {
        font-size: 32px;
    }

    .leadership-subtitle {
        font-size: 16px;
    }

    /* Carousel on mobile */
    .leadership-grid {
        display: none;
    }

    .leadership-carousel {
        display: block;
        padding: 0 40px;
    }

    .carousel-track .leader-card {
        min-width: 280px;
        max-width: 280px;
    }

    .leader-name {
        font-size: 20px;
    }

    .leader-position {
        font-size: 13px;
    }

    .leader-content {
        padding: 20px 18px 18px 18px;
    }
}
