/**
 * MendozaTodo Master Design System — Micro-Phase CSS-05C
 * Home Hero Component (Strict 460px Height / 2.61:1 Aspect Ratio)
 */

.mt-hero {
  position: relative !important;
  width: 100% !important;
  margin-top: 24px !important;
  margin-bottom: 44px !important;
}

.mt-hero__container {
  position: relative !important;
  width: min(calc(100% - 2 * 40px), 1360px) !important;
  margin-inline: auto !important;
  height: 460px !important;
  max-height: 460px !important;
  border-radius: 16px !important;
  overflow: hidden !important;
  box-shadow: 0 12px 32px rgba(24, 24, 27, 0.12) !important;
  background-color: #1F3A2E !important;
}

.mt-hero__bg-img {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center 35% !important;
  z-index: 1 !important;
}

.mt-hero__overlay {
  position: absolute !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  background: linear-gradient(
    90deg,
    rgba(24, 24, 27, 0.82) 0%,
    rgba(31, 58, 46, 0.62) 48%,
    rgba(24, 24, 27, 0.15) 100%
  ) !important;
  z-index: 2 !important;
}

.mt-hero__content {
  position: relative !important;
  z-index: 3 !important;
  padding: 24px 44px !important;
  max-width: 540px !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
  height: 100% !important;
  box-sizing: border-box !important;
}

.mt-hero__title {
  font-family: "Playfair Display", Georgia, serif !important;
  font-size: 42px !important;
  font-weight: 700 !important;
  line-height: 1.05 !important;
  color: #FAF7F2 !important;
  margin: 0 0 10px 0 !important;
  letter-spacing: -0.01em !important;
}

.mt-hero__title span {
  display: block;
}

.mt-hero__subtitle {
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  font-weight: 400 !important;
  line-height: 1.4 !important;
  color: #E7DAC2 !important;
  margin: 0 0 16px 0 !important;
  max-width: 420px !important;
}

.mt-hero__search-box {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  background-color: #FFFFFF !important;
  border: 1px solid #E2D9CC !important;
  border-radius: 12px !important;
  padding: 4px 4px 4px 14px !important;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15) !important;
  margin-bottom: 12px !important;
  max-width: 460px !important;
}

.mt-hero__search-input {
  flex: 1 !important;
  border: none !important;
  outline: none !important;
  background: transparent !important;
  font-family: "Inter", sans-serif !important;
  font-size: 14px !important;
  color: #18181B !important;
  padding: 0 !important;
  height: 36px !important;
  box-shadow: none !important;
}

.mt-hero__search-input::placeholder {
  color: #71717A !important;
}

.mt-hero__search-btn {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 36px !important;
  padding-inline: 18px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  background-color: #C8A15A !important;
  color: #18181B !important;
  border: 1px solid #C8A15A !important;
  border-radius: 8px !important;
  cursor: pointer !important;
  white-space: nowrap !important;
  transition: all 150ms ease-in-out !important;
}

.mt-hero__search-btn:hover {
  background-color: #B8914A !important;
  border-color: #B8914A !important;
}

.mt-hero__popular {
  display: flex !important;
  align-items: center !important;
  flex-wrap: wrap !important;
  gap: 8px !important;
  font-family: "Inter", sans-serif !important;
  font-size: 12px !important;
  color: #E7DAC2 !important;
}

.mt-hero__popular-label {
  font-weight: 600 !important;
  color: #FAF7F2 !important;
}

.mt-hero__popular-item {
  color: #E7DAC2 !important;
  text-decoration: none !important;
  background-color: rgba(255, 255, 255, 0.12) !important;
  padding: 2px 9px !important;
  border-radius: 20px !important;
  backdrop-filter: blur(4px) !important;
  transition: all 150ms ease-in-out !important;
}

.mt-hero__popular-item:hover {
  background-color: rgba(200, 161, 90, 0.3) !important;
  color: #FAF7F2 !important;
}

@media (max-width: 1024px) {
  .mt-hero__container {
    width: min(calc(100% - 2 * 24px), 1360px) !important;
    height: 420px !important;
    max-height: 420px !important;
  }
  .mt-hero__content {
    padding: 24px 28px !important;
  }
  .mt-hero__title {
    font-size: 38px !important;
  }
}

@media (max-width: 768px) {
  .mt-hero {
    margin-top: 16px !important;
    margin-bottom: 32px !important;
  }
  .mt-hero__container {
    width: min(calc(100% - 2 * 16px), 1360px) !important;
    height: 460px !important;
    max-height: 460px !important;
    border-radius: 12px !important;
  }
  .mt-hero__bg-img {
    object-position: center 30% !important;
  }
  .mt-hero__content {
    padding: 24px 20px !important;
    max-width: 100% !important;
  }
  .mt-hero__title {
    font-size: 32px !important;
    margin-bottom: 8px !important;
  }
  .mt-hero__subtitle {
    font-size: 13px !important;
    margin-bottom: 14px !important;
  }
  .mt-hero__search-box {
    flex-direction: column !important;
    padding: 8px !important;
  }
  .mt-hero__search-input {
    width: 100% !important;
  }
  .mt-hero__search-btn {
    width: 100% !important;
  }
}
