/* BEGIN NavStyle for responsive mobile */
/* Desktop Navbar Design */
.navbar {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: center;
  align-items: top;
  /*background-color: #333;*/
  padding: 1rem 1rem 0 1rem;
  position: relative;
  height: auto; 
  /*min-height: 86px;*/
  /*background: url(/images/MJ_logoPhantom-ltgray_278x429.png) no-repeat;
  background-position: 30% 2%; 
  background-size: auto 100px;*/
  /*background: url(/images/singer-mark-james_logotxt_opacity35.png) left top no-repeat; 
  background-size: auto 86px;*/
}
.navbar > img {
  max-width: 80%;
  height: auto;
}
@media screen and (max-width: 980px) {
  .navbar {height: 155px; justify-content: left; align-items: left;}
}

.nav-logo a {
  color: #0080C0;
  text-decoration: none;
  /*font-size: 1.5rem;
  font-weight: bold;*/
}

.nav-menu {
  display: flex;
  list-style: none;
  font-family:Roboto Slab; 
  font-size: 19px;
  text-transform:uppercase; 
  font-weight: 800;
}

.nav-link {
  color: #dedede !important;
  text-decoration: none;
  padding: 0.5rem 1rem;
  transition: color 0.3s;
}

.nav-link:hover {
  color: #C08000 !important;
  border-bottom: 1px solid #C08000;
}

/* Hide Hamburger Menu on Desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 48px;
  height: 48px;
  /*background: transparent;*/
  background-color: #333;
  border: none;
  cursor: pointer;
  padding: 11px;
  margin: 20px 15px 0 0;
  border-radius: 6px;
}

.nav-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #eee;
  border-radius: 10px;
  margin: 0.5px 0 0.5px 0;
  transition: all 0.3s ease;
}
.nav-toggle .bar:hover {
  background-color: #C08000;
}
/* Hamburger bars hover color */
  
  
  .nav-toggle:hover > * {
    background-color: #C08000;
    border-bottom: 1px solid #C08000;
  }

/* Responsive Mobile Layout (Screens below 768px) */
@media (max-width: 768px) {
  .nav-logo h1 { font-size: 1.8rem; }
  .nav-toggle {
    display: flex; /* Show toggle button */
    position: relative;
    top: 3rem;
  }

  .nav-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background-color: #333;
    width: 100%;
    max-height: 0; /* Hides menu natively for transition */
    overflow: hidden;
    transition: max-height 0.3s ease-in-out;
  }

  /* When JS adds the .active class, expand the menu */
  .nav-menu.active {
    max-height: 300px; /* Adjust based on your content height */
  }

  .nav-menu li {
    text-align: center;
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 1.5rem;
    border-bottom: 1px solid #444;
  }
  .nav-link:hover {
    border-color: #C08000;
  }
  
  /* Hamburger transform to "X" when active */
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(11px) rotate(45deg);
  }
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-11px) rotate(-45deg);
  }
}
/* END NavStyle for responsive mobile */