/* =========================================
1. IMPORT FONTS & VARIABLES
(BẮT BUỘC Ở ĐẦU FILE)
========================================= */
@import url("https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;700&display=swap");

:root {
  --huythinh-green: #2d7a46;
  --huythinh-deep-green: #097416;
  --huythinh-light-green: #99c436;
  --huythinh-text-white: #ffffff;
}

/* =========================================
2. BREADCRUMB
========================================= */
.custom-breadcrumb {
  font-size: 20px;
  font-family: "Dancing Script", cursive;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-breadcrumb a {
  color: #ffc107;
  text-decoration: none;
}

.custom-breadcrumb .separator {
  color: #ffc107;
  font-weight: bold;
}

.custom-breadcrumb .current {
  color: #ffffff;
  font-weight: bold;
}

/* =========================================
4. PARTNER SLIDER
========================================= */

.ht-partner-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 0;
  overflow: hidden;
  background: #fff;
}

.ht-partner-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.ht-partner-slide {
  min-width: 100%;
  padding: 5px;
}

.ht-logo-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 15px;
}

.ht-logo-item {
  width: calc(25% - 12px);
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.ht-partner-slide.active .ht-logo-item {
  opacity: 1;
  transform: translateY(0);
  transition-delay: var(--delay);
}

.ht-logo-item img {
  width: 100%;
  border-radius: 4px;
  transition: all 0.3s;
}

.ht-logo-item:hover img {
  transform: translateY(-6px) scale(1.02);
}

@media (max-width: 1024px) {
  .ht-logo-item {
    width: calc(33.333% - 10px);
  }
}

@media (max-width: 768px) {
  .ht-logo-item {
    width: calc(50% - 8px);
  }
}
