/*
Theme Name: Mindssacre_v4
Author: Mindssacre
Version: 1.8
*/
html {
  scroll-behavior: smooth;
}
#mobileNav {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

#mobileNav.is-active {
  max-height: 500px; /* or enough height */
  opacity: 1;
  visibility: visible;
}
.navbar-menu {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  visibility: hidden;
  transition: max-height 0.4s ease, opacity 0.3s ease;
}

.navbar-menu.is-active {
  max-height: 500px; /* big enough for your menu */
  opacity: 1;
  visibility: visible;
}
.navbar.has-background-black-ter .navbar-item:hover {
  background-color: rgba(255, 255, 255, 0.1); /* subtle white overlay */
  transition: background-color 0.3s ease;
}

  .navbar-item.is-active {
    background-color:  hsl(171, 100%, 41%);
    color:  hsl(0, 0%, 4%);
  }
