.newfontDesign{
    font-family: 'Protest Guerrilla', sans-serif;
    letter-spacing: 2px;
}
#navbar {
    transition: top 0.3s ease;
    z-index: 1000;
  }
  
  @keyframes slideDown {
    from {
      transform: translateY(-100%);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }
  .fixed-nav {
    position: fixed !important;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    background-color: black !important; /* ensure visible background */
    will-change: transform, opacity;
    animation: slideDown 0.4s ease forwards;
  }
  
  /* Active state styling */
nav a.active {
    color: #3b82f6; /* Change to your active color */
    font-weight: 600;
  }
  
  /* Mobile menu active states */
  #mobile-menu a.active {
    background-color: #f3f4f6; /* Change to your preferred background color */
    border-radius: 0.375rem;
  }