/**
 * Province Template V2 — static homepage theme (hero 16:9, brand tokens)
 * Scoped: body.tenant-showcase / body.tenant-{subdomain}
 */

body.tenant-showcase,
body.showcase-dongnai,
body.tenant-dongnai {
  --tenant-primary: #1b6b3a;
  --tenant-primary-dark: #145a2f;
  --tenant-accent: #d4a017;
  --tenant-hero-ratio: 16 / 9;
}

body.tenant-showcase .brand-name,
body.showcase-dongnai .brand-name {
  color: var(--tenant-primary);
}

body.tenant-showcase .top-nav a:hover,
body.tenant-showcase .top-nav a.active,
body.tenant-showcase .section-head a,
body.tenant-showcase .cat-price,
body.tenant-showcase .place-card .price,
body.tenant-showcase .mini-card .price {
  color: var(--tenant-primary);
}

body.tenant-showcase .btn-register,
body.tenant-showcase .search-panel button,
body.tenant-showcase .btn-guide {
  background: var(--tenant-primary);
}

body.tenant-showcase .btn-register:hover,
body.tenant-showcase .search-panel button:hover,
body.tenant-showcase .btn-guide:hover {
  background: var(--tenant-primary-dark);
}

body.tenant-showcase .search-panel-intro {
  background: linear-gradient(135deg, #0f3d24 0%, var(--tenant-primary) 100%);
}

body.tenant-showcase .search-panel .box {
  border-color: var(--tenant-accent);
}

body.tenant-showcase .hero-banner {
  position: relative;
  width: 100%;
  min-height: 0;
  aspect-ratio: var(--tenant-hero-ratio);
  max-height: min(72vh, 1080px);
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #0f172a;
  background-image: none;
  overflow: hidden;
}

body.tenant-showcase .hero-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(15, 23, 42, 0.25) 0%,
    rgba(15, 23, 42, 0.55) 55%,
    rgba(15, 23, 42, 0.75) 100%
  );
  z-index: 1;
}

body.tenant-showcase .hero-banner .hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

body.tenant-showcase .hero-banner .hero-inner {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 48px 24px 120px;
  text-align: center;
}

body.tenant-showcase .hero-banner .hero-badge {
  display: inline-block;
  margin-bottom: 16px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(212, 160, 23, 0.92);
  color: #1e293b;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

body.tenant-showcase .hero-banner h1 {
  font-size: clamp(1.75rem, 4.5vw, 2.75rem);
  line-height: 1.15;
  margin-bottom: 12px;
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.45);
}

body.tenant-showcase .hero-banner .hero-sub {
  font-size: clamp(0.95rem, 2.2vw, 1.125rem);
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  max-width: 640px;
  margin: 0 auto;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

body.tenant-showcase .showcase-region-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

body.tenant-showcase .showcase-region-pills span {
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: #fff;
  font-size: 13px;
  font-weight: 600;
  backdrop-filter: blur(6px);
}

body.tenant-showcase .place-card img,
body.tenant-showcase .news-card img,
body.tenant-showcase .culture-card-rich img,
body.tenant-showcase .mini-card img {
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 0;
  object-fit: cover;
}

body.tenant-showcase .place-card .info .showcase-tag {
  display: inline-block;
  margin-bottom: 6px;
  padding: 3px 8px;
  border-radius: 6px;
  background: #ecfdf3;
  color: var(--tenant-primary);
  font-size: 11px;
  font-weight: 700;
}

body.tenant-showcase .showcase-demo-banner {
  display: none !important;
}

body.tenant-showcase .promo-card.promo-1 { background: linear-gradient(135deg, #14532d, #1b6b3a); }
body.tenant-showcase .promo-card.promo-2 { background: linear-gradient(135deg, #166534, #22c55e); }
body.tenant-showcase .promo-card.promo-3 { background: linear-gradient(135deg, #854d0e, #d4a017); }
body.tenant-showcase .promo-card.promo-4 { background: linear-gradient(135deg, #1e3a5f, #2563eb); }

@media (max-width: 768px) {
  body.tenant-showcase .hero-banner {
    max-height: none;
    min-height: 320px;
    aspect-ratio: auto;
  }

  body.tenant-showcase .hero-banner .hero-inner {
    padding: 40px 16px 100px;
  }

  body.tenant-showcase .showcase-region-pills span {
    font-size: 11px;
    padding: 6px 10px;
  }
}
