/* NAV BAR STYLES */
  .transparent-nav {
      width: 100%;
      background-color: transparent;
      display: flex;
      justify-content: center;
      padding: 0px;
      color: rgb(0, 0, 0);
      font-weight: bold;
      font-size: .875rem;
      white-space: nowrap;
      font-family: 'Poppins', sans-serif;
    }

    .transparent-nav a {
      color: rgb(0, 0, 0);
      text-decoration: none;
      margin-left: 20px;
      transition: color 0.3s;
      pointer-events: auto;
    }

    .transparent-nav a:hover {
      color: #ffcc00;
    }

    .nav-logo {
      font-size: 1.1rem;
      pointer-events: auto;
      color: rgb(0, 0, 0);
    }

    .nav-links {
      display: flex;
      align-items: center;
    }

/* Fixed Nav Container */
.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  padding: 10px 40px;
}

/* Always show nav links on desktop */
@media (min-width: 769px) {
  .nav-links {
    display: flex !important;
    flex-direction: row;
    position: static !important;
    background: none !important;
    box-shadow: none !important;
  }
}


