@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Manrope:wght@200..800&family=Playfair+Display:ital,wght@0,400..900;1,400..900&display=swap');


/* font-family: "Manrope", sans-serif; */
/* font-family: "Playfair Display", serif; */
/* font-family: "Inter", sans-serif; */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html,
body {
    width: 100%;
    height: 100%;
    font-family: "Inter", sans-serif;
}

body {
    font-family: "Inter", sans-serif;
    position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Manrope", sans-serif;
}

a,
p,
ul,
ol,
span,
li,
strong,
i,
b,
u {
    font-family: "Inter", sans-serif;
    text-decoration: none;
}

::-webkit-scrollbar {
    display: none;
}


.special-heading {
    font-family: "Playfair Display", serif;
    font-style: italic;
    font-weight: 500;
}

.films-hero {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-bottom: 50px;
    position: relative;

    .absolute-video {
        position: absolute;
        top: 0;
        left: 0;
        z-index: -1;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .film-hero-Container {
        width: 100%;
        height: auto;
        min-height: 100vh;
        display: flex;
        align-items: start;
        justify-content: end;
        flex-direction: column;
        background: linear-gradient(20deg, #000, #ffffff00);


        h1 {
            font-size: 6rem;
            line-height: 7rem;
            color: #fff;
            padding-left: 30px;
        }

        p {
            font-size: 1.1rem;
            color: #fff;
            padding-left: 30px;
            margin-bottom: 50px;
            max-width: 800px;
        }
    }
}

@media only screen and (max-width:768px) {
    .films-hero {
        padding: 0;
        margin-bottom: 20px;

        .film-hero-Container {
            margin: 0;
            padding: 0;
            min-height: 90vh;

            h1 {
                font-size: 3rem;
                line-height: 3.5rem;
                padding-left: 20px;
            }

            p {
                font-size: 1rem !important;
                padding-left: 20px;
            }
        }
    }
}

/* films showcase */
.video-showcase {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;

    .videoShowContainer {
        width: 100%;
        height: auto;
        padding: 0 20px;
        /* max-width: 95%; */
        margin: 40px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h2 {
            font-size: 3.5rem;
            color: #121212;
            font-weight: 600;
            margin-bottom: 35px;
            text-align: center;


            span {
                color: transparent;
                background: linear-gradient(90deg, #d19200, #d6b13b);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        p {
            font-size: 1.2rem;
            margin-bottom: 40px;
            color: #212121;
            text-align: center;
            max-width: 800px;
        }

        .Films-Cards {
            width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 80px 0;
            margin-bottom: 50px;

            .video-card {
                width: 50%;
            }
        }

        .Films-btn {
            padding: 10px 20px;
            background: linear-gradient(90deg, #d19200, #e2c156);
            color: #181818;
            border-radius: 25px;
            font-size: 1rem;
            transition: all .5s ease-in-out;

            &:hover {
                transform: translateX(5px);
                box-shadow: 10px 10px 30px #d1920025;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .video-showcase {
        padding: 0 10px;

        .videoShowContainer {
            margin: 20px 0;
            padding: 0px;

            h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            >p {
                font-size: 1rem;
                margin-bottom: 20px;
            }

            .Films-Cards {
                gap: 20px;

                .video-card {
                    width: 100%;
                    height: auto;
                }
            }
        }
    }
}

/* films showcase */

/* reels showcase */
.video-showcase-Reels {
    width: 100%;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;


    .reelsShowContainer {
        width: 100%;
        height: auto;
        padding: 0 20px;
        margin: 40px 0;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-direction: column;

        h2 {
            font-size: 3.5rem;
            color: #121212;
            font-weight: 600;
            margin-bottom: 35px;
            text-align: center;


            span {
                color: transparent;
                background: linear-gradient(90deg, #c24e4e, #2e0f0f);
                background-clip: text;
                -webkit-background-clip: text;
            }
        }

        .Reels-Cards{
             width: 100%;
            height: auto;
            display: flex;
            align-items: start;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 50px;
            margin-bottom: 50px;

            .reel-video-card {
                width: 30% !important;
                border-radius: 12px;
                overflow: hidden;
            }
        }
    }
}

@media only screen and (max-width:768px) {
    .video-showcase-Reels{
        padding: 0 10px;

        .reelsShowContainer{
            padding: 0;
            margin: 40px 0;

             h2 {
                font-size: 2rem;
                line-height: 2.5rem;
                margin-bottom: 10px;
            }

            .Reels-Cards {
                gap: 20px;

                .reel-video-card {
                    width: 100% !important;
                    height: auto;

                    video{
                        width: 100% !important;
                        height: auto;
                    }
                }
            }
        }
    }
}
/* reels showcase */