@import 'fonts.css';

:root {
    --font_c: 'Comfortaa';
    --font_M: 'Montserrat';
    --font_R: 'Roboto';
    --text: #fff;
    --body: #040D1F;
    --linkHover: #ED8E00;
    --btn: #F18128;
    --btnHover: #040D1F;
    --title: #F18128;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*::-webkit-scrollbar {
    width: 5px;
}
*::-webkit-scrollbar-thumb {
    background: var(--btn);
    border-radius: 10px;
}

body {
    background: var(--body);
    font-family: var(--font_c);
}
a {
    text-decoration: none;
}

ul {
    list-style: none;
}
.container {
    max-width: 1140px;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
    
}
.btn {
    max-width: 166px;
    width: 100%;
    border-radius: 4px;
    background: var(--btn);
    text-align: center;
    padding: 17px 0;
    font-size: 14px;
    font-family: var(--font_R);
    font-weight: 500;
    color: black;
    display: inline-block;
    transition: 400ms;
}
.btn:hover {
    background: var(--btnHover);
    color: var(--text);
}
.text-limited {
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
}
.text-limited:active {
    -webkit-line-clamp: unset;
}
.title {
    color: var(--title);
    font-size: 36px;
    margin-bottom: 50px;
    text-transform: capitalize;
    border-bottom: 2px solid var(--title);
    width: max-content;
}

/* ads start */

