/* =========================
   VENX NAVBAR + HERO LOGO
   FINAL CLEAN VERSION
========================= */

html,
body {
  margin: 0;
  padding: 0;
}

body {
  overflow-x: hidden;
}

/* ===== HEADER ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding-top: 10px;
  background: transparent;
  pointer-events: none;
}

.header-wrap {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 72px;
  position: relative;
  pointer-events: none;
}

/* ===== NAVBAR ===== */
.navbar {
  pointer-events: auto;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
  padding: 8px 14px;
  border-radius: 999px;
  width: fit-content;
  max-width: max-content;
  margin: 0 auto;

  background:
    linear-gradient(180deg, rgba(255,255,255,0.10), rgba(255,255,255,0.03)),
    rgba(7, 12, 25, 0.68);

  border: 1px solid rgba(124, 168, 255, 0.14);

  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);

  box-shadow:
    0 12px 34px rgba(0,0,0,0.26),
    0 0 18px rgba(78,161,255,0.08),
    inset 0 1px 0 rgba(255,255,255,0.06);
}

.nav-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.nav-menu a {
  margin: 0;
}

/* ===== NAV LINKS ===== */
.nav-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 18px;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  color: rgba(255,255,255,0.76);
  text-decoration: none;
  white-space: nowrap;

  transition: all 0.25s ease;
}

.nav-link:hover {
  color: #ffffff;
  background: rgba(78,161,255,0.08);
  transform: translateY(-1px);
}

.nav-link.active {
  color: #ffffff;
  background: rgba(78,161,255,0.14);
  box-shadow:
    inset 0 0 0 1px rgba(124,168,255,0.20),
    0 6px 16px rgba(78,161,255,0.08);
}

/* ===== VENCRYPTO CTA ===== */
.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 42px;
  padding: 0 22px;
  border-radius: 999px;

  font-size: 0.95rem;
  font-weight: 700;
  color: #071018;
  text-decoration: none;
  white-space: nowrap;

  background: linear-gradient(90deg, #72c7ff, #d6b36a);

  box-shadow:
    0 8px 18px rgba(78,161,255,0.18),
    inset 0 1px 0 rgba(255,255,255,0.28);

  transition: all 0.25s ease;
}

.nav-cta:hover {
  transform: translateY(-1px);
  box-shadow:
    0 10px 22px rgba(78,161,255,0.24),
    inset 0 1px 0 rgba(255,255,255,0.36);
}

/* ===== REMOVE OLD LOGOS ===== */
.brand-logo,
.brand-floating {
  display: none !important;
}

/* ===== HERO GAP ===== */
main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

.hero-section,
.hero-section.container {
  margin-top: 0 !important;
  padding-top: 118px;
}

/* ===== HERO LEFT BLOCK ===== */
.hero-copy {
  padding-top: 26px;
  margin-top: 0;
}

/* ===== HERO LOGO ===== */
.hero-logo {
  position: relative;
  display: inline-block;
  margin: 0 0 14px 0;
  padding-left: 2px;
}

.hero-logo::before {
  content: "";
  position: absolute;
  left: -18px;
  top: 50%;
  transform: translateY(-50%);
  width: 72px;
  height: 72px;
  background: radial-gradient(
    circle,
    rgba(78,161,255,0.18) 0%,
    rgba(78,161,255,0.08) 42%,
    rgba(214,179,106,0.06) 62%,
    transparent 76%
  );
  filter: blur(16px);
  z-index: -1;
  pointer-events: none;
}

.hero-logo img {
  display: block;
  height: 68px;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: left center;

  filter:
    drop-shadow(0 6px 18px rgba(78,161,255,0.22))
    drop-shadow(0 0 12px rgba(214,179,106,0.14));

  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo:hover img {
  transform: translateY(-1px) scale(1.02);
  filter:
    drop-shadow(0 8px 22px rgba(78,161,255,0.26))
    drop-shadow(0 0 14px rgba(214,179,106,0.16));
}

/* ===== EYEBROW ALIGN ===== */
.hero-copy .eyebrow {
  margin-top: 0;
}

/* ===== SAFETY ===== */
.hero-content,
.hero-inner,
.hero-wrap {
  margin-top: 0;
  padding-top: 0;
}

/* ===== TABLET ===== */
@media (max-width: 1100px) {
  .header-wrap {
    width: min(100% - 28px, 1240px);
  }

  .navbar {
    min-height: 64px;
    padding: 8px 12px;
  }

  .nav-menu {
    gap: 8px;
  }

  .nav-link {
    height: 40px;
    padding: 0 16px;
    font-size: 0.92rem;
  }

  .nav-cta {
    height: 40px;
    padding: 0 20px;
    font-size: 0.92rem;
  }

  .hero-section,
  .hero-section.container {
    padding-top: 108px;
  }

  .hero-copy {
    padding-top: 22px;
  }

  .hero-logo img {
    height: 62px;
  }

  .hero-logo::before {
    width: 66px;
    height: 66px;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 780px) {
  .site-header {
    padding-top: 8px;
  }

  .header-wrap {
    width: calc(100% - 20px);
    min-height: auto;
    justify-content: center;
  }

  .navbar {
    width: 100%;
    min-height: auto;
    border-radius: 24px;
    padding: 10px;
  }

  .nav-menu {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
  }

  .nav-link,
  .nav-cta {
    height: 40px;
    padding: 0 14px;
  }

  .hero-section,
  .hero-section.container {
    padding-top: 120px;
  }

  .hero-copy {
    padding-top: 20px;
  }

  .hero-logo {
    margin-bottom: 12px;
    padding-left: 0;
  }

  .hero-logo img {
    height: 56px;
  }

  .hero-logo::before {
    width: 58px;
    height: 58px;
    left: -12px;
  }
}
