@import url('https://fonts.googleapis.com/css2?family=Comfortaa:wght@300;400;500;700&display=swap');

html {
    background-color: #111111;
    margin: 0;
    padding: 0;
}

body {
    margin: 0;
}

.body-loading{
    overflow: hidden;
}

/* Loader */
.loader{
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #111111;
    z-index: 1;
    transition: opacity 0.5s, visibility 0.5s;
}

.loader--hidden{
    opacity: 0;
    visibility: hidden;
}

.loader::after{
    content: "";
    width: 50px;
    height: 50px;
    border: 10px solid #4A76B6;
    border-top-color: #00000000;
    border-radius: 50%;
    animation: loading 0.75s ease infinite;
}

@keyframes loading {
    from {transform: rotate(0turn);}
    to {transform: rotate(1turn);}
}

nav {
    background-color: black;
    padding: 10px 2%;
    margin: 0;
}

.nav-loading{
    position: relative;
    z-index: 2;
}

.m-nav{
    display: none;
}

.logo {
    vertical-align: middle;
    margin-right: 15px;
}

.item {
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
    font-weight: 500;
    font-size: 18px;
    color: white;
    padding: 10px 15px;
    margin: 0 5px;
    margin-top: 5px;
}

.item:hover {
    color: #4A76B6;
    transition: 200ms;
}

#logout {
    border-radius: 5px;
    background-image: linear-gradient(to bottom left, #4A76B6, #262D4B);
    color: white;
    border: none;
    cursor: pointer;
}

#logout:hover{
    color: #262D4B;
}

/* Underline */
.item {
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    position: relative;
    overflow: hidden;
}

.item:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #4A76B6;
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.2s;
    transition-duration: 0.2s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
}

.item:hover:before,
.item:focus:before,
.item:active:before {
    left: 0;
    right: 0;
}

/* Clear Formating */
h1, h2, h3{
    margin: 0;
}

/* Main */
main {
    height: 500px;
    width: 100%;
    background-color: #111111;
    /* background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.5) 25%, #111111 100%), url(/assets/images/shows/texas25); */
    background-position: top center;
    background-repeat: no-repeat;
    background-size: 100% auto;
}

/* Hero Show */

.hero-tile{
    padding-top: 290px;
    margin: 0 30% 0 10%;
    color: white;
    font-family: 'Comfortaa', sans-serif;
}

h1{
    font-size: 48px;
    margin-bottom: 10px;
}

h2{
    font-size: 24px;
    margin-bottom: 10px;
    font-weight: 200;
}

p{
    font-size: 18px;
    margin-bottom: 20px;
}

.show-text{
    font-size: 18px;
    margin-top: 5px;
    margin-bottom: 50px;
    font-family: 'Comfortaa', sans-serif;
    margin-right: 50%;
}

.options{
    margin-top: 40px;
}

.watch-now{
    color: white;
    text-decoration: none;
    padding: 15px;
    background-color: #4A76B6;
    font-size: 18px;
    border-radius: 5px;
    transition: 200ms;
    font-family: 'Comfortaa', sans-serif;
}

.watch-now:hover{
    background-color: #262D4B;
}


/* Show List */

.show-list{
    margin: 50px 10%;
    color: white;
}

.co-title{
    margin: 0 10%;
    color: white;
}

.swiper h3{
    margin-left: 10%;
    margin-bottom: 20px;
}

h3{
    font-family: 'Comfortaa', sans-serif;
    font-size: 32px;
}

.home-container{
    margin-top: 20px;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
    width: 100%;
}

.allshows-container{
    margin-top: 20px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    width: 100%;
    flex-wrap: wrap;
}

.show-img{
    width: 101%;
    height: 100%;
    margin: 0;
    padding: 0;
    transform: scale(1.05);
}

.show-box{
    height: 100%;
    width: 100%;
    max-width: 300px;
    border-radius: 10px;
    overflow: hidden;
    transition: 500ms;
    transition-delay: 200ms;
    margin-right: 2%;
    z-index: 0;
    margin-bottom: 20px;
    position: relative;
}

.swiper-wrapper .show-box{
    margin: 0;
}

.show-box:hover{
    transform: scale(1.61);
    z-index: 1;
}

/* .hover-state{
    display: none;
    height: 100%;
    width: 100%;
}

.show-box:hover .hover-state{
    display: inline-block;
}

.show-box:hover .before-state{
    display: none;
} */

