/* ---------------------------------------------------------------------- 
    Navigation Bar Styles 
------------------------------------------------------------------------- */

/* Styles for the navbar container */
.navbar-container {
    background-color: transparent;
    padding-top: 0 !important;
    box-sizing: border-box;
    z-index: 1000;
    position: absolute;
    width: 100%;
}

/* Style for the logo link in navbar */
.logo-link > img {
    max-width: 80px;
    max-height: 40px;
}

/* Styles for the navbar button icon to override Bootstrap */
.navbar-toggler {
    background-color: #eed6c280;
}

/* Styles for the navbar dropdown items */
#navbarNav > ul {
    display: flex;
    text-align: right;
    align-items: end;
}

#navbarNav > ul a {
    color: var(--color-accent-peach); /* Using a variable for consistency */
    text-transform: uppercase;
    padding-right: 0.3em;
    font-size: 10px;
}

.navbar-nav .nav-item.active .nav-link {
    color: #ffbd66 !important;
    text-decoration: underline;
    font-size: 18px;
    font-weight: bold; /* Optional: make the font bold */
}

.sign-up a {
    color: #fff;
}

#navbarNav > ul > button {
    padding-bottom: 100px;
}

/* ------------------------------------- Medium devices such as tablets (768px and up) ---------------------------------------*/
@media screen and (min-width: 768px) {

    .logo-link>img {
        max-height: 110px;
        max-width: 110px;
        padding-top: 5px;
    }

    .active {
        background-color: rgba(95, 95, 95, 0.2);
        border-radius: 10px;
    }
    
    #navbarNav .navbar-nav {
        display: flex !important;
        justify-content: flex-end !important;
        align-items: center !important;       
    }

    #navbarNav .navbar-nav .nav-link {
        font-size: 1.5em !important;
        text-align: right !important;
    }
}