@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500&display=swap');

@font-face {
    font-family: Nocturne Serif;
    src: url(NocturneSerif-Regular.otf);
}

@font-face {
    font-family: Nocturne Serif-SemiBold;
    src: url(NocturneSerif-SemiBold.otf);
}

html {
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
}

html,
body {
    height: 100%;
    padding: 0;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: #0f0f11;
    color: #ffffff;
    padding-bottom: 100px;
}

blockquote {
    font-family: Nocturne Serif;
    font-size: 2rem;
    padding: 3%;
    border: solid;
    border-color: rgba(193, 190, 190, 0.5);
    ;
}

h1 {
    font-family: Nocturne Serif;
    font-size: 50px;
}

section {
    display: grid;
    align-content: center;
}

header {
    padding-left: 3%;
    padding-top: 1%;
    font-size: 65px;
    white-space: normal;
}

h2 {
    font-family: NocturneSerif-SemiBold;
    font-size: 42px;
    text-indent: 30px;
    margin: 0px;
    justify-content: left;
    align-content: left;
}

.bold {
    font-weight: 500;
    color: rgba(193, 190, 190, 0.5);
}

.content-body {
    padding: 1%;
    width: 98%;
    position: relative;
    font-family: 'Poppins', sans-serif;
    font-size: 18px;
}

.center {
    display: block;
    float: left;
    height: 350px;
    width: auto;
    border: 3px solid black;
    margin: 2%;
    box-shadow: 2px 2px rgba(118, 108, 108, .5);
}

.content-details {
    padding: 0px 0px;
    justify-content: center;
    position: relative;
    font-family: 'Poppins', sans-serif;
}

.summary {
    text-indent: 10px;
    padding-left: 2%;
    padding-right: 2%;
}

.castList {
    padding-left: 4%;
    padding-right: 4%;
    font-family: 'Poppins', sans-serif;
}

.content-below {
    padding-bottom: 2%;
    position: relative;
    justify-content: center;
    align-content: center;
    width: 90%;
    font-family: 'Poppins', sans-serif;
}

.content-roles {
    padding-left: 3%;
    position: relative;
    justify-content: center;
    align-content: center;
    font-family: 'Poppins', sans-serif;
    font-size: 25px;
}


/* ---------------------------
// Hidden/Show Animate
// --------------------------- */

.hidden {
    opacity: 0;
    filter: blur(5px);
    transform: translateX(-100%);
    transition: all 1.5s;
}

.show {
    opacity: 1;
    filter: blur(0);
    transform: translateX(0);
}

.cast {}

@media(prefers-reduced-motion) {
    .hidden {
        transition: none;
    }
}


/* ---------------------------
// Filmstrip
// --------------------------- */

.filmstrip {
    background-image: url('../images/filmstripbg.png');
    background-repeat: repeat-x;
    background-size: 110px;
    height: 145px;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    padding: 0;
}

.filmstrip p {
    position: relative;
    width: fit-content;
    height: 98%;
    margin: 0;
    line-height: 50px;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: scroll-right 26s linear infinite running;
    -webkit-animation: scroll-right 26s linear infinite running;
    animation: scroll-right 26s linear infinite running;
}

.filmstrip-photos img {
    position: relative;
    display: inline-block;
    border-radius: 20%;
    background: #000000;
    padding: 4px;
    width: 150px;
    height: 100px;
}

.filmstrip-single {
    transition: .1s;
    box-shadow: 2px 2px rgba(10, 9, 9, 0.3);
}

