*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'poppins', sans-serif;
}
/* -------------special styling----------- */
body.fill{
    background: whitesmoke;
    color: gray;
}
nav.show{
    background: whitesmoke;
    color: gray;
    box-shadow: 0px 6px 15px rgba(12, 12, 12, 0.15);
}
nav.show .join a,
.films .swiper-slide h3 a{
    color: gray;
}
.mode{
    cursor: pointer;
}

/*--------------- normal styling------------ */
body{
    background: rgb(29, 28, 28);
    color: white;
}
nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    height: 70px;
    padding: 10px 40px 5px 40px;
    position: sticky;
    top: 0;
    left: 0;
    z-index: 3;
    background: rgba(59, 59, 59, 0.623);
}
nav .logo{
    width: 130px;
    height: 100%;
    overflow: hidden;
}
nav .logo img{
    width: 100%;
    height: 100%;
}
nav .join{
    font-size: 20px;
    font-weight: 500;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 178px;
}
nav .join a{
    text-decoration: none;
    color: whitesmoke;
}
nav .join #real{
    background: red;
    font-size: 15px;
    padding: 7px 10px;
    text-align: center;
    border-radius: 5px;
}
nav .join button{
    padding:  7px 10px;
    outline: none;
    border: 2px solid white;
    background: transparent;
    border-radius: 5px;
}
nav .join button a{
    text-decoration: none;
    color: white;
}
/*------------------- titles area----------------- */
#titles{
    margin-top: 5%;
    padding: 0 40px;
}
#titles h1{
    font-size: 40px;
    margin-bottom: 10px;
}
#titles p{
    text-align: left;
    width: 800px;
    gap: 10px;
}
/*--------------------- films and sliders area---------------- */
.films{
    margin-top: 3%;
    padding: 0 40px;
}
.films h3{
    margin-bottom: 10px;

}
/*------------ for the ready page ----------- */
.text-ready{
    width: 100%;
    margin-top: 15%;
    text-align: center;
}
.text-ready h1 a{
    color: red;
    text-decoration: none;
}
.text-ready h1 a:hover{
    text-decoration: underline white;
}
/*---------------- it ends here------------- */
.swiper{
    width: 100%;
    height: 220px;
}
.swiper-slide{
    width: 200px;
    height: 200px;
}
.swiper-slide img{
    display: block;
    width: 100%;
    height: 90%;
    cursor: pointer;
    object-fit: cover;
}
.swiper-slide h3{
    text-align: center;
    margin-top: 10px;
}
 .swiper-slide h3 a{
    text-decoration: none;
    color: white;
}
.unique{
    color: white;
}
 .swiper .swiper-button-next,
 .swiper .swiper-button-prev{
    color: white;
    background: rgba(59, 59, 59, 0.623);
    padding: 10px;
}
/* ------------------more to watch area------------- */
.more-to-watch{
    width: 100%;
    margin-top: 3%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    text-align: center;
    background: transparent;
}
.more-to-watch h1{
    font-size: 30px;
    margin-bottom: 20px;
}
.more-to-watch p{
    text-align: center;
    width: 900px;
}
.more-to-watch button{
    outline: none;
    border: none;
    background: red;
    padding: 7px 20px;
    font-weight: bold;
    border-radius: 5px;
    text-align: center;
    margin-top: 15px;
}
.more-to-watch button a{
    text-decoration: none;
    color: white;
    font-size: 15px;
}
/*------------------- footer area---------------- */
footer{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    padding: 40px 80px;
    width: 100%;
    color: gray;
    font-family: 'poppins', sans-serif;
    margin-top: 3%;
}
footer h4{
    margin-bottom: 20px;
}
footer h4 a{
    font-size: 17px;
    text-decoration: none;
    text-decoration: none;
    color: gray;
}
footer .links{
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}
footer .links ul{
    list-style: none;
    margin-bottom: 20px; 
}
footer .links ul li{
    margin-bottom: 15px;
}
footer .links ul li a{
    text-decoration: none;
    color: gray;
    font-size: 15px;
}
footer .links ul li a:hover,
footer h4 a:hover{
    text-decoration: underline;
}


