body {
    font-family: 'Roboto', sans-serif;
    padding: 0;
    margin: 0;
    background: linear-gradient(to bottom, #2d2a32, #871326);
    color: #fff;
    overflow-x: hidden; 
} /* titels van de films font,kleur wordt anders */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    color: #e50914;
}
/* nav css*/
nav {
    width: 100%;
} /* kleur van de navbar veranderen */
.navbar {
    background-color: rgb(22, 21, 21);
} /* de kleur en de cursor wordt anders van de links our recom,movie coming soon etc... */
.nav-link, .navbar-brand {
    color: #ffffff;
    cursor: pointer;
    margin-left: 1em !important;
} /*kleur van de link wordt naar ander kleur veranderd */
.nav-link:hover, .navbar-brand:hover {
    color: #e50914;
}
.navbar-collapse {
    justify-content: flex-end;
}

.header {
    background-image: url("images/headerpicture.png");
    background-size: cover;
    background-position: center;
    height: 100vh;
    width: 100%;
    overflow: hidden; 
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}
.recomendationfoto{
    width: 100%; 
    height: 100%; 
    object-fit: cover;
    background: rgba(0, 0, 0, 0.6); 
}
.moviecomingsoon{
    width: 100%; 
    height: 100%;
    object-fit: cover;
    background: rgba(0, 0, 0, 0.6); 
}

.More-information{
    text-align: center;
}
.overlay {
    position: absolute;
    min-height: 100%;
    min-width: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.6);
}
.description {
    position: absolute;
    top: 45%;
    text-align: center;
    transform: translate(-50%, -50%);
    left: 50%;
}
.description button {
    border: 1px solid #e50914;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    text-transform: uppercase;
    font-weight: bold;
}
.description button:hover {
    background: #e50914;
    color: #000;
}

.genres-icons {
    text-align: center;
    padding: 20px 0;
    background: #1f1f1fe2;
}
.genres-icons i {
    font-size: 2rem;
    color: #e50914;
    margin: 10px;
    transition: transform 0.4s ease-in-out;
}
.genres-icons i:hover {
    transform: scale(1.2);
    color: #ff5a5f;
}
.genres-icons p {
    display: block;
    color: #fff;
    font-size: 0.9rem;
}
/* box */
.card{
    border: none;
    transition: transform 0.3s ease-in-out;
    margin: 15px 0;
    background-color: #333;
    color: #fff;
    flex-direction: column;
} 
/* card is in recommendations aanpassing van fotos zodat ze even groot zijn.*/
.card img {
    width: 100%; 
    height: 550px; 
    object-fit: cover; 
    border-radius: 8px; 
}/* transformation van de foto wordt groter.*/
.card:hover {
    transform: scale(1.05);
} /* titel in de box recommendation */
.card-title {
    color: #e50914;
    font-size: 35px;

} /* zo wordt de grijze box wat groter zodat alle zinnen erin kunnen.*/
.card-text{
    font-size: 0.8;
    height: 160px;
} /* foto aanpassen homepage zodat ze even groot zijn.*/
.movie-img { 
    width: 100%;
    height: 650px; /* Zorgt voor consistente hoogte */
    object-fit: cover; /* Snijdt bij indien nodig */
    border-radius:8 px;
} 
/* Footer css  */
.page-footer {
    background-color: #1f1f1f;
    color: #ccc;
    padding: 40px 0 20px;
}
.footer-copyright {
    text-align: center;
    color: #667;
    margin-top: 20px;
}
/*Dit is footer icons css */
.fas{
letter-spacing: 10px;
}
.titels{
 width: 100%; 
  height: auto; 
  max-height: 300px;
  object-fit: cover;
}
.titelmovies, .titelscenter{
    text-align: center;
}
.film1{
    width: 100%;
    height: 400px;
    overflow: hidden;
    object-fit: cover; 
    border-radius: 8px;
}
.kleurbox{
    border: none;
    transition: transform 0.3s ease-in-out;
    margin: 15px 0;
    background-color: #333;
    color: #ffffff;
    flex-direction: column;
}
.titelmovie2025{
    color: #e50914;
    font-size: 35px;
}
.video-container {
    position: relative;
    width: 100%;
    max-width: 420px; /* Pas aan naar wens */
    margin: 10px auto;
    overflow: hidden;
}
/* voor de video */
.video-container video {
    width: 100%;
    height: auto;
    display: flex;
    border: 2px solid #000; /* Optioneel: rand om video */
}
/* de size van de titel */
.trailerTitel{
    font-size: 25px;
    color: #FFFFFF; /* Witte kleur */
    text-shadow: 0px 0px 5px rgba(255, 255, 255, 0.6), 
             0px 0px 10px rgba(229, 9, 20, 0.6); 
}
/* voor titel van de trailer zodat het een glow effect heeft */
.trailerTitel:hover{
    color: #e50914; /* Nieuwe kleur (goud) */
    text-shadow: 0 0 10px #e50914, 0 0 15px #e50914;
}