.vietnga-wrapper {
  padding: 12px 0;
  display: flex;
  justify-content: center;
}

.vietnga-header {
  background: var(--Dark-Sage-Green);
  width: 100%;
  border-radius: 25px 25px 0 0;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.vietnga-inner {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  width: 1150px;
/*   max-width: 95%; */
  margin: 0 auto;
}

/* Logo */
.header-left {
  padding: 15px 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-top-left-radius: 25px;
}

.header-left img {
  height: 80px;
}

/* Bên phải */
.header-right {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Menu trên */
.menu-top {
  background: #f2f2e8;
  padding: 10px 20px;
  display: flex;
  justify-content: flex-end;
  gap: 25px;
  border-top-right-radius: 25px;
}

.menu-top a {
  color: var(--Dark-Sage-Green);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  gap: 10px;
  display: flex;
  align-items: center;
}

.menu-top a:hover {
  color: var(--Goldenrod);
}

.social-icons1 {
  display: flex;
  gap: 10px;
}

.social-icons1 img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  border-radius: 50%; /* Tuỳ bạn có muốn hình tròn không */
  transition: transform 0.3s;
}

.social-icons1 img:hover {
  transform: scale(1.1);
}

/* Menu dưới */
.menu-bottom {
  background: #fffbf0;
  padding: 16px 118px;
  display: flex;
  justify-content: space-around;
  gap: 20px;
  border-top: 1px solid #ddd;
}

.menu-bottom a {
  color: var(--Dark-Sage-Green);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
}

.menu-bottom a:hover {
  color: var(--Goldenrod);
}

.menu-bottom a.highlight {
  color: var(--Goldenrod);
}

/* ========================= */
/* === Sticky Scroll CSS === */
/* ========================= */
.vietnga-header.sticky-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 80px;
  background: #fffbf2;
  border-radius: 0;
  z-index: 9999;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.vietnga-header.sticky-header .vietnga-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* .vietnga-header.sticky-header .header-left {
  padding: 0;
  background: transparent;
} */

/* .vietnga-header.sticky-header .header-left img {
  height: 60px;
} */

/* Ẩn menu dòng trên */
/* .vietnga-header.sticky-header .menu-top {
  display: none;
}
 */
/* Điều chỉnh menu dòng dưới */
/* .vietnga-header.sticky-header .menu-bottom {
  background: transparent;
  border: none;
  gap: 30px;
  align-items: center;
} */
