/* AviaNomad — global.css — burger + mobile footer */

.nav-burger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: #f0ece4;
  transition: all 0.3s ease;
  transform-origin: center;
}
.nav-burger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-burger.open span:nth-child(2) { opacity: 0; }
.nav-burger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(10,10,10,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  z-index: 199;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.mobile-menu.open { display: flex; }
.mobile-menu ul { list-style: none; text-align: center; padding: 0; margin: 0; }
.mobile-menu ul li { margin: 24px 0; }
.mobile-menu ul li a {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.5rem, 10vw, 3.5rem);
  font-weight: 300;
  color: #f0ece4;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.mobile-menu ul li a:hover { color: #c9a96e; }
.mobile-menu ul li:last-child a { color: #c9a96e; }

@media(max-width: 900px) {
  .nav-links { display: none !important; }
  .nav-burger { display: flex !important; }
  footer {
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 40px 24px !important;
    gap: 20px !important;
  }
  .footer-links { justify-content: center !important; gap: 20px !important; flex-wrap: wrap !important; }
  .footer-brand { justify-content: center !important; }
}
