    /* get from assets/font/NetflixSans.woff2 */
@font-face {
    font-family: 'Netflix';
    src: url('../font/NetflixSans.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
}

* {
    font-family: 'Netflix ', sans-serif;
    /* bold */
    font-weight: bold;
}

:root {
    --bs-dark: #141414;
    --bs-primary: #141414;
    --bs-secondary: #141414;
    --bs-body-bg: #141414;
}

.bg-transparent {
    background-color: transparent !important;
}

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999999;
    background-color: rgba(0, 0, 0, 0.8);
    /* center */
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}

.dropdown-content a {
    display: none;
    color: whitesmoke;
    text-decoration: none;
}

.bg-blurry {
    background: linear-gradient(180deg, rgba(0, 0, 0, 1) 10%, rgba(0, 0, 0, 0) 100%);
}

.text-shadows {
    text-shadow: 2px 2px 4px #000000, 0 0 35px #000000;
}

#hero video {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

#hero {
    height: 90vh;
}
#hero:after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 10%; /* Adjust the height of the gradient overlay as needed */
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0), var(--bs-body-bg));
    pointer-events: none;
}

.hero-image{
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.container-fullwidth {
    position: relative;
}

#video-player {
    /* should be center using flex */
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100vh;
    top: 0;
}

#video-player video {
    animation: fadeIn 1s;
    max-width: 100%; /* Ensure video does not exceed container width */
    height: auto; /* Maintain aspect ratio */
}

.high-zindex{
    z-index: 100000;
}

.overlay {
    position: absolute;
    top: 60%; /* Adjust as needed */
    transform: translateY(-50%);
    left: 4em; /* Adjust as needed */
    color: white;
}

.overlay-top {
    position: absolute;
    /* top: 10%;  */
    top: 5%;
    transform: translateY(-50%);
    left: 4em; /* Adjust as needed */
    color: white;
    display: flex;
    align-items: center;
}


.overlay h1 {
    font-size: 2em; /* Adjust as needed */
    margin-bottom: 10px;
}

.align-flexcenter {
    display: flex;
    align-items: center;
}

.searchBar-form {
    /* smooths */
    transition: all 2s ease;
}

.overlay p {
    font-size: 1.2em; /* Adjust as needed */
    margin-bottom: 20px;
    /* wrap */
    word-wrap: break-word;
    /* max width 30em make it so it responds to the device */
    max-width: 20em;
}

.overlay-right {
    position: absolute;
    top: 70vh; /* Adjust as needed */
    right: 4em; /* Adjust as needed */
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* get grid from overlay-right */
.overlay-right div {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}

.btn-flexcenter {
    display: flex;
    justify-content: center;
    align-items: center;
}

.align-middle {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
    height: 100%; /* Set the height of the container */
}


/* make a custom scrollbar that is smooth and thin */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: --bs-primary;
}

::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 2.5px; /* Half of the scrollbar width */
}

::-webkit-scrollbar-thumb:hover {
    background: #555;
}




/* bootstrap override modal */
/* change border radius */
.modal-content {
    border-radius: 0;
}

/* Custom CSS */
.modal-header {
    position: absolute;
    top: 0;
    right: 0;
    z-index: 1000;
    /* Ensure it overlays the video */
    /* remove weird border*/
    border: none;
}

.horizontal-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    /* hide scrollbar */
}
.horizontal-scroll::-webkit-scrollbar {
    height: 5px;
}

.scroll-card:hover {
    transition: transform 0.3s ease;
    transform: scale(1.4);
}

.age {
    /* cicrle */
    border-radius: 50%;
    width: 2em;
    height: 2em;
    display: flex;
    border: #ff3131 solid 1px;
}

.mylist-card {
    width: 18rem;
}

/* hide mylist-card card-body */
.mylist-card .card-body {
    display: none;
}
/* on hover display the card-body use transition */
.mylist-card:hover .card-body {
    display: block;
    transition: display 0.3s ease;
}

.mylist-card:hover {
    transition: transform 0.3s ease;
    transform: scale(1.1);
    z-index: 1000;
}

#mylist .row {
    display: flex;
    /* center */
    justify-content:flex-start;
    
}

.col-2 {
    /* no width */
    flex: 0 0 auto;
    width: auto;
    max-width: 10%;
}

/* larger than tablet */
@media screen and (min-width: 1025px) {
    .gta-logo-img {
        width: 16%;
    }
}

/* larger than phone */
@media screen and (max-width: 1024px) {
    .col-2 {
        /* no width */
        flex: 0 0 auto;
        width: auto;
        max-width: 20%;
    }

    .gta-logo-img {
        width: 20%;
    }
}

/* phone */
@media screen and (max-width: 600px) {

    #hero {
        display: none;
    }
    .navbar {
        position: relative;
    }

    /* hamburger menu on the left instead of the right */
    .navbar-toggler {
        order: -1;
    }

    .col-2 {
        /* no width */
        flex: 0 0 auto;
        width: auto;
        max-width: 50%;
    }
}
