/* Navbar */

/* Overlay awalnya hidden */
.overlay {
  height: 0;
  width: 100%;
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  background-color: rgba(0,0,0,0.95);
  overflow-y: hidden;
  transition: height 0.4s ease;
}

/* Tampilkan menu di tengah */
.overlay-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.overlay-menu li {
  margin: 20px 0;
}

.overlay-menu a {
  color: white;
  font-size: 2rem;
  text-decoration: none;
  transition: color 0.2s;
}

.overlay-menu a:hover {
  color: #ff9800;
}

/* Tombol close */
.closeBtn {
  position: absolute;
  top: 20px;
  right: 35px;
  font-size: 3rem;
  color: white;
  background: none;
  border: none;
  cursor: pointer;
}


.navbar {
  padding: 0.8rem 0.8rem;
  font-size: small;
  margin-right: 20px;
}

.nav-link {
  color: #888 !important;
  font-weight: 500;
  margin-right: 1.5rem;
}

.nav-link:hover {
  color: #000 !important;
}

.logo-nav {
  width: 150px;
  height: 150px;
  object-fit: contain;
  margin-left: 10px;
}


 /*Percepat munculnya navbar saat hamburger diklik */
.collapsing {
  transition: none !important;
  height: auto !important;
}

@media (max-width: 991.98px) {
    
    
    
      .logo-img {
        width: 40px;
        height: 40px;
      }
}

@media (max-width: 576px) {
    .logo-img {
        width: 30px;
        height: 30px;
      }
}