/* about.html — page-specific styles */

/* Hero Banner (image, not video) */
.hero-banner {
    width: 100%;
    aspect-ratio: 20 / 9;
    position: relative;
    overflow: hidden;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 60px;
}

.hero-banner img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.55;
}

.hero-overlay {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
}

.hero-overlay h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    margin: 0;
    letter-spacing: -1px;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.4);
}

@media (max-width: 768px) {
    .hero-banner {
        aspect-ratio: 16 / 9;
        margin-top: 50px;
    }
    .hero-overlay h1 {
        font-size: 2rem;
    }
}

/* Split Section */
.split-section {
    display: flex;
    gap: 4rem;
    align-items: flex-start;
    margin-top: 2rem;
}

.split-section .content { flex: 1.5; }
.split-section .image-column { flex: 1; }

.split-section img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
}

@media (max-width: 992px) {
    .split-section {
        flex-direction: column;
        gap: 2rem;
    }
    .split-section .image-column {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

/* Team Member */
.team-member-large {
    display: flex;
    gap: 3rem;
    align-items: center;
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    margin-bottom: 3rem;
}

.team-member-large img {
    width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
}

.team-info h3 {
    font-size: 1.75rem;
    color: var(--text-color);
    margin-bottom: 0.4rem;
    font-weight: 700;
}

.team-info .role {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: block;
    font-weight: 500;
}

@media (max-width: 768px) {
    .team-member-large {
        flex-direction: column;
        padding: 2rem;
        text-align: center;
        gap: 1.5rem;
    }
    .team-member-large img {
        width: 180px;
        height: 180px;
    }
}

/* Org Features */
.org-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06), 0 1px 4px rgba(0, 0, 0, 0.04);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
}

.feature-icon {
    font-size: 2.5rem;
    margin-bottom: 0.75rem;
    display: block;
}

@media (max-width: 768px) {
    .org-features {
        grid-template-columns: 1fr;
    }
}

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    border-radius: 8px;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 30px;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}
