/* font poppins */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Permanent+Marker&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
    list-style: none;
    text-decoration: none;
    scroll-behavior: smooth;
}

/* Veriables */
:root {
    --main-color: #a8b4c0;
    --text-color: #ddd;
    --bg-color: #111111;
    --second-color: #bd3005;
    --border-color: #8a8a8a8e;
}

/* Scroll Bar */
html::-webkit-scrollbar {
    width: 0.6rem;
    background-color: var(--bg-color);
}

html::-webkit-scrollbar-thumb {
    background: var(--second-color);
    border-radius: 1rem;
}

.orange {
    color: var(--second-color);
}

body {
    background: var(--bg-color);
    color: var(--text-color);
}

section {
    padding: 4rem 0 1.5rem;
}

.heading {
    margin-left: 5%;
    margin-right: 5%;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    background: #ffffff17;
    padding: 3px 0 3px 5px;
    border-radius: 10px;
}

/* Navbar Style */

header {
    position: fixed;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 80px;
    transition: 0.5s;
    z-index: 5;
}

header.shadow {
    background: var(--bg-color);
}

.logo {
    font-size: 1.2rem;
    color: var(--second-color);
    font-family: 'Permanent Marker', cursive;
    display: flex;
    align-items: center;
}

.menu-icon {
    display: none;
}

.navbar {
    display: flex;
    column-gap: 3rem;
}

.navbar-menu {
    display: flex;
    column-gap: 1rem;
}

.navbar-menu li {
    position: relative;
}

.navbar-menu li a {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-color);
}

.navbar-menu li a::after {
    content: "";
    width: 0;
    height: 2px;
    background: var(--second-color);
    position: absolute;
    bottom: 1px;
    left: 0;
    transition: 0.3s all linear;
}

.navbar-menu li a:hover::after,
.navbar-menu li .home-active::after {
    width: 100%;
}

.menu-bottom {
    position: fixed;
    bottom: 0;
    padding: 8px 0;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-around;
    width: 100%;
    left: 0;
    display: none;
}

.menu-bottom a {
    color: var(--main-color);
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 0.9rem;
}

.menu-bottom a i {
    margin-bottom: 5px;
    font-size: 18px
}

.btn {
    padding: 7px 15px;
    background-color: var(--second-color);
    color: var(--bg-color);
    border-radius: 10px;
    font-weight: 500;
}

.btn:hover {
    background: #c5502d;
}

/* Home Style */

.home {
    height: 100vh;
}

.container {
    width: 100%;
    min-height: 640px;
    position: relative;
    display: flex !important;
    align-items: center;
}

.container img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    z-index: -1;
}

.swiper-button-next,
.swiper-button-prev {
    color: var(--main-color) !important;
    background: var(--second-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 15px !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: var(--text-color) !important;
    opacity: 0.8 !important;
}

.swiper-pagination-bullet-active {
    background: var(--second-color) !important;
    width: 20px !important;
    border-radius: 10px !important;
}

.home-text {
    display: flex;
    flex-direction: column;
    margin-left: 10%;
    padding: 1rem;
    border-radius: 10px;
}

.home-text span {
    font-size: 3rem;
    text-shadow: 1px 2px 3px var(--text-color);
    font-weight: 600;
    text-transform: uppercase;
}

.home-text h2 {
    color: var(--second-color);
}

.home-text h3 {
    font-weight: 700;
    color: var(--second-color);
    margin-bottom: 5%;
}

.play i {
    background-color: var(--bg-color);
    border-radius: 100%;
    padding: 8px 10px;
    color: var(--second-color);
    border: 4px solid var(--border-color);
}

.play {
    color: var(--text-color);
    background: #111111;
    border-radius: 30px;
    padding: 8px 10px 8px 0px;
}

.play:hover,
.play:hover i {
    background-color: var(--text-color);
}

.play:hover {
    color: var(--bg-color);
    font-weight: 500;
}

/* Home Slider Container */
.slider-container {
    overflow: hidden;
    margin-left: 5%;
    margin-right: 5%;
    display: flex;
    column-gap: 1rem;
    margin-top: 2rem;
    position: relative;
}

.slider-container>* {
    flex: 0 0 180px;
}

.chevron-section {
    position: relative;
}

.chevron {
    display: flex;
    width: 60px;
    font-size: 60px;
    color: var(--second-color);
    position: absolute;
    top: 350px;
    opacity: .7;
    transition: 0.3s all linear;
    cursor: pointer;
}

.chevron-left {
    left: 40px;
}

.chevron-right {
    right: 40px;
}

.chevron:hover {
    opacity: 1;
}

/* Pages Style */
.pages-container {
    margin-left: 5%;
    margin-right: 5%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, auto));
    gap: 1rem;
    margin-top: 2rem;
}

.box {
    background: #ffffff17;
    border-radius: 10px;
}

.box .box-img {
    width: 100%;
    height: 270px;
}

.box .box-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.box:hover {
    transform: translateY(-10px);
    transition: 0.3s all linear;
    background: #ffffff28;
}

.box .box-info {
    padding: 10px;
}

.box h3 {
    font-size: 0.9rem;
    margin-top: 3px;
    font-weight: 600;
    color: var(--second-color);
    min-height: 60px;
}

.box span {
    font-size: 0.7rem;
    color: var(--main-color);
}

.box p {
    font-size: 0.7rem;
}

.box .kind {
    border: 1px solid var(--border-color);
    border-radius: 10px;
    padding: 2px 5px;
    width: max-content;
    margin: 3px 0;
}

.box .play2 {
    padding: 4px 5px 4px 0px;
    margin-top: 10px;
    font-size: 0.8rem;
    color: var(--text-color);
}

.box .play2:hover {
    background: var(--border-color);
    border-radius: 15px;
}

.box .play2 i {
    padding: 4px 6px;
    color: var(--second-color);
}

@media (max-width:1080px) {
    .home-text {
        padding: 0 100px;
    }
}

@media (max-width:700px) {
    header {
        padding: 15px 5px;
    }

    .navbar-menu {
        display: none;
    }

    .menu-bottom {
        display: flex;
        background-color: var(--bg-color);
    }

    .home-text span {
        font-size: 2rem;
    }

    .home-text h2 {
        font-size: 1.2rem;
    }

    .home-text h3 {
        font-weight: 700;
        font-size: 1rem;
        color: var(--second-color);
        margin-bottom: 5%;
    }
}

@media (max-width:417px) {
    .pages-container {
        margin-left: 5%;
        margin-right: 5%;
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(140px, auto));
        gap: 1rem;
        margin-top: 2rem;
    }

    .home-text span {
        font-size: 1.2rem;
        margin-bottom: 3px;
    }

    .home-text h2 {
        font-size: 0.7rem;
    }

    .home-text h3 {
        font-weight: 700;
        font-size: 0.7rem;
        color: var(--second-color);
        margin-bottom: 5%;
    }
}