/* ============================================================
   CompuTechNet Services Ltd — Navigation & Footer
   File: css/layout.css
   ============================================================ */

/* --- Navigation ------------------------------------------- */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 0 5%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo img {
  height: 42px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--muted);
  letter-spacing: 0.03em;
  transition: color 0.2s;
}
.nav-links a:hover      { color: var(--blue); }
.nav-links a.active     { color: var(--navy-dark); font-weight: 600; }

.nav-cta {
  background: var(--navy) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: 4px;
  font-size: 13px !important;
  font-weight: 600 !important;
  letter-spacing: 0.05em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--blue) !important; }

@media (max-width: 900px) {
  .nav-links { display: none; }
}

/* --- Footer ----------------------------------------------- */
footer {
  background: var(--navy-dark);
  color: #7a99b5;
  padding: 40px 5%;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-brand {
  font-family: 'Barlow Condensed', sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.footer-copy {
  font-size: 13px;
  color: #4a6580;
}

.footer-links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.footer-links a {
  font-size: 13px;
  color: #5a7a99;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--white); }