.live-box{
    position: absolute;
    bottom: 18px;
    right: 18px;
    font-size: 14px;
    font-family: 'Comfortaa', helvetica, sans-serif;
    font-weight: 700;
    background-color: red;
    color: white !important;
    padding: 6px;
    border-radius: 5px;
    letter-spacing: 0.3px;
}

.info-box{
    position: absolute;
    bottom: 18px;
    right: 18px;
    font-size: 14px;
    font-family: 'Comfortaa', helvetica, sans-serif;
    font-weight: 700;
    background-color: #0B888F;
    color: white !important;
    padding: 6px;
    border-radius: 5px;
    letter-spacing: 0.3px;
}

.hero-box{
    display: inline-block;
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'Comfortaa', helvetica, sans-serif;
    font-weight: 700;
    background-color: #0B888F;
    color: white !important;
    padding: 6px;
    border-radius: 5px;
    letter-spacing: 0.3px;
}

.multi-hero-box{
    margin-bottom: 10px;
    font-size: 14px;
    font-family: 'Comfortaa', helvetica, sans-serif;
    font-weight: 700;
    color: white !important;
    padding: 0;
    border-radius: 5px;
    letter-spacing: 0.3px;
    display: inline-flex;
    overflow: hidden;
}

.blue-box{
    background-color: #4A76B6;
    color: white;
}

.white-box{
    background-color: white;
    color: #4A76B6;
}

.black-box{
    background-color: rgba(0, 0, 0, 0.3);
    color: white;
    border: 0.1px rgba(255, 255, 255, 0.3) solid;
}

.red-box{
    background-color: red;
}

.multi-box{
    display: flex;
    padding: 0;
    overflow: hidden;
}

.multi-info{
    padding: 5px;
}

.box-fade{
    transition: 200ms;
    transition-delay: 200ms;
}

.show-box:hover .box-fade {
    opacity: 0;
}





/* Footer */
footer{
    margin-top: 145px;
}

