nav ul li {
    display: inline-block;
    padding: 16px 40px;
}

nav ul li a {
    font-weight: lighter;
    font-family: var(--bs-font-sans-serif);
    text-decoration: none;
    color: rgb(212, 155, 55)!important;
    font-size: 16px;
    padding: 10px;
    border: 1px solid transparent;
}

nav ul li a:hover {
    color: rgb(212, 155, 55);
    border: 1px solid rgb(212, 155, 55);
    background-color: rgba(212, 155, 55, 0.1);
}

.dropdown-custom {
    white-space: nowrap;
}

.navbar-toggler {
    border-color: rgba(212, 155, 55, 0.5)!important;
}

.navbar-toggler .navbar-toggler-icon {
    background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba(212,155,55, 0.5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E");
  }

.btn-gold {
    color: rgb(212, 155, 55);
    background-color: rgba(212, 155, 55, 0.1);
    border: 1px solid rgb(212, 155, 55);
    /*font-weight: lighter;*/
    letter-spacing: 0.05em;
    border-radius: 0;
}

.btn-gold:hover,
.btn-gold:active,
.btn-gold:focus,
.btn-gold.active {
    background: rgb(212, 155, 55);
    color: #ffffff!important;
    border-color: rgb(212, 155, 55);
}

.form-control:focus {
    border-color: rgb(212, 155, 55)!important;
    box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(212, 155, 55, 0.6)!important;
  }

.footer {
    background-color: rgba(212, 155, 55, 0.05);
}

.footer a {
    color: inherit;
}

@media(max-width: 767px) {
    /*nav ul {
        max-height: 0px;
        background: rgba(255, 255, 255, 0.9);
    }*/
    /* Show borders on mobile */
    nav ul li a {
        text-decoration: none;
        color: rgb(212, 155, 55);
        font-size: 18px;
        padding: 10px;
        font-weight: normal;
    }
    nav ul li {
        box-sizing: border-box;
        width: 100%;
        padding: 24px;
        text-align: center;
    }
}