/* ═══════════════════════════════════════════════════════════════
   ALOUV0LT — Navbar & Footer CSS
   ═══════════════════════════════════════════════════════════════ */

/* ─── NAVBAR ─────────────────────────────────────────────────── */
.av-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: 80px;
  display: flex; align-items: center;
  background: rgba(8,12,16,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245,197,24,0.10);
  transition: all .3s ease;
}
.av-nav.scrolled {
  background: rgba(8,12,16,0.98);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 5%;
}

/* Logo */
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo-bolt {
  width: 34px; height: 34px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 80% 35%, 60% 35%, 75% 100%, 25% 55%, 50% 55%, 20% 0%);
  filter: drop-shadow(0 0 8px rgba(245,197,24,0.7));
  flex-shrink: 0;
}
.nav-logo-text { font-family: var(--font2); font-size: 1.5rem; font-weight: 900; letter-spacing: 2px; text-transform: uppercase; color: #fff; }
.nav-logo-text span { color: var(--yellow); }

/* Desktop menu */
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-item { position: relative; }
.nav-link {
  display: flex; align-items: center; gap: 5px;
  padding: 8px 14px;
  font-size: 0.82rem; font-weight: 600;
  letter-spacing: 0.5px; text-transform: uppercase;
  color: var(--muted);
  border-radius: 6px;
  transition: all .25s;
}
.nav-link:hover, .nav-link.active { color: #fff; background: rgba(255,255,255,0.06); }
.nav-link .arrow { font-size: 0.6rem; transition: transform .25s; }
.nav-item:hover .arrow { transform: rotate(180deg); }

/* Dropdown */
.nav-dropdown {
  position: absolute; top: calc(100% + 8px); left: 0;
  min-width: 220px;
  background: var(--dark3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 8px;
  opacity: 0; visibility: hidden;
  transform: translateY(-8px);
  transition: all .25s ease;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.nav-item:hover .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown a {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px;
  font-size: 0.82rem; font-weight: 500;
  color: var(--muted);
  border-radius: 6px;
  transition: all .2s;
}
.nav-dropdown a:hover { color: var(--yellow); background: rgba(245,197,24,0.06); }
.nav-dropdown a span { font-size: 1rem; }

/* CTA button */
.nav-cta {
  padding: 10px 22px;
  background: var(--yellow); color: #000;
  font-size: 0.82rem; font-weight: 800;
  letter-spacing: 1px; text-transform: uppercase;
  border-radius: var(--radius);
  transition: all .25s;
  margin-left: 12px;
}
.nav-cta:hover { background: var(--yellow2); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(245,197,24,0.4); }

/* Mobile toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--yellow); border-radius: 2px; transition: .3s; }
.nav-toggle.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* Mobile menu */
.nav-mobile {
  display: none;
  position: fixed;
  top: 80px; left: 0; right: 0; bottom: 0;
  background: rgba(8,12,16,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  overflow-y: auto;
  padding: 24px 5%;
  flex-direction: column;
  gap: 4px;
}
.nav-mobile.open { display: flex; }
.nav-mobile a {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  font-size: 0.9rem; font-weight: 600;
  color: var(--muted);
  border-radius: var(--radius);
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: all .2s;
}
.nav-mobile a:hover { color: var(--yellow); background: rgba(245,197,24,0.05); }
.nav-mobile .mobile-cta {
  margin-top: 20px;
  background: var(--yellow); color: #000;
  justify-content: center; font-weight: 800;
}

/* Responsive nav */
@media (max-width: 1024px) {
  .nav-menu, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
}

/* ─── FOOTER ─────────────────────────────────────────────────── */
.av-footer {
  background: var(--navy2);
  border-top: 1px solid var(--border);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand { display: flex; flex-direction: column; gap: 20px; }
.footer-logo { display: flex; align-items: center; gap: 10px; }
.footer-logo-bolt {
  width: 32px; height: 32px;
  background: var(--yellow);
  clip-path: polygon(50% 0%, 80% 35%, 60% 35%, 75% 100%, 25% 55%, 50% 55%, 20% 0%);
  filter: drop-shadow(0 0 6px rgba(245,197,24,0.6));
}
.footer-logo-text { font-family: var(--font2); font-size: 1.4rem; font-weight: 900; letter-spacing: 2px; color: #fff; }
.footer-logo-text span { color: var(--yellow); }
.footer-desc { font-size: 0.88rem; line-height: 1.7; color: var(--muted); max-width: 300px; }
.footer-socials { display: flex; gap: 10px; }
.footer-social {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; color: var(--muted);
  transition: all .25s;
}
.footer-social:hover { background: rgba(245,197,24,0.12); border-color: rgba(245,197,24,0.3); color: var(--yellow); }

.footer-col h4 { color: #fff; font-size: 0.88rem; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.85rem; color: var(--muted); transition: color .2s; display: flex; align-items: center; gap: 6px; }
.footer-links a::before { content: '›'; color: var(--yellow); font-weight: 900; }
.footer-links a:hover { color: var(--yellow); }

.footer-contact { display: flex; flex-direction: column; gap: 14px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--muted); }
.footer-contact-item .icon { color: var(--yellow); font-size: 1rem; flex-shrink: 0; margin-top: 2px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.05);
  padding: 24px 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.80rem; color: var(--muted2); }
.footer-bottom a { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 0.80rem; color: var(--muted2); transition: color .2s; }
.footer-bottom-links a:hover { color: var(--yellow); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
