@import url('../fonts/gliker/stylesheet.css');

.navbar {
    background-color: #E34689 !important;
    position: fixed;
    width:100%;
    z-index: 100;

    .navbar-brand{
        filter: drop-shadow(2px 2px 5px rgb(66, 66, 66));
        transition: all 200ms !important;

        &:hover {
            filter: drop-shadow(0px 0px 5px #FFAF17);
        }
    }
    
    a.nav-link {
        color: #FFCD2D !important;
        /*text-shadow: 0px 0px 5px black;*/
        font-family: "Carme" !important;
        font-weight: bold !important;
        font-size: 1em;
        margin-left: .3em;
        transition: all 200ms !important;

        &:hover {
            background-color: transparent;
            color: #fff7de !important;
            text-shadow: 0px 0px 5px #fd0bb4;
        }
    }

    a.active {
        color: #fff7de !important;
        text-shadow: 0px 0px 5px #fd0bb4;
    }
}

.navbar-brand {
    font-family: 'gliker';
    font-weight: bold;
}

.admin-title {
    color: rgba(255, 255, 255, 0.733) !important;
    font-size: 1em !important;
    margin-left: -.5em !important;
    margin-right: .5em !important;
}

.btn-panel{
    border-radius: 10px !important;
    background-color: rgb(255, 196, 0) !important;
    color: rgb(0, 0, 0) !important;

    &:hover {
        background-color: rgb(252, 221, 122) !important;
    }

    &:active {
        box-shadow: 0px 0px 5px black inset;
    }
}

#auth-buttons{
    flex-direction: row !important; 
    gap: 5px !important;

    a, button {
        font-size: .9em !important;
    }

    #btn-logout{
        /* border-radius: 5px !important; */
        background-color: rgb(146, 0, 0) !important;
        color: white !important;
    
        &:hover {
            background-color: rgb(206, 0, 0) !important;
        }
    
        &:active {
            box-shadow: 0px 0px 5px black inset;
        }
    }

}

@media (max-width: 1380px){

    #auth-buttons{
        a, button {
            font-size: .9em !important;
            height: 5em !important;
        }

        .hide {
            display: none;
        }
    }
}


@media (max-width: 768px){

    #auth-buttons{
        flex-direction: column !important;
        gap: 10px;

        button, a {
            font-size: .9em !important;
            height: 2.5em !important;
        }

        a, .btn-group{
            width: 90% !important;

            button{
                width: 100% !important;
            }

            #btn-logout{
                border-radius: 7px !important;
                width: 100% !important;
                margin-right: 0rem !important;
            }
        }

    }

}
