@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,200..1000;1,200..1000&display=swap');

*{
    margin: 0;
    font-family: "Nunito", serif;
}

body{
    background-color: #070F2B;
}

/* HomeStart */
.home{
    height: 100vh;
    width: 100%;
    /* border: solid lavender; */
    background: linear-gradient(175deg, #070F2B, #1B1A55,#535C91);
}

.home .nav-bar{
    height: 80px;
    width: 100%;
    /* background-color: #1B1A55; */
    display: flex;
    flex-direction: row;
    justify-content: space-around;
    align-items: center;
    box-shadow: 0px 1px 10px #1B1A55;
    /* position: fixed;
    z-index: 100; */
}

.nav-bar .logo{
    height: 100%;
    width: 200px;
    /* border: 0.5px white solid; */
}

.nav-bar a{
    text-decoration: none;
    color: whitesmoke;
    font-size: 1rem;
    border-radius: 10px;
    padding: 8px 16px;
    margin-top: 10px;
}

.nav-bar a:hover{
    background-color:rgb(225, 234, 241);
    color: #1B1A55;
    transition: all 0.2s ease-in-out;
}

.nav-bar a:last-child{
    background-color: #9290C3;
    box-shadow: 0px 0px 10px #535C91 inset;
}

/* .nav-bar a:nth-child(6):hover{
    background-color: aqua;
} */

.search{
    width: 500px;
    height: 50px;
    border: 0.5px rgb(0, 0, 0) solid;
    border-radius: 25px;
    display: flex;
    background-color:rgb(225, 234, 241);
    hr{
        transform: rotate(100);
        margin-left: 20px;
        background-color: #070F2B;
    }
    margin-top: 10px;
}

.search input{
    height: 100%;
    width: 80%;
    font-size: 1.1rem;
    border: none;
    outline: none;
    background: none;
    padding-left: 10px;
}

.search svg{
    position: relative;
    top: 17px;
    left: 12px;
}

.nav-bar img{
    width: 165px;
    margin-top: 10px;
    /* filter: invert(100%); */
    filter: drop-shadow(0px 0px 10px rgb(245, 245, 245));
}

.home-bg-wall{
    height: calc(100vh-80px);
    margin-top: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    justify-content:flex-start;
}




.carousel{
    width: 80%;
    border-radius: 20px;
    overflow: hidden;
}

.home-sub-section {
    display: flex; /
    flex-direction: row;
    justify-content: space-around; 
    align-items: flex-start; 
    flex-wrap: wrap; 
    gap: 20px; 
    margin: 20px auto; 
    max-width: 90%; 
}

.home-sub-section .card {
    flex: 1 1 calc(20% - 20px); 
    max-width:inherit;  
    min-width: 100px; 
    height: 270px;
    border-radius: 20px;
    /* overflow:unset; */
    position: relative;
    transition: transform 0.3s ease-in-out; 
    object-fit: fill;
}

.home-sub-section .card img {
    width: 100%; 
    height: 100%; 
    object-fit:cover; 
    border-radius: inherit;
}

.home-sub-section .card:hover {
    transform: scale(1.05); 
}

.back-card{
    width: 210px;
    height: 50%;
    background-color: #367eba59;
    max-width: inherit;
    /* border: solid; */
    /* z-index: 100; */
    position: absolute;
    top:135px;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    display: none; 
    size:unset;
}
.card:hover {
    .back-card{
        display: block;
        z-index: 100;
        transition: all 0.5s ease-in-out;
    }
}
/* movie section start */
.movies {
    height: 80vh;
    width: 100%;
    box-shadow: 0px 0px 10px 10px rgb(17, 38, 75);
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Adds spacing between movie cards */
    position: relative;
    background-color: #110525; /* Sets a black background for contrast */
    padding: 10px; /* Adds gap between container edges and content */
}

.movie-title {
    position: absolute;
    top: 0px; /* Adjusts the title position */
    left: 10%;
    transform: translateX(-50%);
    font-size: 36px; /* Makes the title larger */
    font-weight: bold; /* Makes the title bold */
    text-align: center;
    color: #fff; /* White text for the title */
    margin: 0;
}

.movies .moviecard {
    height: calc(60vh / 1); /* Adjusts card height proportionally */
    width: calc(100% / 4 - 30px); /* Ensures cards fit in a row with gaps */
    max-width:inherit;
    border: 1px solid black;
    box-shadow: 5px 10px 10px #070F2B;
    background-color: #fff;
    overflow: hidden; /* Prevents content overflow */
    border-radius: 10px; /* Rounds the corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    position: relative;
}

.movies .moviecard:hover {
    transform: translateY(-10px); /* Moves card upward on hover */
    box-shadow: 10px 15px 15px rgba(0, 0, 0, 0.5); /* Enhances shadow on hover */
}

.movies .moviecard img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures proper image scaling */
    border-radius: 10px; /* Ensures image corners match card corners */
    display: block;
}

.sports {
    height: 80vh;
    width: 100%;
    box-shadow: 0px 0px 10px 10px rgb(17, 38, 75);
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Adds spacing between movie cards */
    position: relative;
    background-color: #110525; /* Sets a black background for contrast */
    padding: 10px; /* Adds gap between container edges and content */
}

