/*
 * ==============================
 * Globals
 * ==============================
 */
@font-face {
    font-family: Sukhumvit;
    src: url('../fonts/sukhumvit.ttf');
}
body {
    font-family: Sukhumvit, serif;
    background: linear-gradient(to bottom, black, #290101);
    background-attachment: fixed;
}

:root {
    --header-height: 90px;
    --offcanvas-menu-active-color: #fff;
    --offcanvas-menu-active-bg: #2a5fd4;
    --footer-height: 320px
}
.movie-cards-container {
    width: 100%;
    height: auto;
    display: flex;
    justify-content: space-evenly;
    flex-wrap: wrap;
}
/*
 * ==============================
 * Scrollbar
 * ==============================
 */
*::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}
*::-webkit-scrollbar-track {
    background: #333333;
}
*::-webkit-scrollbar-thumb {
    background-color: #8b8b8b;
    border-radius: 4px;
    border: 0;
}

/*
 * ==============================
 * Top Navbar
 * ==============================
 */
header {
    width: 100%;
    height: 90px;
    background: rgba(0, 0, 0, .6);
    display: flex;
    justify-content: left;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    border: 1px solid #610000;
    border-width: 0 0 2px 0;
    min-width: 1210px;
}
.header-logo {
    width: 250px;
    height: 70px;
    margin: 10px;
}
.header-nav {
    width: 100%;
    height: 90px;
    display: flex;
    justify-content: space-between;
}
.header-nav ul {
    list-style-type: none;
    padding: 0;
    margin: 20px
}
.header-nav ul li {
    height: 48px;
    line-height: 2.3em;
    font-size: 22px;
    display: inline-block;
    padding: 0 15px;
}
.header-nav ul li a {
    text-decoration: none;
    color: #fff;
}
.header-search-btn {
    width: 48px;
    height: 48px;
    margin: 21px;
    background: #910000;
    border-radius: 8px;
    padding: 10px;
    cursor: pointer;
}
.header-search-btn:hover {
    background: #ee0000;
}
.offcanvas-category-ul {
    list-style-type: none;
}
.offcanvas-category-ul li {
    display: inline-block;
    width: 100%;
    height: 40px;
    margin: 0;

}
.offcanvas-category-ul li a {
    display: inline-block;
    color: #fff;
    text-decoration: none;
    width: 100%;
    height: 100%;
    line-height: 2.6em;
    border-radius: 8px;
    padding: 0 10px;
}
.offcanvas-category-ul li a:hover {
    background: #1c0000;
}
.offcanvas-bg {
    background: linear-gradient(to top, black, #331b1b);
    background-attachment: fixed;
}

/*
 * ==============================
 * Body
 * ==============================
 */
main {
    margin-top: 90px;
    width: 100%;
    min-height: calc((100vh - var(--header-height)) - var(--footer-height));
    display: flex;
    justify-content: start;
    padding: 20px 0;
    flex-wrap: wrap;
    align-items: center;
    flex-direction: column;
}
main>h1 {
    display: block;
    text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
.content-container {
    width: 1210px;
    height: auto;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

/*
 * ==============================
 * Footer area
 * ==============================
 */
footer {
    width: 100%;
    height: var(--footer-height);
    background: rgba(0, 0, 0, .4);
    display: flex;
    justify-content: center;
}
.footer-inner {
    width: 1200px;
    display: flex;
    justify-content: space-around;
}
.footer-left-section {
    width: 490px;
    height: 320px;
    text-align: center;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.footer-right-section {
    width: 685px;
    height: 320px;
    text-align: center;
    padding: 20px;
    border: 2px dashed #242222;
    border-width: 0 0 0 2px;
    display: flex;
    align-items: center;
}
.footer-category {
    width: 100%;
    list-style-type: none;
}
.footer-category li {
    display: inline-block;
    margin: 12px;
}
.footer-category li a {
    padding: 8px;
    background: #282828;
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
}

.footer-category li a:hover {
    text-decoration: none;
    background: #000;
}
