/* ===== OUR STAFF PAGE STYLES ===== */

/* Hero Section - Hands/team image with SV overlay */
.staff-hero {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 400px;
    overflow: hidden;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding-top: 4rem;
}

.staff-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    /* filter: grayscale(100%) brightness(0.5); */
}



.staff-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.4) 100%);
}

.staff-hero-content {
    position: relative;
    z-index: 2;
}

.staff-hero-logo {
    font-size: 4rem;
    font-weight: 700;
    color: #fff;
    /* letter-spacing: 0.1em; */
}

/* Section utilities */
.staff-section.section-padding {
    padding: 5rem 4rem;
}

.staff-section .section-title {
    text-align: center;
    font-size: 1.75rem;
    font-weight: 600;
    /* letter-spacing: 0.2em; */
    color: #333;
    margin-bottom: 0.5rem;
}

.staff-section .section-subtitle {
    text-align: center;
    font-size: 0.85rem;
    /* letter-spacing: 0.15em; */
    color: #888;
    margin-bottom: 4rem;
}

/* Staff Card - alternating layout */
.staff-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: center;
    margin-bottom: 5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}

.staff-card:last-of-type {
    margin-bottom: 0;
}

.staff-card-reverse {
    grid-template-columns: 1.2fr 1fr;
}

.staff-card-reverse .staff-card-content {
    order: 1;
}

.staff-card-reverse .staff-card-image-wrap {
    order: 2;
}

.staff-card-image-wrap {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.staff-card-image {
    overflow: hidden;
}

.staff-card-image img {
    width: 100%;
    height: auto;
    display: block;
    /* filter: grayscale(100%); */
    transition: filter 0.3s;
}

/* .staff-card:hover .staff-card-image img { */
/* filter: grayscale(70%); */
/* } */

.staff-contact-profile {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    color: #333;
    text-decoration: none;
    text-transform: uppercase;
    background: #fff;
    transition: color 0.3s;
}

.staff-contact-profile:hover {
    color: #969696;
}

.staff-contact-profile span {
    font-size: 1rem;
}

.staff-card-content {
    padding: 0 1rem;
}

.staff-name {
    font-size: 2.2rem;
    font-weight: 800;
    /* letter-spacing: 0.05em; */
    color: #333;
    margin-bottom: 0;
}

.staff-role {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.staff-intro {
    font-size: 1rem;
    color: #555;
    line-height: 1.7;
    text-align: center;
    margin: 2rem 1rem;
}

.staff-detail {
    margin-bottom: 1.25rem;
}

.staff-detail h4 {
    font-size: 1rem;
    font-weight: 800;
    /* letter-spacing: 0.15em; */
    color: #333;
    margin-bottom: 0.35rem;
}

.staff-detail p {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
}

/* Group Photo */
.staff-group-photo {
    width: 100%;
    /* max-width: 1400px; */
    margin: 0 auto;
    overflow: hidden;
}

.staff-group-photo img {
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(100%);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .staff-section.section-padding {
        padding: 4rem 2rem;
    }

    .staff-card,
    .staff-card-reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    .staff-card-reverse .staff-card-content,
    .staff-card-reverse .staff-card-image-wrap {
        order: unset;
    }

    .staff-card-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .staff-hero {
        height: 45vh;
        min-height: 300px;
    }

    .staff-hero-logo {
        font-size: 2.5rem;
    }

    .staff-section.section-padding {
        padding: 3rem 1.5rem;
    }

    .staff-section .section-title {
        font-size: 1.2rem;
    }

    .staff-name {
        font-size: 1rem;
    }

    .staff-role {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .staff-card-content {
        padding: 0;
    }
}