/* ========================================================= */
/* LAYOUT MODULE: NAVBAR & FOOTER (Profspect Glass Feel)     */
/* ========================================================= */

/* --- GLASS NAVBAR --- */
.navbar-glass {
    background: rgba(10, 61, 98, 0.85) !important; /* Zenzele Blue with transparency */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease-in-out;
}

/* Ensure dropdowns also match the glass feel */
.navbar-glass .dropdown-menu {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
}

/* --- FOOTER STYLES --- */
.footer-main {
    background-color: #ffffff;
    border-top: 1px solid #eee;
}

.footer-bottom-bar {
    background: rgba(10, 61, 98, 0.95); /* Slightly more opaque for readability */
    backdrop-filter: blur(8px);
    padding: 2rem 0;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom-bar a {
    transition: color 0.2s ease, transform 0.2s ease;
    display: inline-block;
}

.footer-bottom-bar a:hover {
    color: #ffffff !important;
    transform: translateY(-3px);
}

.hover-link {
    transition: color 0.2s ease;
}

.hover-link:hover {
    color: var(--zenzele-orange) !important;
}