.sports-title {
    position: absolute;
    top: 5px; /* Adjusts the title position */
    left: 10%;
    transform: translateX(-50%);
    font-size: 36px; /* Makes the title larger */
    font-weight: bold; /* Makes the title bold */
    text-align: center;
    color: #fff; /* White text for the title */
    margin: 0;
}

.sports .sportscard {
    height: calc(60vh / 1); /* Adjusts card height proportionally */
    width: calc(100% / 4 - 30px); /* Ensures cards fit in a row with gaps */
    border: 1px solid black;
    box-shadow: 5px 10px 10px #070F2B;
    background-color: #fff;
    overflow: hidden; /* Prevents content overflow */
    border-radius: 10px; /* Rounds the corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    position: relative;
}

.sports .sportscard:hover {
    transform: translate(-10px); /* Moves card upward on hover */
    box-shadow: 10px 15px 15px rgba(0, 0, 0, 0.5); /* Enhances shadow on hover */
}

.sports .sportscard img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures proper image scaling */
    border-radius: 10px; /* Ensures image corners match card corners */
    display:flex;
}

/* tvshows  */

.tv-shows {
    height: 80vh;
    width: 100%;
    box-shadow: 0px 0px 10px 10px rgb(17, 38, 75);
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px; /* Adds spacing between movie cards */
    position: relative;
    background-color: #110525; /* Sets a black background for contrast */
    padding: 10px; /* Adds gap between container edges and content */
}

.tv-shows-title {
    position: absolute;
    top: 5px; /* Adjusts the title position */
    left: 10%;
    transform: translateX(-50%);
    font-size: 36px; /* Makes the title larger */
    font-weight: bold; /* Makes the title bold */
    text-align: center;
    color: #fff; /* White text for the title */
    margin: 0;
}

.tv-shows .tv-showscard {
    height: calc(60vh / 1); /* Adjusts card height proportionally */
    width: calc(100% / 4 - 30px); /* Ensures cards fit in a row with gaps */
    border: 1px solid black;
    box-shadow: 5px 10px 10px #070F2B;
    background-color: #fff;
    overflow: hidden; /* Prevents content overflow */
    border-radius: 10px; /* Rounds the corners */
    transition: transform 0.3s ease, box-shadow 0.3s ease; /* Smooth hover effect */
    position: relative;
}

.tv-shows .tv-showscard:hover {
    transform: translateY(-10px); /* Moves card upward on hover */
    box-shadow: 10px 15px 15px rgba(0, 0, 0, 0.5); /* Enhances shadow on hover */
}

.tv-shows .tv-showscard img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures proper image scaling */
    border-radius: 10px; /* Ensures image corners match card corners */
    display:flex;
}

/* premium section starts */

.premium {
    height: 80vh;
    width: 100%;
    box-shadow: 0px 0px 10px 10px rgb(17, 38, 75);
    margin-top: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    position: relative;
    background-color: #110525;
    padding: 10px;
}

.premium-title {
    position: absolute;
    top: 5px;
    left: 10%;
    transform: translateX(-50%);
    font-size: 36px;
    font-weight: bold;
    text-align: center;
    color: #fff;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px; /* Adds spacing between the crown and text */
}

.premium-title .crown-icon {
    font-size: 36px; /* Adjust the size of the crown icon */
    color: gold; /* Sets the crown color to gold */
}

.premium .premium-showscard {
    height: calc(60vh / 1);
    width: calc(100% / 4 - 30px);
    border: 1px solid black;
    box-shadow: 5px 10px 10px #070F2B;
    background-color: #fff;
    overflow: hidden;
    border-radius: 10px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.premium .premium-showscard:hover {
    transform: translateY(-10px);
    box-shadow: 10px 15px 15px rgba(0, 0, 0, 0.5);
}

.premium .premium-showscard img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    display: block;
}

.premium .premium-showscard .card-crown-icon {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 20px;
    color: gold; /* Sets the crown color to gold */
    background-color: rgba(193, 191, 188, 0.701); /* Adds a semi-transparent background */
    opacity: 50%;
    border-radius: 50%;
    padding: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}


.about-section {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 40px;
    background-color: #110525;
    color: #fff;
    font-family: Arial, sans-serif;
}

.about-left, .about-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.left-column {
    margin-right: 40px;
}

.left-column h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f5b301; /* Highlighted heading color */
}

.left-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.left-column ul li {
    margin-bottom: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.left-column ul li:hover {
    color: #f5b301;
}

.right-row {
    margin-bottom: 20px;
}

.right-row h3 {
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 10px;
    color: #f5b301;
}

.social-links {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.social-links li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.social-links li i {
    font-size: 20px;
    color: #f5b301;
}

.social-links li:hover {
    color: #f5b301;
}

.download-buttons {
    display: flex;
    gap: 10px;
}

.download-button {
    padding: 10px 20px;
    background-color: #f5b301;
    color: #000;
    font-size: 14px;
    font-weight: bold;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.download-button:hover {
    background-color: #d49401;
}






