/* ExpressEntryHub Global Layout - Header & Footer */

/* Hide Neve / theme default header & footer if needed */
header#masthead,
.site-header,
.nv-header {
    display: none !important;
}

.site-footer,
#site-footer,
.nv-footer,
.site-info {
    display: none !important;
}

/* Shared container */
.eeh-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ================= TOP NAV BAR ================== */

.eeh-topnav {
    width: 100%;
    padding: 14px 0;
    background: rgba(2, 8, 23, 0.85);
    border-bottom: 1px solid rgba(30, 64, 175, 0.3);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 9999;
}

.eeh-topnav-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.eeh-topnav-logo img {
    height: 48px;
    width: auto;
    display: block;
    filter: drop-shadow(0 0 6px rgba(245, 201, 107, 0.3));
}

.eeh-topnav-links {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
}

.eeh-topnav-links a {
    font-size: 14px;
    color: #fbe4a8;
    text-decoration: none;
    padding-bottom: 2px;
    border-bottom: 1px solid transparent;
    transition: 0.2s ease;
}

.eeh-topnav-links a:hover {
    color: #f5c96b;
    border-bottom: 1px solid #f5c96b;
}

/* ================= FOOTER =================== */

.eeh-footer {
    border-top: 1px solid rgba(30,64,175,0.5);
    padding: 24px 0 26px;
    font-size: 13px;
    color: #c2c8d6;
    background: #020617;
    margin-top: 40px;
}

.eeh-footer-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.eeh-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
}

.eeh-footer-links a {
    color: #c2c8d6;
    text-decoration: none;
}

.eeh-footer-links a:hover {
    color: #fbe4a8;
}

/* Responsive adjustments */
@media (max-width: 800px) {
    .eeh-topnav-flex {
        flex-direction: column;
        align-items: flex-start;
    }

    .eeh-topnav-logo img {
        height: 42px;
    }

    .eeh-footer-flex {
        flex-direction: column;
        align-items: flex-start;
    }
}
