/*
Theme Name: Flastsome Child
Theme URI: https://example.com/
Description: Child theme for the Flatsome theme
Author: Your Name
Author URI: https://example.com/
Template: flatsome
Version: 1.0.0
*/

.vt-custom-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
}

.vt-custom-menu a {
  color: var(--White);
  text-decoration: none;
  padding: 0 10px;
  font-weight: bold;
  font-size: 14px;
  white-space: nowrap;
}

.vt-custom-menu a:hover {
	color: var(--Bright-Orange);
}

.vt-custom-menu a:not(:last-child)::after {
  content: "|";
  color: #888888;
  margin-left: 10px;
}

@media (max-width: 600px) {
   .vt-custom-menu {
      align-items: flex-start;
      padding-left: 20px;
   }

   .vt-custom-menu a {
      padding: 5px 0;
   }

   .vt-custom-menu a::after {
      content: "";
   }
}

.call-btn {
    display: inline-block;
    background-color: var(--Scarlet-Red);
    color: var(--White) !important;
    font-size: 1.2em !important;
    font-weight: bold !important;
    padding: 12px 28px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    box-shadow: 0 4px 6px rgba(0,0,0,0.2) !important;
    transition: all 0.3s ease !important;
    text-align: center;
    white-space: nowrap;
}

.call-btn:hover {
    background-color: #b71515; /* Đỏ đậm hơn khi hover */
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 10px rgba(0,0,0,0.3) !important;
}

.call-btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 3px 6px rgba(0,0,0,0.2) !important;
}

/* Hình ảnh */
.box-image {
   margin: 0;
   padding: 0;
   width: 100%;
}

.box-image img {
   display: block;
   width: 100%;
   height: auto;
   object-fit: cover;
   border-radius: 10px;
}

.custom-contact-container {
   display: flex;
   flex-direction: column;
   align-items: center;
   gap: 10px;
   padding: 10px;
}

.custom-contact-btn {
   display: inline-block;
   padding: 5px 10px;
   border-radius: 10px;
   font-size: 1.2em;
   font-weight: bold;
   text-align: center;
   text-decoration: none;
   width: 100%;
   max-width: 250px; /* Giới hạn chiều rộng */
   box-sizing: border-box;
}

.custom-call-btn {
   background-color: #f5c9c9;
   color: var(--Scarlet-Red);
   border: 2px dashed var(--Scarlet-Red);
}

.custom-chat-btn {
   background-color: #c9f5ef;
   color: #1d4ed8;
   border: 2px dashed blue;
}

@media (max-width: 480px) {
   .custom-contact-btn {
      font-size: 1em;
      padding: 12px 20px;
   }
}

.viettel-container {
    display: flex;
    flex-wrap: wrap;
    max-width: 1000px;
    margin: auto;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    margin-bottom: 20px;
}

.viettel-image-box {
    flex: 1 1 350px;
}

.viettel-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.viettel-content-box {
    flex: 2 1 250px;
    padding: 20px;
}

.viettel-content-box h2 {
    margin-top: 0;
    text-align: center;
}

.viettel-content-box ul {
    padding-left: 20px;
    margin: 0;
}

@media(max-width: 768px) {
    .viettel-container {
        flex-direction: column;
    }
}

.multi-border-box {
    max-width: 100%;
    padding: 15px;
    background: linear-gradient(40deg, #4caf5014, #ffeb3b17);
    border: 3px solid transparent;
    border-radius: 4px;
    background-clip: padding-box;
    position: relative;
}

.multi-border-box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 4px;
    padding: 2px;
    background: linear-gradient(90deg, red, orange, yellow, green, blue, indigo, violet);
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    pointer-events: none;
}

.multi-border-box h4 {
    text-align: center;
    margin-top: 0;
    font-size: 1.1rem;
}

.multi-border-box ul {
    list-style: disc;
    padding-left: 20px;
    margin: 0;
}

.multi-border-box a {
    color: #055ca8;
    text-decoration: none;
}

.multi-border-box a:hover {
	color: var(--Bright-Orange);
}

.multi-border-box .hotline {
    color: var(--Scarlet-Red);
    font-weight: bold;
}

@media (max-width: 768px) {
    .multi-border-box {
        padding: 10px;
        font-size: 0.95rem;
    }
}