.filmstrip-single:hover {
    transform: scale(1.1);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

div.scrollable-images {
    background-color: #0f0f11;
    overflow: scroll;
    white-space: nowrap;
    padding: 10px;
    width: 100%;
    border-radius: 4%;
    margin: 7px;
}

.avatar {
    vertical-align: middle;
    width: auto;
    height: 23%;
    border-radius: 20%;
    border: 2px solid black;
    box-shadow: 2px 2px rgba(118, 108, 108, .5);
}


.avatar:hover {
    transform: scale(1.2);
    /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

.video {
    margin: auto;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-bottom: 56.25%;
    /* 16:9 */
    height: 0;
}

.video iframe {
    position: absolute;
    top: 0;
    left: 5%;
    width: 95%;
    height: 95%;
    justify-content: center;
    align-items: center;
}

/* ---------------------------
// Keyframes
// --------------------------- */

@-moz-keyframes scroll-right {
    100% {
        -moz-transform: translateX(83%);
    }

    0% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes scroll-right {
    100% {
        -webkit-transform: translateX(83%);
    }

    0% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes scroll-right {
    100% {
        -moz-transform: translateX(83%);
        -webkit-transform: translateX(83%);
        transform: translateX(83%);
    }


    0% {
        -moz-transform: translateX(-100%);
        -webkit-transform: translateX(-100%);
        transform: translateX(-100%);
    }
}


/* ---------------------------
// Footer
// --------------------------- */
.footer {
    height: 50px;
    background-color: #0f0f11;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    text-align: right;
    display: flex;
    justify-content: space-between;
}

.footer p {
    color: #FFFFFF;
    padding-right: 20px;
    padding-left: 10px;
    font-size: 1rem;
    padding-bottom: 5px;
}

.footer a {
    color: #f1b33a;
}

.icon {
    width: 30px;
    height: auto;
    margin-top: 0;
    padding-top: 0;
}

.icon:hover {
    transform: scale(1.3);
}


/* ---------------------------
// NAV MENU
// --------------------------- */

/* Add a black background color to the top navigation */
.topnav {
    background-color: #0f0f11;
    overflow: hidden;
    font-family: font-family: 'Poppins', sans-serif;
    font-size: 20px;
}

/* Style the links inside the navigation bar */
.topnav a {
    float: left;
    display: block;
    color: #f2f2f2;
    text-align: center;
    padding: 14px 16px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

/* Add an active class to highlight the current page */
.active {
    text-decoration: underline;
    color: white;
}

/* Hide the link that should open and close the topnav on small screens */
.topnav .icon {
    display: none;
}

/* Dropdown container - needed to position the dropdown content */
.dropdown {
    float: right;
    overflow: hidden;
    padding-right: 10%;
}

/* Style the dropdown button to fit inside the topnav */
.dropdown .dropbtn {
    border: none;
    outline: none;
    color: white;
    padding-top: 14px;
    padding-bottom: 14px;
    padding-left: 16px;
    padding-right: 80px;
    background-color: inherit;
    font-family: 'Poppins', sans-serif;
    margin: 0;
    font-size: 20px;
}

/* Style the dropdown content (hidden by default) */
.dropdown-content {
    display: none;
    position: absolute;
    background-color: rgba(236, 227, 227, 0.9);
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
    z-index: 1;
}

/* Style the links inside the dropdown */
.dropdown-content a {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
    font-size: 1rem;
}

/* Add a dark background on topnav links and the dropdown button on hover */
.topnav a:hover,
.dropdown:hover .dropbtn {
    background-color: #942828;
    color: white;
}

/* Add a grey background to dropdown links on hover */
.dropdown-content a:hover {
    background-color: #ddd;
    color: black;
}

/* Show the dropdown menu when the user moves the mouse over the dropdown button */
.dropdown:hover .dropdown-content {
    display: block;
}

/* When the screen is less than 600 pixels wide, hide all links, except for the first one ("Home"). Show the link that contains should open and close the topnav (.icon) */
@media screen and (max-width: 600px) {

    .topnav a:not(:first-child),
    .dropdown .dropbtn {
        display: none;
    }

    .topnav a.icon {
        float: right;
        display: block;
    }
}

/* The "responsive" makes the topnav look good on small screens  */
@media screen and (max-width: 600px) {
    .topnav.responsive {
        position: relative;
        font-size: 40px;
    }

    .topnav.responsive a.icon {
        position: absolute;
        right: 0;
        top: 0;
        font-size: 40px;
    }

    .topnav.responsive a {
        float: none;
        display: block;
        text-align: left;
        font-size: 35px;
    }

    .topnav.responsive .dropdown {
        float: none;
    }

    .topnav.responsive .dropdown-content {
        position: relative;
    }

    .topnav.responsive .dropdown .dropbtn {
        display: block;
        width: 100%;
        text-align: left;
    }

    .avatar {
        height: 18%;
    }

    .footer.responsive p {
        font-size: 40px;
    }
}


/****** TITLE FLIP *******/
.waviy {
    position: relative;
    white-space: nowrap;
}

.waviy span {
    position: relative;
    display: inline-block;
    font-size: 40px;
    color: #fff;
    text-transform: uppercase;
    animation: flip 2s infinite;
    animation-delay: calc(.2s * var(--i));
    justify-content: center;
    align-content: center;
}

@keyframes flip {

    0%,
    80% {
        transform: rotateY(360deg)
    }
}


/****====== Min width 600 ======****/

@media (min-width: 600px) {
    span.wavily {
        font-size: 20px;
    }
}

/*
    .topnav,
    .dropdown {
        font-size: 25px;
    }
} */