@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:wght@400;900&family=Lato:wght@400;700&family=Poppins:wght@400;700&family=Roboto:wght@400;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.root {
    --primary-text-color: #ffffff;
    --secondary-text-color: #aaaaaa;
    --content-text-color: #000000;
    --footer-content-color: #949494;
}

body {
    font-family: Poppins, sans-serif;
    background-color: #000000;

}

.ul {
    list-style: none;
}

h1 {
    font-size: 3rem;
}

h2 {
    font-size: 2rem;
}

h3 {
    font-size: 1.5rem;
}

h4 {
    font-size: 20px;
}

p {
    font-family: 'Roboto', sans-serif;
    font-size: 21px;
    line-height: 27.3px;
    color: var(--primary-text-color)
}

a {
    text-decoration: none;
    display: inline-block;
}

/* utilities */
.container {
    margin: 0 50px;
    /* overflow: hidden; */
}

.flex {
    display: flex;
    justify-content: center;
}

.imp-content-text {
    font-size: 24px;
    line-height: 28.8px;
}

.hover-link {
    text-decoration: none;
    color: whitesmoke;
    font-size: large;
    padding: 10px;
    border-radius: 3px;
}

.hover-link:hover {
    color: white;
    background-color: #191e25;
}

.button {
    color: whitesmoke;
    background-color: #0f79af;
    font-size: 17px;
    line-height: 20px;
    text-align: center;
    width: 300px;
    height: 50px;
    margin: 20px;
    padding: 14px 20px;
    border-radius: 5px;
    border: 1px solid var(--primary-text-color);
}

.button:hover {
    background-color: #0989bf;
    box-shadow: 1px 1px 4px #0f79af;
}



/* navigation-bar */

.nav-banner {
    /* width: 100vw; */
    margin: 10px;
    margin-left: 100px;
    border: 1px solid 4px #000000;
    border-radius: 16px;
    box-shadow: 1px 1px 4px #222222;
    height: 60px;
    justify-content: center;
    background-color: #00050d;
    position: fixed;
    transform: 0.3s ease;
    z-index: 1;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #191e25;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

.dropdown-content a {
    color: whitesmoke;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.dropdown-content a:hover {
    background-color: whitesmoke;
    color: #000000;
}

.dropdown:hover .dropdown-content {
    display: block;
}


nav ul {
    display: flex;
    list-style: none;
    margin-left: 5opx;
}

.nav-links {
    padding: 20px;
    align-items: center;
}

.headings {
    color: whitesmoke;
    display: flex;
    justify-content: space-between;
    padding-left: 40px;
    padding-right: 60px;
    padding-block: 20px;
}

.categories {
    position: absolute;
    width: 900px;
    left: 30%;
    right: 30%;
}

.films {
    justify-content: space-between;
    padding-left: 30px;
    padding-right: 30px;
}

.pv-logo img {
    width: 130px;

}

.search-logo img {
    width: 20px;
    padding-top: 20px;
}

.account-icon img {
    width: 30px;
    margin: 10px;
}

.nav-links ul li {
    padding-left: 20px;
    padding-right: 20px;

}

.nav-links ul li:hover {
    background-color: #00050d;
}


.language {
    position: absolute;
    width: 800px;
    right: 60%;
    background-color: #00050d;
    /* Adjust the value as needed */
}

/* main-section */

.page {
    /* min-height: 100vh; */
    display: flex;
    justify-content: space-between;
    align-items: start;
    gap: 20px;
    color: #ffffff;
}

.main-content {
    flex-basis: 50%;
    margin: 250px 60px;
}

.topic {
    font-size: 44.8px;
    line-height: 49.6px;
    text-align: start;
    font-weight: 300;
}

.content {
    font-size: 24px;
    line-height: 28.8px;
    text-align: start;
    padding-top: 24px;

}

.poster {
    padding: 100px 20px;
    flex-basis: 60%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 300px;
}

.box img {
    width: 100%;
    height: 100%;
    background-size: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
}

.box img:hover {
    box-shadow: 2px 2px 4px whitesmoke;
    transform: scale(1.1);
}


/* white-section */
.white-section {
    padding: 0;
    background-color: whitesmoke;
    height: 700px;
}

.white {
    padding: 30px 20px;
    flex-basis: 60%;
    display: grid;
    gap: 10px;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 150px;
}

/* fire-stick-section */
.image img {
    width: 50vw;
    padding-top: 80px;
}

.fire-stick-content {
    flex-basis: 100%;
    margin: 100px 20px;
    text-align: left;
}

/*footer  */
footer {
    text-align: center;
    background-color: #222222;
    width: 100vw;
    height: 150px;
    color: #949494;
    font-size: 15px;
    line-height: 20px;
}

footer img {
    padding-top: 20px;
}

.footer-content ul li {
    color: #0f79af;
    padding: 0 10px;
    list-style: none;
    cursor: pointer;
}

/* responsive-section */

/* for tablet device */

@media screen and (max-width:768px) {
    .nav{
        width: 100vw;
        flex-direction: column;
     }
    section .page {
        flex-direction: column-reverse;
        width: 100vw;
    }

    .main-content {
        margin: 0 20px;
    }

    .poster {
        padding: 20px 20px;
    }

    .section-2>.page {
        flex-direction: column;
        width: 100vw;
    }

    .white-section {
        height: 900px;
        width: 110vw;
    }

    .white-section>.page {
        flex-direction: column;
    }

    .white {
        width: 100vw;
    }
    .fire-stick-section>.page{
        flex-direction:column ;
    }


    .image img{
        width: 100vw;
    }
}



