/* FIFA World Cup 2026 celiac travel series.
   Reuses /travel/travel.css (hub cards/sections) and /travel/travel-page.css
   (guide itinerary/map/instagram). This file adds only the World-Cup-specific
   chrome: themed hero banner, country grouping, attraction grid + kind badges,
   and the host back-link. */

/* ---- Themed background + hero ---- */
.worldcup-bg {
  position: fixed;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(1100px 460px at 18% -8%, rgba(13, 148, 136, 0.16), transparent 60%),
    radial-gradient(900px 420px at 88% 0%, rgba(22, 163, 74, 0.14), transparent 62%),
    linear-gradient(180deg, #f0fdf4 0%, #ffffff 42%);
}

.wc-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #064e3b 0%, #0d9488 55%, #15803d 100%);
  color: #fff;
}
.wc-hero::after {
  content: "";
  position: absolute;
  right: -60px;
  top: -60px;
  width: 320px;
  height: 320px;
  background: radial-gradient(circle at center, rgba(255, 255, 255, 0.14), transparent 65%);
  pointer-events: none;
}
.wc-hero-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 3rem;
  position: relative;
  z-index: 1;
}
.wc-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.4rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.wc-hero h1 {
  font-size: clamp(2rem, 4.6vw, 3.1rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  margin: 0 0 0.85rem;
  font-weight: 800;
  max-width: 20ch;
}
.wc-hero-sub {
  font-size: clamp(1rem, 1.9vw, 1.18rem);
  line-height: 1.6;
  max-width: 62ch;
  margin: 0 0 1.5rem;
  color: rgba(255, 255, 255, 0.92);
}
.wc-hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
}
.wc-stat-num {
  display: block;
  font-size: 1.9rem;
  font-weight: 800;
  line-height: 1;
}
.wc-stat-label {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.82);
}

/* ---- Hub: country groups ---- */
.wc-country-group {
  margin: 0 0 2.5rem;
}
.wc-country-title {
  display: flex;
  align-items: center;
  gap: 0.55rem;
  font-size: 1.35rem;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 1.1rem;
  color: var(--color-text);
}
.wc-country-title .wc-country-flag {
  font-size: 1.5rem;
}
.wc-country-count {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-text-muted);
  background: var(--color-primary-light);
  border: 1px solid #99f6e4;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
}

/* Host city card emphasis (reuses .travel-card) */
.travel-card.wc-host-card .travel-card-title {
  font-size: 1.2rem;
}
.wc-host-attr-count {
  color: var(--color-primary-hover);
  font-weight: 600;
}

/* ---- Guide: kind badge + host back-link ---- */
.wc-host-backlink {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary-hover);
  text-decoration: none;
  margin-top: 0.5rem;
}
.wc-host-backlink:hover {
  text-decoration: underline;
}
.wc-kind-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: #0f766e;
  background: #f0fdfa;
  border: 1px solid #99f6e4;
  padding: 0.25rem 0.6rem;
  border-radius: 999px;
}

/* ---- Guide: nearby attractions section (host city pages) ---- */
.wc-attractions-section {
  margin-top: 1.5rem;
}
.wc-attractions-lead {
  color: var(--color-text-secondary);
  margin: 0 0 1.25rem;
  max-width: 70ch;
}
.wc-attractions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 1rem;
}
.wc-attraction-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.1rem 1.15rem 1.2rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.wc-attraction-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -22px rgba(13, 148, 136, 0.55);
  border-color: rgba(13, 148, 136, 0.35);
}
.wc-attraction-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
}
.wc-attraction-name {
  font-size: 1.05rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}
.wc-attraction-meta {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem 0.75rem;
}

/* ---- Guide: researched places directory ---- */
.wc-places-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1rem;
}
.wc-place-card {
  padding: 1.1rem 1.15rem;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: 14px;
}
.wc-place-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  margin-bottom: 0.4rem;
}
.wc-place-name {
  font-size: 1.02rem;
  font-weight: 700;
  margin: 0;
  color: var(--color-text);
}
.wc-place-onmap {
  flex: none;
  font-size: 0.72rem;
  font-weight: 700;
  color: #047857;
  background: #ecfdf5;
  border: 1px solid #a7f3d0;
  padding: 0.15rem 0.5rem;
  border-radius: 999px;
}
.wc-place-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--color-text-secondary);
  margin: 0;
}

@media (max-width: 720px) {
  .wc-hero-inner { padding: 2.5rem 1.25rem 2.25rem; }
  .wc-hero-stats { gap: 1.1rem; }
}