.ads {
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(90.09deg, #3800AF 0%, #BF7204 97.52%, #C27500 100%, #C27500 100%);
    color: var(--text);
    padding: 20px 0;
}
.ads__txt {
    width: 166px;
    margin-left: 24px;
}
/* ads end */

/* nav start */
.nav {
    background: rgba(1, 3, 5, 0.8);
    position: sticky;
    top: 0;
    z-index: 99;
    backdrop-filter: blur(15px);
}
.nav__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.nav__logo {
    color: var(--text);
}
.nav__list {
    display: flex;
}
.nav__link {
    color: var(--text);
    font-size: 14px;
    font-family: var(--font_M);
    margin-left: 24px;
    padding: 42px 6px;
    display: flex;
    justify-content: center;
    position: relative;
    transition: .5s;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: 0;
    width: 0;
    height: 2px;
    background: var(--linkHover);
    transition: .5s;
}
.nav__link:hover {
    color: var(--linkHover);
}
.nav__link:hover::after {
    width: 100%;
}
.nav__logo {
    font-size: 18px;
    color: var(--text);
}
.nav__logo-img {
    margin-right: 5px;
}
/* nav end */



/* header start */
.header {
    min-height: 80vh;
    position: relative;
    display: flex;
}
.header__banner {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.header__content {
  position: absolute;
  width: 100%;
  height: 100%;
    background: rgba(7, 15, 25, 0.75);
    /* flex-grow: 1; */
    display: flex;
    align-items: center;
}
.header__title {
    color: var(--text);
    font-size: 64px;
    font-family: var(--font_M);
    margin-bottom: 30px;
}
.header__txt {
    color: #C8C8C8;
    line-height: 24px;
    text-align: justify;
    margin-bottom: 50px;
    max-width: 570px;
    width: 100%;
    -webkit-line-clamp: 3;
}
.header__btn:first-of-type {
    margin-right: 30px;
}
.header__txt:active {
    -webkit-line-clamp: unset;
}

/* header end */

/* films start */
.films {
    padding: 60px 0;
}
.films__cards {
    display: flex;
    justify-content: space-between;
}
.films__banner {
   position: absolute;
   width: 100%;
   height: 100%;
   object-fit: cover;
}
.films__card:hover .films__content-icon {
    transform: scale(1.5) translateY(40%);
}
.films__card:hover .films__time {
    transform: scale(0);
}
.films__card {
    max-width: 255px;
    width: 100%;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    transition: .5s;
}
.films__content {
    color: var(--text);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    font-family: var(--font_M);
    background:  linear-gradient(180deg, rgba(241, 129, 40, 0.35) 0%, rgba(0, 0, 0, 0.71) 51.04%, rgba(7, 15, 25, 0.8) 100%);
    padding: 54px 14px 18px;
    height: 100%;
}
.films__content-icon {
    margin-bottom: 12px;
    transition: .5s;
}
.films__time {
    background: rgba(7, 15, 25, 0.2);
    border: 1px solid var(--text);
    border-radius: 9px;
    padding: 7px 0;
    width: 100px;
    font-size: 14px;
    line-height: 10px;
    text-align: center;
    margin-bottom: 30px;
    transform: scale(1);
    transition: .5s;
}
.films__time:hover {
    transform: scale(0);
}
.films__content-title {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
    text-align: center;
}
.films__content-txt {
    font-size: 14px;
    line-height: 24px;
    font-family: var(--font_R);
    -webkit-line-clamp: 5;
}
.films__content-txt:active {
    -webkit-line-clamp: unset;
}

.boots{
    display: flex;
}
/* films end */

/* premier start */
.premier {
    position: relative;
    overflow: hidden;
}
.premier__video {
    position: absolute;
    z-index: -1;
    right: 0;
}
.premier__content {
    background: linear-gradient(90deg, #DEF7FF 0%, #F4FCFF 55%, rgba(255, 255, 255, 0) 100.72%);
    padding: 42px 0 80px;
}
.premier__content-txt {
    max-width: 558px;
    width: 100%;
    text-align: justify;
    font-size: 18px;
    line-height: 27px;
    font-family: var(--font_R);
    margin: 50px 0 55px;
}
/* premier end */
/* collection start */

.collection {
    padding: 60px 0;
}
.collection__cards {
    display: flex;
    column-gap: 30px;
}
.collection__card {
    max-width: 350px;
    width: 100%;
    position: relative;
    min-height: 195px;
    display: flex;
    border-radius: 6px;
    overflow: hidden;
    transition: 500ms;
}
.collection__card::before {
    content: url(../img/collections/line.png);
    position: absolute;
    top: 50%;
    left: 2%;
    z-index: 1;
    transform: translateY(-50%);
    transition: 500ms;
}
.collection__card::after {
    content: url(../img/collections/line.png);
    position: absolute;
    top: 50%;
    right: 2%;
    z-index: 1;
    transform: translateY(-50%);
    transition: 500ms;
}
.collection__banner {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.collection__content {
    background: linear-gradient(270deg, rgba(7, 15, 25, 0.56) 0%, rgba(49, 114, 9, 0.56) 100%);
    color: #fff;
    position: relative;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.collection__content-title {
    font-size: 20px;
    transition: .5s;
}
.collection__content-icon {
    margin-bottom: 15px;
    transition: 500ms;
}
.collection__card:hover .collection__content-title{
    transform: scale(0);
}
.collection__card:hover .collection__content-icon {
    transform: scale(1.5) translateY(30%);
}
.collection__card:hover:after {
    transform:scale(2) translateY(100%);
}
.collection__card:hover::before {
    transform:scale(2) translateY(-140%);
}


/* series start */

.series {
    padding-bottom: 60px;
}
.series__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 30px;
}
.series__item {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    min-height: 190px;
    display: flex;
}
.series__item:hover .series__banner {
    transform: scale(1.5);
} 
.series__banner {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .5s;
}
.series__content {
    color: var(--text);
    position: relative;
    background:  linear-gradient(95.68deg, rgba(35, 35, 35, 0.8) 10.86%, rgba(11, 11, 11, 0.6) 110.86%);
    text-align: center;
    padding: 0 22px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}
.series__content-title {
    font-size: 40px;
    margin-bottom: 30px;
}
.series__content-txt {
    line-height: 24px;
    margin-bottom: 30px;
    -webkit-line-clamp: 4;
}
h4.series__content-title {
    font-size: 24px;
    margin: 20px 0 0;
}
.series__item:first-of-type {
    grid-column: 4 span;
    grid-row: 2 span;
}
.series__item:nth-of-type(2) {
    grid-column: 2 span;
    grid-row: 2 span;
}
/* series end */

/* footer start */
.footer {
    background:  linear-gradient(90deg, #FF8C30 0%, #9F4700 100%);
    padding: 20px 0;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.8);
}
.footer__container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}
.footer__apps {
    display: flex;
    column-gap: 50px;
}
.footer__txt {
    color: var(--text);
    font-size: 18px;
    font-weight: 700;
}



/* footer end */


/* ----------------------------Media------------------------------ */

