.navbar .navbar-brand picture {
    display: flex;
    width: 150px;
}

@media (min-width: 991.98px) and (max-width: 1199.98px) {
    .navbar .navbar-brand picture {
        width: 140px;
    }
}

.navbar .nav-item a {
    color: var(--dark-color);
    font-weight: 600;
}

.navbar .nav-item a:hover,
.navbar .nav-item a.active {
    color: var(--primary-color);
}

/* Search Container */
.searchBarOpen {
    position: fixed;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    transition: all 0.3s ease-in-out;
    padding: 2rem;
    top: -120%;
    width: 100%;
    height: 100vh;
    display: flex;
}

.searchBarOpen.active {
    top: 0;
}

.searchBarOpen--input {
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    padding: .5rem;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.searchBarOpen--input input {
    padding: 0 .8rem !important;
    caret-color: #fff;
    border-radius: 50px;
    border: none;
    font-size: 1rem;
    background: transparent;
    border: 1px solid#fff;
    color: #fff;
    flex: 1;
    border: 0;
}

.searchBarOpen--input input:focus {
    border: 0;
    outline: unset;
}

.searchBarOpen--input input::placeholder {
    color: rgb(255 255 255 / 80%);
}

.searchBarOpen--input button {
    border-radius: 50px;
    align-self: flex-start;
    padding: 0.8rem 1.5rem;
    background: var(--primary-color);
    color: #fff;
    border: none;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s ease-in-out;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.searchBarOpen--input button:hover {
    background: #e0e0e0;
}

.searchBarOpen--input button:hover i {
    color: var(--primary-color) !important;
}

.searchBarOpen--closeBtn {
    position: absolute;
    top: 25px;
    right: 30px;
    font-size: 1rem;
    color: white;
    cursor: pointer;
    transition: transform 0.2s ease-in-out;
}

.searchBarOpen--closeBtn:hover {
    transform: scale(1.2);
}

.nav-tools,
.nav-tools a {
    color: var(--dark-color);
}

.desktop-nav,
.mobile-nav {
    display: none !important;
}

@media (min-width: 992px) {
    .desktop-nav {
        display: flex !important;
    }
}

@media (max-width: 991.98px) {
    .mobile-nav {
        display: flex !important;
        gap: 15px !important;
    }
}

.navbar-toggler {
    padding-inline-start: 15px;
}
.navbar-toggler:focus {
    box-shadow: unset !important;
}
