/* Mobile Menu */
#mobile-menu {
  transform: translateX(100%);
  transition: transform 0.3s ease-in-out;
  width: 60%;
  z-index: 1000;
}
#mobile-menu.open {
  transform: translateX(0);
}

/* Overlay */
#overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 20;
}
#overlay.open {
  display: block;
}

/* Mobile Menu Styling */
#mobile-menu ul {
  text-align: left;
  padding-top: 30px;
  margin-top: -10px;
}
#mobile-menu ul li {
  padding: 10px 5px;
}

/* Navbar */
.navbar-logo {
  width: 120px;
}
.close-icon-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px;
  border-bottom: 1px solid #ddd;
}
.close-icon-wrapper img {
  width: 120px;
}
#close-menu {
  background: none;
  border: none;
  cursor: pointer;
  color: #666;
  font-size: 1.2rem;
}

/* Main Content Styling */
.main-content {
  margin-top: 100px;
  z-index: 1;
}
.hero-section,
.fitur-section,
.produk-section,
.footer-section {
  z-index: 1;
}
