/* HOME PAGE CSS */
body{
background-color: rgb(0, 0, 0);
}
#header{
    background-color: rgb(21, 21, 21);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
#logo{
    padding-left: 30px;
}
.anchor{
    text-decoration: none;
    color: rgb(125, 125, 125);
}
.anchor2{
    color: white;
    text-decoration: none;
}
.anchor2:hover{
    color: black;
}
.nav{
    color: rgb(125, 125, 125);
    font-size: 15px;
    padding-left: 6px;
    font-family: sans-serif;
    font-weight: bolder;
    list-style: none;
    display: inline-block;
}
.search{
    height: 30px;
    width: 200px;
    border-radius: 15px;
}
#searchbutton{
    margin-right: 10px;
    width: 60px;
}
button{
    color: white;
    background-color:rgb(207, 53, 53) ;
}
.nav:hover{
    color: rgb(255, 204, 0);
}
.anchor:hover{
    color:  rgb(207, 53, 53);
}
#header2{
    height: 80px;
    background-color: rgb(207, 53, 53);
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.ss{
    color: white;
    font-family: sans-serif;
    font-weight: bold;
    padding-left: 60px;
    padding-right: 60px;
    display: inline-block;
}
.ss:hover{
    color: black;
}
#headline{
    color: white;
    font-family: sans-serif;
    text-align: center;
    font-size: 40px;
    text-decoration: none;
    padding-bottom: 100px;
}
.linker{
    color: white;
    text-decoration: none;
    font-family: sans-serif;
    font-size: 40px;
}
.linker:hover{
    color: rgb(255, 204, 0);
}


/* FOOTER CSS START*/

#footer-body{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.footer-container{
    max-width: 1170px;
    margin: auto;
        background-color: rgb(26, 26, 26);
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding-top: 30px;
        padding-bottom: 30px;
        border-radius: 30px;
}
.footer-ul{
    list-style: none;
    padding: 0px;
}
.footer{
    background-color: #121417;
    padding: 70px 0;
    margin-top: 200px;
}
.footer-col{
    width: 25%;
    padding: 0 15px;

}
.footer-h4{
    font-size: 18px;
    color: #ffffff;
    text-transform: capitalize;
    margin-bottom: 30px;
    font-weight: 500;
    position: relative;
    font-family: sans-serif;
}
.header-anchor{
    text-decoration: none;
    color: rgba(255, 253, 253, 0.50);
    font-family: sans-serif;
    line-height: 30px;
}
.header-anchor:hover{
    color: red;
}
.social-links{
    text-decoration: none;
}

/* FOOTER CSS CLOSE  */

/* IMAGE SLIDER   */
#slider-body { font-family: Arial, sans-serif; }
.slider-container {
    position: relative;
    max-width: 1000px; /* Adjusted for landscape */
    margin: auto;
    overflow: hidden;
    border-radius: 50px;
}
.slides {
    display: flex;
    width: 100%; /* 10 images */
    transition: transform 0.5s ease-in-out;
}
.slide {
    min-width: 100%;
    border-radius: 10px;
}
.slide img {
    width: 100%;
    height: 500px; /* Set height for landscape format */
    object-fit: cover;
}
.nav-button {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 10px;
    cursor: pointer;
    height: 80px;
}
.prev { left: 10px; }
.next { right: 10px; }

/* FILES CSS */




#content{
align-content: normal;
display: flex;
}
.list{
    font-family: sans-serif;
    font-weight: bold;
    padding-left: 50px;
    margin: 50px;
    display: inline-block;
    height: 50px;

}
#watch{
    color: rgb(195, 164, 14);
    font-family: sans-serif;
    text-align: center;
    font-size: 50px;
}
#title{
    font-family: sans-serif;
    color: white;
    padding-left: 120px;
}
.episodes{
    height: 480px;
    width: 930px;
    border-style:solid;
    border-color: white;
    border-radius: 15px;
}
.description{
    color: white;
    font-family: sans-serif;
    font-size: 30px;
    text-align: center;
}
.download{
height: 50px;
width: 200px;
border-radius: 50px;
border-color: black;
margin-left: 470px;
font-family: sans-serif;
font-weight: bolder;
}


/* RESPONSIVE IN MOBILE  */

@media (max-width : 1000px ){
   body{
    width: 412;
    height: 914;
   }
    #header{
        background-color: rgb(21, 21, 21);
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 1200px;
        height: 200px;
    }
    .anchor{
       font-size: 20px;
    }
    .nav{
        color: rgb(125, 125, 125);
        font-size: 80px;
        padding-left: 6px;
        font-family: sans-serif;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
    }
    .slider-container{
        width: 1700px;
        text-align: center;
        margin-left: 95px;
    }
    #slider-list-tag{
        display: inline-block;
        margin: 0px;
        padding: 0px;
        height: 1000px;
    }
    #headline{
        margin-left: 70px;
    }
    #header2{
        height: 150px;
        width: 1200px;
        background-color: rgb(207, 53, 53);
        display: flex;
        align-items: center;
        justify-content: space-around;
    }
    .ss{
        color: white;
        font-family: sans-serif;
        font-weight: bold;
        padding-left: 20px;
        padding-right: 20px;
        display: inline-block;
        font-size: 25px;
    }
    
    #logo{
        padding-left: 90px;
    }
    .nav{
        color: rgb(125, 125, 125);
        font-size: 15px;
        padding-left: 6px;
        font-family: sans-serif;
        font-weight: bolder;
        list-style: none;
        display: inline-block;
    }
    .episodes{
        height: 550px;
        width: 950px;
        border-style:solid;
        border-color: white;
        border-radius: 15px;
        text-align: center;
    }
    #headline{
        padding-left: 35px;
        display: inline-block;
        width: 1000px;
    }
    .linker{
        padding-left: 150px;
        font-size: 50px;
        display: inline-block; 
        align-items: center;
        width: 1000px;
        padding-top: 50px;
    }
#footer-body{
    width: 1200px;
}
.footer{
    margin-top: 1000px;
    padding-right: 1200px;
}
.footer-container{
    width: 1100px;
    padding-left: 90px;
}
#searchbutton{
    margin-right: 50px;
}
}