/* BEGIN NavStyle for responsive mobile */
/* Desktop Navbar Design */
.navbar {
  display: flex;
  /*justify-content: space-between;*/
  justify-content: center;
  align-items: center;
  /*background-color: #333;*/
  padding: 1rem 2rem;
  position: relative;
  height: auto; 
  min-height: 86px;
  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;
}

/* Hide Hamburger Menu on Desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 44px;
  height: 31px;
  /*background: transparent;*/
  background-color: #333;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
}

.nav-toggle .bar {
  height: 3px;
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.nav-toggle .bar:hover {
  background-color: #C08000;
}
/* Hamburger bars hover color */
  .nav-toggle.hover .bar:nth-child(1) {
    background-color: #C08000;
  }
  .nav-toggle.hover .bar:nth-child(2) {
    background-color: #C08000;
  }
  .nav-toggle.hover .bar:nth-child(3) {
    background-color: #C08000;
  }

/* Responsive Mobile Layout (Screens below 768px) */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex; /* Show toggle button */
  }

  .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;
  }

  /* Hamburger transform to "X" when active */
  .nav-toggle.active .bar:nth-child(1) {
    transform: translateY(15px) rotate(45deg);
  }
  .nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
  }
  .nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-15px) rotate(-45deg);
  }
}
/* END NavStyle for responsive mobile */