/* =========================================================
   CREW PAGE
   assets/css/pages/crew.css
   ========================================================= */

.crew-banner {
    min-height: 340px;
    display: flex;
    align-items: center;
    background:
        linear-gradient(rgba(0, 20, 45, 0.72), rgba(0, 20, 45, 0.72)),
        url('../../img/bgp.png') no-repeat center center;
    background-size: cover;
    padding: 80px 0;
}

.crew-banner h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.crew-banner p {
    color: rgba(255, 255, 255, 0.88);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 0;
}

.crew-banner .text-warning {
    color: #f3c623 !important;
}

.team-section {
    background: #07182d;
}

.person-div {
    background: #0c2746;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 18px;
    height: 100%;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.14);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.person-div:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 36px rgba(0, 0, 0, 0.18);
}

.fit-img,
.team-photo {
    width: 100%;
    height: 320px;
    object-fit: cover;
    object-position: center;
    border-radius: 12px;
    display: block;
}

.person-div h5 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.4;
    margin-bottom: 0.5rem;
}

.team-role,
.person-div p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 0.95rem;
    line-height: 1.65;
    margin-bottom: 0;
}

.cta-section {
    background:
        linear-gradient(rgba(0, 20, 45, 0.78), rgba(0, 20, 45, 0.78)),
        url('../../img/containerbg.png') no-repeat center center;
    background-size: cover;
}

.cta-section h2 {
    color: #fff;
    font-weight: 800;
}

.cta-section .cta-text {
    color: rgba(255, 255, 255, 0.88);
    max-width: 700px;
    margin: 0 auto 1.5rem;
    line-height: 1.8;
}

/* Responsive */
@media (max-width: 991.98px) {
    .crew-banner {
        min-height: 280px;
        padding: 60px 0;
    }

    .crew-banner h1 {
        font-size: 2.3rem;
    }

    .fit-img,
    .team-photo {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .crew-banner h1 {
        font-size: 1.9rem;
    }

    .crew-banner p {
        font-size: 0.95rem;
    }

    .person-div {
        padding: 14px;
    }

    .fit-img,
    .team-photo {
        height: 250px;
    }

    .person-div h5 {
        font-size: 1rem;
    }

    .team-role,
    .person-div p {
        font-size: 0.9rem;
    }
}