*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body{
    background: #141414;
    font-family: Arial, sans-serif;
    color: white;
}

/* MENU */

header{
    position: fixed;
    top: 0;
    width: 100%;
    padding: 20px 50px;

    display: flex;
    justify-content: space-between;
    align-items: center;

    background: rgba(0,0,0,0.8);

    z-index: 100;
}

.logo{
    color: red;
    font-size: 35px;
    font-weight: bold;
}

nav a{
    color: white;
    text-decoration: none;
    margin-left: 20px;
    transition: 0.3s;
}

nav a:hover{
    color: red;
}

/* BANNIERE */

.banner{
    height: 100vh;

    background:
    linear-gradient(to top, #141414, transparent),
    url("images/banner.jpg");

    background-size: cover;
    background-position: center;

    display: flex;
    align-items: center;

    padding-left: 60px;
}

.overlay{
    max-width: 500px;
}

.overlay h2{
    font-size: 60px;
    margin-bottom: 20px;
}

.overlay p{
    font-size: 18px;
    line-height: 1.5;
    margin-bottom: 20px;
}

.overlay button{
    padding: 12px 25px;
    border: none;
    background: red;
    color: white;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

.overlay button:hover{
    background: darkred;
    transform: scale(1.05);
}

/* SECTION FILMS */

.movies{
    padding: 40px;
}

.movies h2{
    margin-bottom: 20px;
}

.movie-row{
    display: flex;
    gap: 20px;
    overflow-x: auto;
}

.movie-card{
    min-width: 250px;
    height: 350px;
    transition: 0.3s;
}

.movie-card img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.movie-card:hover{
    transform: scale(1.08);
}

