/* Shared top navigation — injected by nav.js on every page. */

.lang-bar { background: #0a2f58; display: flex; justify-content: flex-end; padding: 6px 32px; gap: 6px; }
.lang-btn { font-size: 12px; padding: 4px 16px; border-radius: 20px; cursor: pointer; font-family: 'Barlow', sans-serif; font-weight: 600; letter-spacing: 0.5px; border: 1px solid rgba(255,255,255,0.25); background: transparent; color: rgba(255,255,255,0.55); transition: all 0.2s; }
.lang-btn.active { background: #fff; color: #0C3B6E; border-color: #fff; }
.lang-btn:hover:not(.active) { background: rgba(255,255,255,0.12); color: #fff; }

.nav { background: #0C3B6E; display: flex; flex-direction: row; align-items: center; justify-content: space-between; padding: 14px 32px; gap: 20px; flex-wrap: wrap; position: sticky; top: 0; z-index: 100; box-shadow: 0 2px 20px rgba(0,0,0,0.3); }
.nav-logo { display: flex; align-items: center; gap: 14px; text-decoration: none; }
.nav-logo img { width: 54px; height: 54px; border-radius: 50%; object-fit: cover; display: block; }
.nav-brand-abbr { font-family: 'Bebas Neue', sans-serif; font-size: 24px; letter-spacing: 3px; color: #fff; line-height: 1; }
.nav-brand-full { font-size: 11px; letter-spacing: 1.5px; color: #AECDED; font-weight: 500; }
.nav-links { display: flex; gap: 6px; flex-wrap: wrap; }
.nav-links a { font-size: 12px; color: #fff; text-decoration: none; padding: 7px 14px; border-radius: 20px; border: 1px solid rgba(255,255,255,0.2); font-weight: 500; white-space: nowrap; transition: background 0.2s; }
.nav-links a:hover { background: rgba(255,255,255,0.15); }
.nav-links a.active { background: #fff; color: #0C3B6E; border-color: #fff; font-weight: 700; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; z-index: 200; }
.hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu { display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0; background: rgba(10,47,88,0.97); z-index: 150; flex-direction: column; align-items: center; justify-content: center; gap: 8px; padding: 80px 24px 24px; }
.mobile-menu.open { display: flex; }
.mobile-menu a { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 2px; color: #fff; text-decoration: none; padding: 8px 0; border-bottom: 1px solid rgba(255,255,255,0.1); width: 100%; text-align: center; transition: color 0.2s; }
.mobile-menu a:hover, .mobile-menu a.active { color: #ffffff; }
.mobile-menu-close { position: absolute; top: 20px; right: 20px; background: none; border: none; color: #fff; font-size: 28px; cursor: pointer; }

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none !important; }
  .nav { flex-wrap: nowrap !important; align-items: center !important; padding: 10px 16px !important; }
}
