.navbar {
    transition: all 0.3s ease;
    padding: 5px 0;
}

.navbar .navbar-brand img {
    transition: all 0.3s ease;
    height: 65px;
    width: auto;
}

.navbar.fixed-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1030;
    background-color: white;
    color: orange;
    box-shadow: 0 2px 4px rgba(0,0,0,.1);
    animation: slideDown 0.3s ease-out;
    padding: 8px 0;
}
.fixed-nav .nav-link{
    color: orange;
       margin-top: 2px;
    margin-bottom: 2px;
}
 
.fixed-nav .navbar-brand, .navbar-brand:hover{
    color: var(--primary-color)
}

.navbar.fixed-nav .navbar-brand img {
    height: 40px;
    width: auto;
}

@keyframes slideDown {
    from {
        transform: translateY(-100%);
    }
    to {
        transform: translateY(0);
    }
}

/* Add padding to body when navbar is fixed */
body.has-fixed-nav {
    padding-top: 70px;
}
