.elementor-57 .elementor-element.elementor-element-360ee75{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0;--margin-bottom:16vh;--margin-left:0;--margin-right:0;}/* Start custom CSS for heading, class: .elementor-element-93f12d1 */@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600&family=Playfair+Display:wght@700&display=swap');

/* ===== LUXURY GOLD H2 ===== */
h2 {
  font-family: 'Playfair Display', serif;
  font-size: 64px;
  font-weight: 700;
  letter-spacing: 4px;
  text-align: center;
  position: relative;
  display: inline-block;
  padding-bottom: 25px;
  overflow: hidden;
  margin: 0;

  /* CHROME GOLD GRADIENT */
  background: linear-gradient(
    90deg,
    #1a1100 0%,
    #8a651b 15%,
    #fce08b 30%,
    #d4af37 45%,
    #ffffff 50%,
    #d4af37 55%,
    #b8860b 70%,
    #4a3000 85%,
    #050505 100%
  );
  background-size: 300% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* gold glow */
  text-shadow:
    0 0 6px rgba(212, 175, 55, 0.2),
    0 0 18px rgba(252, 224, 139, 0.3),
    0 0 35px rgba(255, 255, 255, 0.1);

  /* Đổi sang ease-in-out alternate để mượt mà, lượn sóng tự nhiên */
  animation: goldFlow 12s ease-in-out infinite alternate;
}

/* LIGHT SWEEP */
h2::before {
  content: "";
  position: absolute;
  top: 0;
  left: -150%;
  width: 70%;
  height: 100%;
  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.7),
    transparent
  );
  transform: skewX(-25deg);
  /* Dùng cubic-bezier để tia sáng lướt qua có độ trớn mượt hơn */
  animation: lightSweep 8s cubic-bezier(0.4, 0, 0.2, 1) infinite;
}



/* SPARKLE */
h2 span {
  position: relative;
  display: inline-block;
}

h2 span::after {
  content: "";
  position: absolute;
  top: 10%;
  right: 5%;
  width: 6px;
  height: 6px;
  background: white;
  border-radius: 50%;

  box-shadow:
    0 0 10px white,
    0 0 20px rgba(252, 224, 139, 0.8),
    0 0 30px rgba(212, 175, 55, 0.6);

  /* Tăng thời gian và dùng ease-in-out để chớp nháy êm ái */
  animation: sparkle 4s ease-in-out infinite;
}

/* HOVER */
h2:hover {
  text-shadow:
    0 0 10px rgba(252, 224, 139, 0.5),
    0 0 25px rgba(212, 175, 55, 0.6),
    0 0 50px rgba(252, 224, 139, 0.3);
}

/* ANIMATIONS */
@keyframes goldFlow {
  0% { background-position: 0% center; }
  100% { background-position: 300% center; }
}

@keyframes lightSweep {
  0% { left: -150%; }
  50% { left: 150%; }
  100% { left: 150%; }
}

@keyframes sparkle {
  0% { opacity: 0; transform: scale(0.3) rotate(0deg); }
  50% { opacity: 1; transform: scale(1.2) rotate(45deg); }
  100% { opacity: 0; transform: scale(0.3) rotate(90deg); }
}

/* ===== LUXURY GOLD H5 ===== */
h5 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 24px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  margin-bottom: 10px;
  text-align: center;

  /* gold gradient */
  background: linear-gradient(
    90deg,
    #4a3000,
    #d4af37,
    #ffffff,
    #fce08b,
    #4a3000
  );

  background-size: 200% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;

  /* glow nhẹ */
  text-shadow:
    0 0 6px rgba(212, 175, 55, 0.2),
    0 0 12px rgba(252, 224, 139, 0.1);

  /* animation mượt mà */
  animation: goldShimmer 8s ease-in-out infinite alternate;
}

@keyframes goldShimmer {
  0% { background-position: 0% center; }
  100% { background-position: 200% center; }
}

/* Floating Gold Dust */
.gold-dust {
  position: absolute;
  width: 2px;
  height: 2px;
  background: #f8e596;
  border-radius: 50%;
  box-shadow: 
    15px 25px 2px #ffffff,
    -25px -35px 1px #c59b3d,
    35px -15px 2px #f8e596,
    -45px 25px 1px #7a5215,
    55px 45px 2px #ffffff,
    -55px -55px 1px #c59b3d;
  animation: float-dust 8s linear infinite;
  opacity: 0;
  pointer-events: none;
}

@keyframes float-dust {
  0% { transform: translateY(20px) rotate(0deg); opacity: 0; }
  20% { opacity: 0.8; }
  80% { opacity: 0.8; }
  100% { transform: translateY(-80px) rotate(180deg); opacity: 0; }
}

/* MOBILE */
@media(max-width: 768px) {
  h2 {
    font-size: 40px;
    letter-spacing: 2px;
  }
  h2::after {
    width: 100px;
  }
  h5 {
    font-size: 18px;
    letter-spacing: 2px;
  }
}/* End custom CSS */