﻿/* =========================
   NAVBAR - Premium Dark
========================= */

.custom-navbar {
    background: linear-gradient(to bottom, #1c1f26, #14161b);
    padding: 0.9rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease-in-out;
}

/* Sticky hide animation */
.nav-hidden {
    transform: translateY(-100%);
}

/* Brand + Links base color */
.custom-navbar .navbar-brand,
.custom-navbar .nav-link {
    color: #dcdcdc;
    font-weight: 500;
    margin-left: 1rem;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

/* Nav links styling & hover effect: gold accent */
.custom-navbar .nav-link {
    margin-left: 1rem;
    padding: 6px 14px;
    border-radius: 6px;
    transition: all 0.25s ease;
}

    /* Hover effect: gold accent */
    .custom-navbar .nav-link:hover {
        color: #ffffff !important;
        background-color: #c6a75e;

        /*        background-color: #c6a75e;*/
    }

    /* Active page highlight using same gold */
    .custom-navbar .nav-link.active {
        background-color: #c6a75e;
        color: #ffffff !important;
    }

/* =========================
   NAV LOGO
========================= */

.nav-logo {
    height: 67px;
    width: auto;
}

/* =========================
   FOOTER - Matching Dark
========================= */

.custom-footer {
    background: #14161b;
    color: #bfbfbf;
    padding: 1rem 0;
    border-top: 1px solid rgba(255,255,255,0.05);
    font-size: 0.9rem;
}

    .custom-footer a {
        color: #dcdcdc;
        text-decoration: none;
        transition: color 0.2s ease;
    }

        .custom-footer a:hover {
            color: #b30000;
        }

    /*==================*/
    /* Privacy link in footer */
    .custom-footer .footer-link {
        color: #dcdcdc;
        text-decoration: none;
        font-weight: 400;
        transition: all 0.25s ease;
    }

        .custom-footer .footer-link:hover {
            color: #ffffff;
            border-bottom: 2px solid #c6a75e;
        }


