/* Navbar general styling */
.navbar {
    background-color: black;
    transition: background-color 0.3s ease, backdrop-filter 0.3s ease;
    color: white !important;
    border: 2px solid #E5BC5D;
    width: 100%;
    height: 70px;
    top: 0;
    left: 0;
    position: fixed !important;
    z-index: 1000;
    padding: 0 5px !important;
}

/* Ensure links have adequate contrast for SEO and accessibility */
.nav-link {
    color: white !important;
    text-decoration: none;
}

.nav-link:hover, .nav-link:focus {
    color: #E5BC5D;
}

.nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
}

button {
    margin: 1rem;
    background-color: #E5BC5D;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    border: none;
    padding: 10px 30px;
    border-radius: 10px;
}

/* Optimize button hover transition */
button:hover {
    color: #E5BC5D;
    background-color: white !important;
    transition: all 0.3s ease-in-out;
}

/* "ENQUIRE" button is visible only on small screens (mobile) */
.navbar-btn {
    display: none;
}

/* Display the ENQUIRE button on screens smaller than 992px */
@media screen and (max-width: 992px) {
    .navbar-btn {
        display: flex !important;
    }
}

/* Hide nav links on small screens (below 992px) */
@media screen and (max-width: 992px) {
    .navbar-nav {
        display: none !important;
    }
}

/* Maintain the visibility of the navbar and its elements on larger screens */
@media screen and (min-width: 992px) {
    .navbar-nav {
        display: flex !important;
    }
}

/* Adjust the logo size on very small screens (below 500px) */
@media screen and (max-width: 500px) {
    .navbar img {
        width: 150px;
    }
}
