@import url("style.css");
@import url("target-audiences.css");


.about-banner{
    position: relative;
    width: 100%;
    height: 75vh;
    background-image: url('../images/film-fan-img.png'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

p{
    max-width: 800px;
    margin: 0 auto;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    margin: 4rem 0;
}

.mission-section{
    display: flex;
    gap: 2rem;
    align-items: center;
    padding: 2rem 2rem 4rem 2rem;
    justify-content: center;
    background-image: url('../images/bg-img.jpg'); 
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    overflow: hidden;
    margin: 8rem 0 6rem 0;
}

.mission-section h2{
    text-align: right;
}

.mission-section p{
    margin: 0;
    font-size: 1.2rem;
}
.section-title {
    color: var(--primary-red);
    font-size: 1.5rem;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-red);
}

.marketing-video .video{
    box-shadow: 0 2px 20px var(--pyralume-red);
   

}



/* .video-container {
    width: 100%;
    aspect-ratio: 16/9;
    background: #222;
    margin: 2rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
} */

.team-grid {
    display: grid;
    gap: 2rem;
    margin: 2rem 0;
}

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

.team-member-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    background: #222;
    overflow: hidden;
}

.team-member h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.team-member p {
    color: var(--text-gray);
}

.cta-button {
    display: inline-block;
    padding: 0.75rem 1.5rem;
    background-color: var(--primary-red);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: opacity 0.2s;
    margin-top: 1rem;
}

.cta-button:hover {
    opacity: 0.9;
}


.join-team{
    margin-bottom: 3rem;
    text-align: center;
}

.join-team p{
margin-bottom: 2rem;
}

.join-team p:nth-child(2){
    text-transform: uppercase;
}

.vision-grid{
    display: flex;
    align-items: center;
    gap:2rem
}

.vision-grid p{
    max-width: 400px;
}

@media (min-width: 720px) {
    .banner h1 {
        font-size: 2rem;
    }

    .team-grid{
        grid-template-columns: repeat(4,1fr);
    }

    .container {
        padding: 1rem;
    }

    .vision-grid{
        display: flex;
        flex-direction: column;
    }
}