/*--------------- media query---------------- */
@media (max-width: 480px){
    nav{
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        height: 70px;
        padding: 10px 30px 5px 30px;
        position: sticky;
        top: 0;
        left: 0;
        z-index: 3;
        background: rgba(59, 59, 59, 0.623);
    }
    nav .logo{
        width: 100px;
        height: 100%;
        overflow: hidden;
    }
    nav .logo img{
        width: 100%;
        height: 100%;
    }
    nav .join{
        font-size: 15px;
        font-weight: 400;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 120px;
    }
    .mode{
        margin-right: 10px;
        font-size: 24px;
    }
    nav .join a{
        text-decoration: none;
        color: whitesmoke;
    }
    nav .join #real{
        background: red;
        font-size: 10px;
        padding: 5px;
        text-align: center;
        border-radius: 5px;
    }
    nav .join button{
        padding:  5px ;
        outline: none;
        border: 2px solid white;
        background: transparent;
        border-radius: 5px;
        font-size: 10px;
    }
    nav .join button a{
        text-decoration: none;
        color: white;
    }
    #titles{
        margin-top: 5%;
        padding: 0 30px;
    }
    #titles h1{
        font-size: 30px;
        margin-bottom: 10px;
    }
    #titles p{
        text-align: left;
        width: 100%;
        gap: 10px;
    }
    .films{
        margin-top: 3%;
        padding: 0 30px;
    }
    .films h3{
        margin-bottom: 10px;
        font-size: 15px;
    
    }
    /*------------ for the ready page ----------- */
.text-ready{
    width: 100%;
    margin-top: 10%;
    text-align: left;
    padding: 0 30px;
}
.text-ready h1{
    font-size: 20px;
}
.text-ready h1 a{
    color: red;
    text-decoration: none;

}
/*---------------- it ends here------------- */
.swiper{
        width: 100%;
        height: 150px;
        /* border: 2px solid red; */
    }
    .swiper-slide{
        width: 200px;
        height: 100px;
    }
    .swiper-slide img{
        display: block;
        width: 100%;
        height: 90%;
        cursor: pointer;
        
    }
    .swiper-slide h3{
        font-size: 13px;
        font-weight: 100;
        text-align: center;
        margin-top: 10px;
    }
     .swiper .swiper-button-next,
     .swiper .swiper-button-prev{
        /* font-size: 5px; */
        display: none;
        color: white;
        padding: 10px;
        background: none;
    }
    .more-to-watch{
        width: 100%;
        margin-top: 3%;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        text-align: center;
        background: transparent;
        padding: 0 30px;
    }
    .more-to-watch h1{
        font-size: 25px;
        margin-bottom: 15px;
    }
    .more-to-watch p{
        text-align: center;
        width: 100%;
    }
    .more-to-watch button{
        outline: none;
        border: none;
        background: red;
        padding: 7px 20px;
        font-weight: bold;
        border-radius: 5px;
        text-align: center;
        margin-top: 10px;
    }
    .more-to-watch button a{
        text-decoration: none;
        color: white;
        font-size: 13px;
    }
    footer{
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        justify-content: space-between;
        flex-wrap: wrap;
        padding: 20px;
        width: 100%;
        color: gray;
        font-family: 'poppins', sans-serif;
        background: transparent;
        text-align: center;
    }
    footer h4{
        margin-bottom: 20px;
    }
    footer h4 a{
        font-size: 20px;
        text-decoration: none;
        text-decoration: none;
        color: gray;
    }
    footer .links{
        display: flex;
        align-items: flex-start; 
        flex-direction: column;
        text-align: left;
        width: 100%;
        padding: 10px;
    }
    footer .links ul{
        list-style: none;
        margin-bottom: 20px; 
    }
    footer .links ul li{
        margin-bottom: 15px;
    }
    footer .links ul li a{
        text-decoration: none;
        color: gray;
        font-size: 18px;
    }
    footer .links ul li a:hover,
    footer h4 a:hover{
        text-decoration: underline;
    }
    
    
}