@import url('https://fonts.googleapis.com/css2?family=Kdam+Thmor+Pro&display=swap');

* {
    margin: 0;
    padding: 0;
    background-color: black;
    list-style: none;
    text-decoration: none;
}

header {
    height: 90px;
    display: flex;
    justify-content: space-around;
    align-items: center;
}

nav {
    width: 60%;
}

ul {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

li {
    list-style: none;
    color: aliceblue;
    cursor: pointer;
    font-size: 19px;
    transition: 0.5s;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

li:hover {
    color: #e07414;
}

#logo {
    width: 150px;
    height: auto;
}

#banner {
    background-image: url(../src/images/banner0.png);
    background-position: 50% 50%;
    background-size: cover;
    width: 100%;
    height: 600px;

}

#trailer-container {
    width: 100%;
    height: 400px;
    display: flex;
    justify-content: center;
}

.content {
    width: 60%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.trailer {
    width: 50%;
}

#sinopse {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 30px;
    margin-top: auto;
}

.description {
    color: #fff;
    font-size: 19px;
    font-family: 'Kdam Thmor Pro', sans-serif;
    width: 70%;
}

.button {
    width: 200px;
    height: 60px;
    background-color: #e07414;
    color: #fff;
    padding: 8px 10px;
    border-radius: 5px;
    cursor: pointer;
    transition: .8s;
    font-size: 18px;
    display: flex;
    justify-content: center;
    font-weight: bold;
    border: none;
    outline: none;
    margin-top: 25px;
    align-items: center;
}

.button:hover {
    background-color: #fff;
    color: black;
}

.actor-cards-container {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 50px;

}

.cards-content {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 20px;
    column-gap: 40px;
}

.card {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: 50% 50%;
    border-radius: 5px;
    cursor: pointer;
    transition: 1s;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 0 0 20px 10px;
    color: #fff;
    font-size: 17px;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

.card:hover {
    transform: scale(1.02);
}

.banner-1{
    background-image: url(../src/images/banner1.webp);
}

.banner-2{
    background-image: url(../src/images/banner2.jpg);
}

.banner-3{
    background-image: url(../src/images/banner3.webp);
}

footer {
    height: 300px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}

span {
    color: #fff;
    font-family: 'Kdam Thmor Pro', sans-serif;
}

.footer-nav {
    display: none;
}

.footer-list {
    display: flex;
    flex-direction: column;
    align-items: center;
}

@media(max-width: 768px){
    .footer-nav {
        display: block;
    }
    
    nav {
        display: none;
    }

    #banner {
        background-position: 40%;
    }

    #trailer-container {
        width: 100%;
        height: 400px;
        display: flex;
        flex-direction: column;
    }

    .content {
    width: 95%;
    display: flex;
    flex-direction: column;
    }

    .trailer {
        width: 100%;
    }

    #sinopse {
        width: 95%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        margin-left: auto;
    }

    .description {
        width: 100%;
    }

    .button {
        width: 100%;
        margin-top: 30px;
    }

    .cards-content {
        grid-template-columns: 1fr;
        margin-top: 150px;
    }
    * {
        align-items: center;
    }
}

.cartaz-contato {
    display: grid;
    grid-template-columns: 1fr 1fr;
    max-width: 1100px;
    margin: 0 auto;
    align-items: center;
    gap: 40px;
    padding: 3rem 1rem;
}
 .imagem-cartaz {
    object-fit: contain;
    max-width: 100%;
    display: flex;
}

.cartaz-content {
    background-repeat: no-repeat;
    padding-right: 100px;
    color: #fff;
    font-size: 17px;
    font-family: 'Kdam Thmor Pro', sans-serif;
    border-radius: 5px;
}

.cartaz-content img {
    width: 100%;
    height: 600px;
}

label {
    font-family: 'Kdam Thmor Pro', sans-serif;
    border-radius: 5px;
    color: #fff;
    font-size: 17px;
    
}
input {
    display: block;
    background-color: #e07414;
    list-style: none;
    font-family: 'Kdam Thmor Pro', sans-serif;
    border-radius: 5px;
    font-size: 17px;

}

textarea {
    display: block;
    background-color: #e07414;
    list-style: none;
    font-family: 'Kdam Thmor Pro', sans-serif;
    border-radius: 5px;
    font-size: 17px;
}

form {
    display: grid;
    gap: 5px;
  }
 
.fotos-container {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    row-gap: 20px;
    column-gap: 40px;
}   

.fotos-content {
    width: 90%;
    display: grid;
    grid-template-columns: repeat(3, 2fr);
    row-gap: 20px;
    column-gap: 40px;
    margin: 10px;
}

.foto-1 {
    background-image: url(../src/images/M3GAN\ LENDO.jpg) ;
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: .3s;
}

.foto-2 {
    background-image:url(../src/images/M3GAN\ 3\ P\ OFICINA.jpg);
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: .3s;
}

.foto-3 {
    background-image:url(../src/images/M3GAN\ SALA\ BRANCA.jpg) ;
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: .3s;
}

.foto-4 {
    background-image:url(../src/images/M3GAN\ MÃO\ BOCA.jpg);
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: .3s;
}

.foto-5 {
    background-image:url(../src/images/M3GAN\ MENINO\ ORELHA.jpg) ;
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: .3s;
}

.foto-6 {
    background-image:url(../src/images/M3GAN\ REDROOM\ CORRE.jpg);
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: .3s;
}

.foto-7 {
    background-image:url(../src/images/M3GAN\ 2\ P\ JIPE.jpg);
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: .3s;
}

.foto-8 {
    background-image:url(../src/images/M3GAN\ CARTAZ\ 1.jpg);
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: .3s;
}

.foto-9 {
    background-image:url(../src/images/M3GAN\ HOMEM\ JANELA.jpg);
    width: 30vw;
    height: 30vh;
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 5px;
    cursor: pointer;
    padding: 0 0 20px 10px;
    transition: 0.3s;
}

#foto:hover {
    transform: scale(1.02);
}

/* .comentarios-container {
    height: auto;
    width: auto; 
    gap: 30px;
    justify-content: space-around;
    align-items: center;
} */

.comentarios-content {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

#comment {
    background-color: #e07414;
    width: 400px;
    height: 719px;
    padding: 20px;
    margin-top: 30px;
    justify-content: center;
    font-family: 'Kdam Thmor Pro', sans-serif;
    border-radius: 5px;
    
}

.comentario-1 {
    background-color: #e07414;
    width: 400px;
    height: 719px;
    padding: 20px;
    margin-top: 30px;
    justify-content: center;
    font-family: 'Kdam Thmor Pro', sans-serif;
    border-radius: 5px;
}