
/* Ghi đè CSS menu để nằm ngang */
.menu {
	width: 100%;
  height: 5%;
	/* background: #232F64 !important; */
  background: #ffffff !important;
  align-items: center;   /* canh giữa theo chiều dọc */
  justify-content: center; /* canh giữa nội dung menu */
}
.menu ul.dc_mm-orange {
  display: flex !important;
  flex-wrap: nowrap !important;
  justify-content: center !important;
  align-items: center !important;
  width: 80% !important;
  margin: 0 auto !important;
  padding: 0 !important;
  /* background: #232F64 !important; */
  background: #ffffff !important;
}

.menu ul.dc_mm-orange li {
  display: inline-block !important;
  white-space: nowrap;
}

.menu ul.dc_mm-orange li a {
    color: #090505;
    display: block;
    padding: 8px 18px;
    font-size: 14px;
    text-decoration: none;
    /* font-family: 'Doppio One', sans-serif; */
    font-family:'Times New Roman', Times, serif;
    text-transform: uppercase;
    transition: 0.3s;
    line-height: 1.2;  /* giữ chữ cân đối theo chiều dọc */
}

.menu ul.dc_mm-orange li a:hover {
    background: #ebe14f;
}

/* Nút 3 gạch */
.menu-toggle {
    display: none;
    font-size: 24px;
    color: rgb(31, 28, 28);
    background-color: #232F64;
    cursor: pointer;
    user-select: none;

    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%); /* canh giữa theo chiều dọc */
}

/* RESPONSIVE */
@media (max-width: 768px) {
  /* Luôn hiện nút 3 gạch */
  .menu-toggle {
    display: block;
  }
  .dc_mm-orange {
    display: none;
    flex-direction: column;
    width: 100%;
    position: absolute;
    top: 100%;
    left: 0;
    background: #232F64;
    box-shadow: 0 5px 10px rgba(0,0,0,0.2);
    border-radius: 0 0 8px 8px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
  }

/*khi bật*/
  .dc_mm-orange.show {
    display: flex;
    opacity: 1;
    transform: translateY(0);
  }

  .dc_mm-orange li {
    text-align: center;
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
.dc_mm-orange li:last-child {
    border-bottom: none;
  }
}



/* 
.dc_mm-orange{
	
	background:#232F64;
	position:relative;
	width:100%;
}

.dc_mm-orange  li{
	float:left;
}

.dc_mm-orange li a{
	color:#fff;
	display:block;
	float:left;
	font-size:15px;
	padding:20px 32px;
	text-decoration:none;
	text-shadow:1px 1px 1px #000;
	text-transform:uppercase;
	font-family:'Doppio One', sans-serif;
	border-left:2px groove #636363;
}
.dc_mm-orange li a:hover{
	
	background:#8F294B;
}
 */
