/* ===============================
   Premium Text Logo
================================ */

.logo_h {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1;
  transition: all 0.4s ease;
}

/* Top text */

.brand_top {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1px;
  color: #ffffff;
  opacity: 0.9;
}

/* Bottom accent text */

.brand_bottom {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 6px;
  color: #F8B600;
  margin-top: 6px;
  position: relative;
  transition: all 0.4s ease;
}

/* Subtle underline glow */

.brand_bottom::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 40%;
  height: 2px;
  background: #F8B600;
  transition: width 0.4s ease;
}

/* Hover Effect */

.logo_h:hover .brand_bottom {
  letter-spacing: 8px;
}

.logo_h:hover .brand_bottom::after {
  width: 100%;
}

