/* ================================================================
   HYPERLOOP MANCHESTER — Shared Navigation & Footer
   ================================================================ */

/* ── NAV ── */
.hlm-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(8, 13, 24, 0.88);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(245, 196, 0, 0.12);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

.hlm-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.hlm-nav-logo {
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  white-space: nowrap;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 0.55rem;
}

.hlm-nav-logo-img {
  height: 40px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(245,196,0,0.25));
}

.hlm-nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
  margin: 0; padding: 0;
}

.hlm-nav-links a {
  display: block;
  padding: 0.45rem 0.85rem;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  border-radius: 6px;
  transition: all 0.2s;
  white-space: nowrap;
}

.hlm-nav-links a:hover,
.hlm-nav-links a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.07);
}

.hlm-nav-links a.hlm-nav-cta {
  background: #f5c400;
  color: #0a1628;
  font-weight: 700;
  padding: 0.5rem 1.1rem;
  margin-left: 0.5rem;
}

.hlm-nav-links a.hlm-nav-cta:hover {
  background: #ffd740;
  color: #0a1628;
}

.hlm-nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 0.25rem;
  line-height: 1;
}

@media (max-width: 900px) {
  .hlm-nav-toggle { display: block; }

  .hlm-nav-links {
    display: none;
    position: absolute;
    top: 64px; left: 0; right: 0;
    flex-direction: column;
    background: rgba(8, 13, 24, 0.97);
    border-bottom: 1px solid rgba(245, 196, 0, 0.15);
    padding: 1rem 1.5rem 1.5rem;
    gap: 0.25rem;
    align-items: stretch;
  }

  .hlm-nav-links.open { display: flex; }
  .hlm-nav-links a.hlm-nav-cta { margin-left: 0; margin-top: 0.5rem; text-align: center; }
}

/* ── FOOTER ── */
.hlm-footer {
  background: #050b14;
  border-top: 1px solid rgba(245, 196, 0, 0.12);
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #fff;
  padding: 4rem 1.5rem 0;
  margin-top: 4rem;
}

.hlm-footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.hlm-footer-logo {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin-bottom: 0.75rem;
}

.hlm-footer-brand p {
  font-size: 0.9rem;
  line-height: 1.65;
  color: rgba(255, 255, 255, 0.5);
  max-width: 340px;
}

.hlm-footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.hlm-footer-col {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.hlm-footer-col-title {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: #f5c400;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.hlm-footer-col a {
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  font-size: 0.88rem;
  transition: color 0.2s;
}

.hlm-footer-col a:hover { color: rgba(255, 255, 255, 0.85); }

.hlm-footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  padding: 1.5rem 0;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.25);
}

@media (max-width: 768px) {
  .hlm-footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .hlm-footer-links { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}
