/* ======================================================
   NEW HEADER & FOOTER REDESIGN
   new-header-footer.css
   ====================================================== */

:root {
    --nhf-gold:      #B68A35;
    --nhf-gold-dark: #92722a;
    --nhf-gold-light: #CBA344;
}

/* ======================================================
   HEADER — TOP GOLD BORDER
   ====================================================== */
.nhf-top-border {
    height: 6px;
    background-color: var(--nhf-gold);
}

/* ======================================================
   HEADER — WRAPPER
   ====================================================== */
#header {
    background: #fff;
    box-shadow: 0 1px 4px rgba(0, 0, 0, .06);
}

/* ======================================================
   HEADER — LOGO / SEARCH ROW
   ====================================================== */
.nhf-head {
    padding: 18px 0;
}

.nhf-logo-img {
    height: 5rem;
    width: auto;
    display: block;
}

.nhf-brand-img {
    height: 6rem;
    width: auto;
    display: block;
}

.nhf-logo-divider {
    width: 1px;
    height: 55px;
    background-color: #ddd;
    flex-shrink: 0;
}

.nhf-search-wrapper {
    border: 1.5px solid var(--nhf-gold);
    display: flex;
    align-items: center;
    padding: 7px 14px;
    min-width: 260px;
}

.nhf-search-input {
    border: none;
    outline: none;
    background: transparent;
    color: #888;
    font-size: 14px;
    flex: 1;
    font-family: inherit;
}

.nhf-search-input::placeholder {
    color: #aaa;
}

.nhf-search-btn {
    border: none;
    background: transparent;
    color: var(--nhf-gold);
    padding: 0;
    cursor: pointer;
    font-size: 15px;
    margin-left: 8px;
    line-height: 1;
}

.nhf-search-btn:hover {
    color: var(--nhf-gold-dark);
}

/* ======================================================
   NAVIGATION — OVERRIDE TO LIGHT GRAY THEME
   ====================================================== */
#main-navigation > .navbar {
    background-color: #f0f0f0 !important;
    border-top: 1px solid #e0e0e0 !important;
    border-bottom: 1px solid #e0e0e0 !important;
}

#main-navigation > .navbar .navbar-nav > li > a,
#main-navigation > .navbar .navbar-nav > li > span.menu-item {
    color: #2a2a2a !important;
    font-size: 14px !important;
    height: auto !important;
    min-height: 50px !important;
    align-content: center;
}

#main-navigation > .navbar .navbar-nav > li > a:hover,
#main-navigation > .navbar .navbar-nav > li.active > a,
#main-navigation > .navbar .navbar-nav > li.show > a,
#main-navigation > .navbar .navbar-nav > li > span.menu-item:hover {
    color: #000 !important;
    font-weight: 600 !important;
    background: transparent !important;
}

/* ======================================================
   FOOTER — WRAPPER & TOP BORDER
   ====================================================== */
#footer {
    background: #fff !important;
    padding: 0 !important;
    /* Remove old wow animation residual styles */
    margin-top: 0;
}

/* ======================================================
   FOOTER — INNER COLUMNS AREA
   ====================================================== */
.nhf-footer-inner {
    padding: 38px 0 0;
}

.nhf-footer-col-heading {
    color: var(--nhf-gold);
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 18px;
    text-transform: none;
}

.nhf-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nhf-footer-links li {
    margin-bottom: 10px;
}

.nhf-footer-links a {
    color: #555 !important;
    text-decoration: none !important;
    font-size: 14px;
    line-height: 1.4;
    transition: color 0.25s;
}

.nhf-footer-links a:hover {
    color: var(--nhf-gold) !important;
}

/* "Website Policies" column uses gold-coloured links */
.nhf-footer-links.nhf-gold-links a {
    color: var(--nhf-gold) !important;
}

.nhf-footer-links.nhf-gold-links a:hover {
    color: var(--nhf-gold-dark) !important;
}

/* Contact info block */
.nhf-footer-contact p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin: 0;
}

.nhf-footer-contact a {
    color: var(--nhf-gold) !important;
    text-decoration: none;
}

/* ======================================================
   FOOTER — BOTTOM COPYRIGHT BAR
   ====================================================== */
.nhf-footer-bottom {
    background: #fff;
    border-top: 1px solid #ddd;
    padding: 14px 0;
    margin-top: 36px;
}

.nhf-footer-bottom p {
    font-size: 13px;
    color: #555;
    margin: 0;
}

.nhf-footer-bottom a {
    color: var(--nhf-gold) !important;
    text-decoration: none;
}

.nhf-footer-bottom a:hover {
    color: var(--nhf-gold-dark) !important;
}

.nhf-follow-label {
    font-size: 13px;
    color: #555;
    margin-right: 8px;
    white-space: nowrap;
}

.nhf-social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border: 1.5px solid #888;
    border-radius: 50%;
    color: #555 !important;
    font-size: 14px;
    margin-left: 6px;
    text-decoration: none !important;
    transition: color 0.25s, border-color 0.25s;
}

.nhf-social-icons a:hover {
    border-color: var(--nhf-gold);
    color: var(--nhf-gold) !important;
}

/* ======================================================
   MOBILE VIEW
   ====================================================== */
@media (max-width: 768px) {
    .nhf-logo-img {
        height: 3rem;
    }

    .nhf-brand-img {
        height: 5rem;
    }
}
