@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

.announce {
  background: var(--navy, #0a1f44);
  color: rgba(255,255,255,0.85);
  text-align: center;
  padding: 12px 20px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  position: relative;
  z-index: 1001;
  width: 100%;
  box-sizing: border-box;
}

.announce a {
  color: var(--gold, #f5a623);
  text-decoration: none;
  font-weight: 700;
}

nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 70px;
  background: rgba(10,31,68,0.97);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  transition: background 0.3s;
  width: 100%;
  box-sizing: border-box;
}

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

.nav-logo img {
  width: 42px;
  height: 42px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid rgba(245,166,35,0.4);
}

.nav-logo-text {
  color: white;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.nav-logo-text span {
  color: var(--gold, #f5a623);
  display: block;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2.5px;
  text-transform: uppercase;
}

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

.nav-links a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.3px;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--gold, #f5a623);
}

.nav-cta,
.nav-logout {
  background: var(--gold, #f5a623) !important;
  color: var(--navy, #0a1f44) !important;
  padding: 9px 22px;
  border-radius: 50px;
  font-weight: 700 !important;
  border: none;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s !important;
}

.nav-cta:hover,
.nav-logout:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(245,166,35,0.45) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  position: fixed;
  top: 70px;
  left: 0;
  right: 0;
  background: rgba(10,31,68,0.99);
  padding: 20px 5% 28px;
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  gap: 4px;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a,
.mobile-menu button {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
  background: none;
  text-align: left;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  color: var(--gold, #f5a623);
}

.mobile-menu .m-cta {
  color: var(--gold, #f5a623) !important;
  font-weight: 700;
  border-bottom: none;
}

footer {
  background: var(--navy, #0a1f44);
  padding: 70px 0 0;
  margin-top: 70px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 44px;
  margin-bottom: 56px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  text-decoration: none;
}

.footer-logo img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  object-fit: cover;
  border: 1.5px solid rgba(245,166,35,0.4);
}

.footer-logo-text {
  color: white;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.25;
}

.footer-logo-text small {
  display: block;
  color: rgba(255,255,255,0.45);
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 13.5px;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 9px;
}

.footer-social-btn {
  width: 35px;
  height: 35px;
  border-radius: 8px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  font-size: 14px;
  transition: background 0.2s, color 0.2s;
}

.footer-social-btn:hover {
  background: var(--gold, #f5a623);
  color: var(--navy, #0a1f44);
}

.footer-col-title {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
  margin-bottom: 18px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.footer-links a {
  color: rgba(255,255,255,0.6);
  text-decoration: none;
  font-size: 13.5px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: var(--gold, #f5a623);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-copy {
  font-size: 12.5px;
  color: rgba(255,255,255,0.35);
}

.footer-copy a {
  color: var(--gold, #f5a623);
  text-decoration: none;
}

@media (max-width: 1024px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 768px) {
  nav {
    padding: 0 4%;
  }

  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
}
