
/**General**/
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
:root {
    --primaryColor: #121212; 
    --secondaryColor: #A4303F; 
}
body {
    font-family: 'Bebas Neue', cursive;
    background-color: var(--primaryColor);
}
.sectionP {
    padding: 150px 0;
}

h2 {
    font-size: 64px;
    color: white;
}

iframe {
    box-shadow: 1px 1px 20px 17px rgba(0,0,0,0.3);
    transition: 0.3s;
}

iframe:hover {
    box-shadow: none;
    transition: 0.3s;
}



@media screen and (max-width:992px) {
    .sectionP {
        padding: 100px 0;
    }

}
#home {
    height: 100vh;
}


#home video {
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    object-fit: cover;
    z-index: -1;
}


/*Navigation**/
@media screen and (min-width:992px) {
    .navbar {
        transition: all 0.6s;
        backdrop-filter: blur(100px);
        height: 150px;
        background-color: var(--primaryColor);
    }

    .navbar-shrink {
        background: rgba(0,0,0,0.5);
        transition: all 0.6s;
        box-shadow: 0px 5px 15px rgb(0 0 0 / 10%);
        height: 100px;
    }

}

.navbar img {
    width: 350px;
    transition: all 0.6s;
}


.navbar-shrink img {
    width: 200px;
    transition: all 0.6s;
}

.navbar a {
    color: white;
    margin: 0 10px;
    font-size: 18px;
    letter-spacing: 2px;
    transition: all 0.6s;
}

.navbar a:hover, #mainNav .nav-link.active{
    color: var(--secondaryColor);
    transition: all 0.6s;
}

.navbar-toggler {
    color: white;
}

@media screen and (max-width:992px) {
        .navbar {
            background: rgba(0,0,0,0.3);
        }
        .navbar-shrink {
            background: rgba(0,0,0,0.6);
            backdrop-filter: blur(100px);
        }
    
        .navbar a {
            margin: 10px 0;
            font-size: 18px;
        }
        .navbar img {
            width: 200px;
        }
    
        .navbar-shrink img {
            padding: 0px;
            width: 125px;
        }
    
        :not(:last-child).nav-item {
            border-bottom: solid 0.5px rgba(255, 255, 255, 0.2);
            padding: 5px 0;
        }
}



/**VIDEOS**/
.video-container {
    position: relative;
    padding-bottom: 56.25%;
}

.video-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#videos h3 {
    color: white;
    margin: 50px 0 10px 0;
    text-shadow: 6px 6px 20px black;
}


/**STREAN**/
#stream iframe {
    border-radius: 0 !important;
    width: 100%;
}


/**FOOTER**/
footer {
    background-color: black;
    color: white;
}

footer img {
    width: 250px;
}

.iconBox {
    font-size: 32px;
    transition: 0.3s;
}
.iconBox a {
    color: white;
}
.iconBox:hover {
    transform: scale(1.2);
    transition: 0.3s;
}
.iconBox .bi-spotify {
    color: #1DB954;
}
.iconBox .bi-youtube {
    color: #FF0000;
}
.iconBox .bi-instagram {
    color: #d6249f;
}



/**CopyRight**/
#copyRight {
    background: black;
    color: white;
    letter-spacing: 2px;
}
    #copyRight a {
    color: var(--secondaryColor);
    text-decoration: none;
}


@media screen and (max-width:992px) {
    #copyRight   {
        font-size: 14px;
    }
}


/**Background**/
#hero {
    margin-top: 150px;
    background: url("../nuniko-media/nuniko-header.jpg") center;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
    height: calc(100vh - 150px);
}
@media screen and (max-width:992px) {
    #hero {
        background: url("../nuniko-media/nuniko-header-mobile.jpg") center;
        background-size: cover;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100vh;
        margin-top: 0;
    }
}

#videos {
    background: url('../nuniko-media/nuniko-bg-1.jpg');    
    background-position: center;
    background-size: cover;
}

#stream {
    background: url('../nuniko-media/nuniko-bg-2.jpg');    
    background-position: center;
    background-size: cover;
}

/*scrollDown*/
#scrollDown {
    left: 50%;
    transform: translate(-50%, -50%);
    text-decoration: none;
    animation: top-to-down 1s ease-in infinite;
}

@keyframes top-to-down {
    0% {
        bottom: 3vh;
        opacity: 0.1;
    }

    50% {
        opacity: 1;
    }

    100% {
        bottom: 0vh;
        opacity: 0.1;
    }
}