/* =========================
   SHARED NAVBAR — included on all pages
   Desktop styles live here.
   Responsive/burger handled by burger.css
========================= */

.site-navbar {
  position: relative;
  z-index: 2;
  width: 1468px;
  max-width: calc(100% - 24px);
  height: 159px;
  margin: 12px auto 8px;
}

.navbar-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.navbar-content {
  position: relative;
  z-index: 2;
  height: 100%;
  padding: 0 70px 30px 95px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.logo {
  width: 75px;
  height: 68px;
  object-fit: contain;
  position: relative;
  top: -8px;
  flex-shrink: 0;
}

.nav-links,
.nav-right {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav-link {
  text-decoration: none;
  font-size: 36px;
  line-height: 53px;
  color: #000;
}

.gradient-text {
  background: linear-gradient(90deg, #000000 0%, #BA76BB 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* site name — hidden desktop, shown tablet/mobile via burger.css */
.nav-site-name {
  font-family: 'Indie Flower', cursive;
  font-size: 22px;
  white-space: nowrap;
  display: none;
}
