/* HERO SECTION */
.hero {
  position: relative !important;
  width: auto;
  height: 100%;
  min-height: 300px;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: white;
  overflow: hidden !important;
  border-radius: 30px;
  margin: 30px;
}

.hero .hero-img {
  width: 100%;
  height: 100%;
}

/* HEADER */
.hero .mainHeader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
  z-index: 10;
  visibility: hidden;
}
.hero .mainHeader.fixed {
  position: fixed;
  background: rgba(10, 26, 79, 0.95);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

/* LOGO AREA */
.hero .logo-area {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: nowrap;
}
.hero .logo-area img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* NAV MENU */
.hero .nav-menu {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.hero .nav-menu a {
  color: white;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
  padding: 10px;
}
.hero .nav-menu a.active,
.hero .nav-menu a:hover {
  background: #207df1;
  border-radius: 6px;
}

/* HAMBURGER */
.hero .hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
}
.hero .hamburger span {
  width: 25px;
  height: 3px;
  background: white;
  border-radius: 2px;
  transition: 0.3s;
}

/* MENU MOBILE */
.hero .mobile-menu {
  display: none;
  flex-direction: column;
  background: rgba(10, 26, 79, 0.95);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  padding: 1rem;
  gap: 1rem;
}
.hero .mobile-menu a {
  color: white;
  text-decoration: none;
  padding: 0.5rem;
  border-radius: 4px;
}
.hero .mobile-menu.show {
  display: flex;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .hero {
    margin: 10px;
    min-height: 200px;
  }

  .hero .hero-img img {
    width: 100%;
    height: 100%;
  }

  /* Logo sejajar */
  .hero .logo-area {
       flex: 1 1 auto;
        justify-content: space-between;
        height: 1.5rem;
        margin-top: .5rem;
  }

  /* Hide desktop menu */
  .hero .nav-menu {
    display: none;
  }

  /* Show hamburger */
  .hero .hamburger {
    display: flex;
  }
}

/* update */
@media (min-width: 320px) {
  
.hero .metroxmedcom img {
  visibility: hidden;
}
}

@media (max-width: 360px) {
  
      .hero .logo-area {
        flex: 1 1 auto;
        justify-content: space-between;
        height: 1.5rem;
        margin-top: 1rem;
      }
}

@media (min-width: 768px) {
      .hero .logo-area {
        height: 2.2rem;
 }
}