/* Navbar shared styles for all pages */
.navbar-simple {
  background: linear-gradient(135deg, #000000 0%, #0a3622 40%, #014651 100%);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 38px;
  padding: 0.95rem 1.4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 66px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.18);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: fixed;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  width: min(100%, calc(100% - 48px));
  max-width: 1320px;
  margin: 0;
  z-index: 9999;
  overflow: hidden;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease;
}

.navbar-simple.hidden {
  transform: translate(-50%, -115%);
  opacity: 0;
  pointer-events: none;
}

.navbar-simple::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255,255,255,0.05), rgba(255,255,255,0) 35%, rgba(255,255,255,0.06));
  opacity: 0.35;
  pointer-events: none;
  transform: translateX(-100%);
  animation: navShine 10s linear infinite;
}

@keyframes navShine {
  to { transform: translateX(100%); }
}

.navbar-simple .brand {
  font-size: 1.1rem;
  font-weight: 700;
  color: #f8fafc;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.25s ease, background 0.25s ease;
}

.navbar-simple .brand:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.14);
}

.navbar-simple ul {
  list-style: none;
  display: flex;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  align-items: center;
  flex-wrap: wrap;
}

.navbar-simple ul li a {
  color: #f5fcf8;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  transition: all 0.25s ease;
  padding: 0.62rem 0.95rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.navbar-simple ul li a:hover {
  background: rgba(255, 255, 255, 0.16);
  color: #ffffff;
  transform: translateY(-1px);
}

.navbar-simple ul li a.active {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.22);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.navbar-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #f8fafc;
  font-size: 1.4rem;
  cursor: pointer;
  width: 42px;
  height: 42px;
  border-radius: 14px;
  transition: all 0.25s ease;
}

.navbar-toggle:hover {
  transform: translateY(-1px);
  background: rgba(255, 255, 255, 0.16);
}

@media (max-width: 768px) {
  .navbar-simple {
    padding: 0.75rem 1.1rem;
    margin: 12px 16px 0;
  }

  .navbar-simple ul {
    display: none;
    gap: 0.75rem;
    width: 100%;
    flex-direction: column;
    margin-top: 1rem;
    padding: 1rem;
    background: rgba(1, 70, 81, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
  }

  .navbar-simple ul.show {
    display: flex;
  }

  .navbar-simple ul li a {
    width: 100%;
    text-align: center;
  }

  .navbar-toggle {
    display: block;
  }
}