.top-footer{
    background-image: linear-gradient(to bottom left, #4A76B6, #262D4B);
    padding: 15px 10%;
}

.footer-logo{
    width: 50px;
    vertical-align: middle;
}

.footer-text{
    color: white;
    text-decoration: none;
    font-family: 'Comfortaa', sans-serif;
    font-size: 16px;
    margin-top: 15px;
    vertical-align: middle;
    float: right;
}

.bottom-footer {
    color: white;
    font-family: 'Comfortaa', sans-serif;
    font-size: 16px;
    padding: 50px 10%;
    padding-bottom: 25px;
    background: linear-gradient(to top left, #212f46, rgba(255, 153, 150, 0), #161616), linear-gradient(to top right, #1f1f3a, #111111, #141414);
}

.footer-wrapper{
    display: flex;
    gap: 10%;
    flex-wrap: nowrap;
}

.footer-version-text {
    text-decoration: none;
    color: #5f5f5f;
    text-align: center;
    display: block;
    margin-top: 100px;
    font-size: 12px;
}

.footer-list-item{
    margin-top: 10px;
    display: block;
    text-decoration: none;
    color: white;
}

.footer-list-title{
    color: #5f5f5f;
}

.m-footer{
    display: none;
}

.footer-list-item:hover{
    color: #4A76B6;
    transition: 200ms;
}


@media only screen and (max-width: 1350px) {

/* .footer-wrapper{
    flex-wrap: wrap;
} */

}

/* Event Message */
.event-msg{
    background-color: #262D4B;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 10%;
}

.event-txt{
    color: white;
    margin-left: 20px;
    margin-right: 20px;
}

.event-btn{
    text-decoration: none;
    color: white;
    border: 2px solid white;
    padding: 12px 10px;
    border-radius: 7px;
    font-family: 'Comfortaa', sans-serif;
    vertical-align: middle;
    transition: 300ms;
}

.event-btn:hover{
    color: #262D4B;
    background-color: white;
}

.summer{
    background-color: #FFB76C;
}

.summer:hover{
    background-color: #26CCC2;
}

/* Mobile Version */

@media only screen and (max-width: 1000px) {
    #icon{
        /* float: right; */
        text-decoration: none;
        color: white;
        font-size: 24px;
    }

    #m-logout {
        border-radius: 6px;
        background-image: linear-gradient(to bottom left, #4A76B6, #262D4B);
        color: white;
        border: none;
    }

    nav{
        display: none;
    }

    .m-nav{
        display: block;
        padding: 10px 4%;
        margin: 0;
        background-color: black;
    }

    .m-item{
        text-decoration: none;
        font-family: 'Comfortaa', sans-serif;
        font-weight: 500;
        font-size: 18px;
        color: white;
        /* background-color: #4A76B6; */
        padding: 10px 15px;
        display: block;
        margin-top: 10px;
        -webkit-transform: perspective(1px) translateZ(0);
        transform: perspective(1px) translateZ(0);
        box-shadow: 0 0 1px rgba(0, 0, 0, 0);
        position: relative;
        overflow: hidden;
    }

    .m-item:before {
        content: "";
        position: absolute;
        z-index: -1;
        left: 51%;
        right: 51%;
        bottom: 0;
        background: #4A76B6;
        height: 2px;
        -webkit-transition-property: left, right;
        transition-property: left, right;
        -webkit-transition-duration: 0.2s;
        transition-duration: 0.2s;
        -webkit-transition-timing-function: ease-out;
        transition-timing-function: ease-out;
    }
    
    .m-item:hover:before,
    .m-item:focus:before,
    .m-item:active:before {
        left: 0;
        right: 0;
    }

    .menu-closed{
        display: none;
    }

    /* Footer */

    footer{
        display: none;
    }

    
    
    .footer-logo{
        width: 50px;
        margin-bottom: 30px;
    }
    

    .m-footer{
        display: flex;
        background-image: linear-gradient(to bottom left, #4A76B6, #262D4B);
        justify-content: center;
        text-align: center;
        padding: 30px 5%;
        margin-top: 125px;
    }

    .m-footer-text{
        display: block;
        text-decoration: none;
        color: white;
        font-family: 'Comfortaa', sans-serif;
        font-size: 16px;
        margin-top: 75px;
    }

    .m-footer-item{
        display: block;
        color: white;
        text-decoration: none;
        font-family: 'Comfortaa', sans-serif;
        margin: 20px 0;
    }

    .footer-list-title{
        font-family: 'Comfortaa', sans-serif;
        color: white;
        font-size: 14px;
    }
    
    .m-footer-social-item {
        color: white;
        font-size: 24px;
        text-decoration: none;
    }

    .m-footer-socials{
        margin-bottom: 30px;
    }

    .m-footer-version{
    color: #5f5f5f;
    text-align: center;
    font-family: 'Comfortaa', sans-serif;
    display: block;
    margin-top: 10px;
    font-size: 12px;
    }
    
    .home-container{
        flex-wrap: wrap;
    }

    .show-box{
        max-width: 300px;
    }


}
@media only screen and (max-width: 825px) {
    main{
        height: 250px;
    }
}

@media only screen and (max-width: 780px) {
    .show-box{
        max-width: 250px;
    }
}

@media only screen and (max-width: 650px) {
    .show-box{
        max-width: 200px;
    }
}
@media only screen and (max-width: 520px) {
    .show-box{
        max-width: 175px;
    }
}

@media only screen and (max-width: 500px) {
    /* Hero Show */

    .hero-tile{
        padding-top: 180px;
        margin: 0 30% 0 5%;
    }

    h1{
        font-size: 32px;
        margin-bottom: 10px;
    }

    h2{
        font-size: 18px;
        margin-bottom: 10px;
        font-weight: 200;
    }

    .hero-p{
        display: none;
    }

    .options{
        margin-top: 20px;
    }

    .watch-now{
        padding: 10px;
        font-size: 14px;
    }

    .watch-now:hover{
        background-color: #262D4B;
    }

    .show-text{
        margin-right: 0;
    }

    /* Show List */

    .show-list{
        margin: 50px 5%;
    }

    h3{
        font-family: 'Comfortaa', sans-serif;
        font-size: 24px;
    }

    .home-container{
        flex-wrap: wrap;
    }

    .container{
        /* margin-top: 20px; */
        /* margin-bottom: 20px; */
        display: flex;
        justify-content: center;
        width: 100%;
        flex-wrap: wrap;
    }

    .show-box{
        width: 150px;
        /* transform: scale(1.08); */
    }

    .show-img{
        transform: scale(110%);
    }
    
}

