/* .navbar-brand > img{
    max-width: 150px;
}

.bg-dark{
    background-color: #181818 !important;
} */
.navbar-fixed{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
}
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    background-color: #181818;
    color: white;
    gap: 2rem;
    
}

.logo img{
    width: 150px;
}


.lg-screen-nav{
    display: flex;
    flex-direction: column;
}

/* navbar top */
.navbar-top {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.stats-container{
    display: flex;
    /*flex-direction: column;*/
    align-items: center;
    gap: 16px;
    font-family: 'Montserrat';
}

.stats-container >span{
    font-size: 16px;
    font-weight: 500;
}

.mobile-screen-nav .stats-container {
    flex-direction: column !important;
}

.navbar-top .social-links {
    color: white;
    text-decoration: none;
}

.hamburger-menu {
    display: none;
}



.close-icon {
    width: 30px;
    height: 30px;
    cursor: pointer;
    align-self: flex-end;
}

.close-icon > img{
    width: 100%;
}

.social-links > img{
    width: 20px;
    height: 20px;
}

.btn{
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.6;
    transition: all 250ms ease-in;
}

.btn.btn-white{
    background-color: #fff;
    color: #181818;
}

.btn.btn-white:hover{
    background-color: #f3f3f3;
}

.btn.btn-green{
    background-color: lightgreen;
    color: #181818;
}
.btn.btn-green:hover{
    background-color: rgb(118, 238, 118);
}
.btn.btn-blue{
    background-color: #87CEEB;
    color: #181818;
}
.btn.btn-pink{
    background-color: #FF649D;
    color: #181818;
}
.btn.btn-pink:hover{
    background-color: rgb(192, 72, 123);
}
.btn.btn-blue:hover{
    background-color: rgb(128, 201, 228);
}
.btn.btn-yellow{
    background-color: goldenrod;
    color: #181818;
}
.btn.btn-yellow:hover{
    background-color: rgb(219, 159, 7);
}

.navbar-top > span{
    font-size: 14px;
    font-weight: 400;
}
.text-green{
    color: #37dd5e;
}

.text-white{
    color: #fff
}

/* navbar bottom */
.nav-list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 16px;
}

.nav-item{
    padding: 10px;
}


.nav-link{
    font-size: 16px;
}

.offcanvas-menu{
    display: none;
}

/* navbar dropdown */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropbtn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.dropbtn > span {
    color: #fff;
}


.dropdown-content {
    display: none;
    position: absolute;
    background-color: #212121;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 4px;
}


.dropdown-content.last{
    right: 0;
}


.dropdown-content a {
    color: #f9f9f9;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    font-size: 14px;
}

.dropdown-content a:hover {
    background-color: #303030;
}

/* Show dropdown on hover */
.dropdown:hover .dropdown-content {
    display: block;
}


@media (max-width: 1100px){
    .stats-container {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        row-gap: 8px;
        column-gap: 16px;

    }
}

@media (max-width: 1024px){
    .hamburger-menu {
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        width: 40px;
        height: 40px;
    }
     .hamburger-menu > img{
        width: 100%;
        height: 100%;
        display: block;
     }

    .lg-screen-nav{
        display: none;
    }

    .offcanvas-menu{
        display: flex;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        height: 100%;
        min-width: 180px;
        background-color: #333;
        color: white;
        padding: 20px;
        transition: right 0.3s ease;
    }

    .mobile-screen-nav{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .nav-list{
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }


    .nav-item{
        padding: 4px 8px;
    }

    .dropdown-content.last{
        left: 0;
    }

    .btns-container{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .mobile-nav-bottom{
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .social-links > img{
        width: 30px;
        height: 30px;
    }

    .stats-container{
        grid-template-columns: 1fr;
        align-items: center;
        justify-items: center;
    }

    .stats-container > span{
        font-size: 16px;
    }

    .social-links-container{
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
    }
    .btns-container > .btn{
        flex: 1;
        width: 100%;
        text-align: center;
    }
}