/* ========================================
   PyroDust Navbar — Unified Sitewide
   ======================================== */

/* Reset & layout */
.pd-navbar {
  background-image: url('/Images/nav-bar-bq.jpg');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  color: #fff;
  padding: 0.75rem 1rem;
  position: relative;
  z-index: 50;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.25);
}

/* Prevent any unwanted overlay/darkening */
.pd-navbar::before {
  content: none !important;
  background: none !important;
  mix-blend-mode: normal !important;
}

/* Inner container */
.pd-nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 74rem;
  margin: 0 auto;
}

/* Brand text — unified sizing (matches homepage) */
.pd-navbar .pd-brand {
  font-family: 'Barlow', system-ui, -apple-system, Segoe UI, Roboto, Ubuntu, Cantarell, 'Helvetica Neue', Arial;
  font-weight: 800;
  font-size: 1.5rem;         /* Tailwind text-2xl */
  letter-spacing: 0.05em;
  color: #fff;
  text-decoration: none;
}

@media (min-width: 768px) {
  .pd-navbar .pd-brand {
    font-size: 1.875rem;     /* Tailwind md:text-3xl */
  }
}

/* Navigation links */
.pd-links {
  display: flex;
  gap: 1.25rem;
}

.pd-link {
  color: #fff;
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: color 0.25s ease, text-shadow 0.25s ease;
}

/* Ember hover and active states */
.pd-link:hover,
.pd-link.is-active {
  color: #e64a19;
  text-shadow: 0 0 6px rgba(230, 74, 25, 0.5);
}

/* Responsive adjustments */
@media (max-width: 640px) {
  .pd-links {
    gap: 0.85rem;
  }
  .pd-link {
    font-size: 0.9rem;
  }
}

/* Fix for stray margins or white gaps between navbar and hero */
body > .pd-navbar {
  margin-bottom: 0;
  border-bottom: none;
}
