/* HFL — Homepage specific */

/* ====== HERO BASE ====== */
.hero-wrap { position: relative; background: var(--hfl-black); overflow: hidden; }

/* HERO V1 — Tale of the Tape face-off */
.hero-v1 {
  min-height: 760px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  position: relative;
}
.hero-v1::before {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 0% 50%, rgba(252, 69, 19, 0.18), transparent 50%),
    radial-gradient(ellipse at 100% 50%, rgba(252, 69, 19, 0.18), transparent 50%);
  pointer-events: none;
}
.hero-v1::after {
  content: "";
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent 0, transparent 60px, rgba(255,255,255,0.02) 60px, rgba(255,255,255,0.02) 61px);
  pointer-events: none;
}
.hero-v1 .fighter-side {
  position: relative;
  height: 760px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 48px;
}
.hero-v1 .fighter-side .portrait-wrap {
  position: absolute;
  inset: 0;
  z-index: 1;
}
.hero-v1 .fighter-side .portrait-wrap svg {
  height: 100%;
}
.hero-v1 .fighter-side .info {
  position: relative;
  z-index: 2;
}
.hero-v1 .fighter-side .name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 92px;
  line-height: 0.85;
  letter-spacing: -0.02em;
  margin: 0;
}
.hero-v1 .fighter-side .nick {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hfl-orange);
  font-size: 14px;
  margin-bottom: 12px;
  font-style: italic;
}
.hero-v1 .fighter-side.right { text-align: right; }
.hero-v1 .fighter-side.right .info { display: flex; flex-direction: column; align-items: flex-end; }
.hero-v1 .fighter-side .stat-row {
  display: flex; gap: 16px; margin-top: 16px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 13px;
  color: var(--hfl-text-dim);
}
.hero-v1 .fighter-side .stat-row b { color: #fff; }
.hero-v1 .center-stack {
  position: relative;
  z-index: 3;
  text-align: center;
  padding: 40px;
  min-width: 320px;
}
.hero-v1 .vs-badge {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 96px;
  line-height: 1;
  margin: 16px 0;
  background: linear-gradient(180deg, #fff, #888);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-v1 .vs-strike {
  display: inline-block;
  background: var(--hfl-orange);
  color: #fff;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 6px 16px;
  font-size: 13px;
  clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
.hero-v1 .event-meta {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 24px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 13px;
  color: var(--hfl-text-dim);
}
.hero-v1 .event-meta .sep { color: var(--hfl-line-bright); }

/* HERO V2 — Cinematic full-bleed with countdown */
.hero-v2 {
  min-height: 760px;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding-bottom: 80px;
}
.hero-v2 .bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 100%, rgba(252,69,19,0.4), transparent 50%),
    radial-gradient(ellipse at 50% 30%, rgba(252,69,19,0.15), transparent 60%),
    var(--hfl-black);
}
.hero-v2 .bg::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(135deg, rgba(252,69,19,0.06) 0%, transparent 30%),
    repeating-linear-gradient(45deg, transparent 0, transparent 80px, rgba(252,69,19,0.04) 80px, rgba(252,69,19,0.04) 82px);
}
.hero-v2 .bg::after {
  content: "";
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 80%, rgba(0,0,0,0.4), transparent 50%);
}
.hero-v2 .silhouettes {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  opacity: 0.85;
}
.hero-v2 .silhouettes svg { height: 100%; max-width: 36%; }
.hero-v2 .content {
  position: relative;
  z-index: 2;
  width: 100%;
  text-align: center;
}
.hero-v2 .massive {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(140px, 20vw, 280px);
  line-height: 0.85;
  letter-spacing: -0.04em;
  margin: 0;
  background: linear-gradient(180deg, #fff 0%, #fff 40%, #888 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.hero-v2 .massive .num {
  color: var(--hfl-orange);
  -webkit-text-fill-color: var(--hfl-orange);
  background: none;
}
.hero-v2 .countdown {
  display: flex;
  justify-content: center;
  gap: 32px;
  margin: 32px 0 24px;
}
.hero-v2 .cd-block {
  text-align: center;
  min-width: 96px;
}
.hero-v2 .cd-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 64px;
  line-height: 1;
  color: #fff;
}
.hero-v2 .cd-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--hfl-text-mute);
  margin-top: 8px;
}

/* HERO V3 — Editorial split */
.hero-v3 {
  min-height: 720px;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  position: relative;
}
.hero-v3 .left-col {
  padding: 80px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  background: var(--hfl-black);
}
.hero-v3 .left-col::before {
  content: "";
  position: absolute;
  top: 0; bottom: 0; left: 0; width: 4px;
  background: var(--hfl-orange);
}
.hero-v3 .edition-num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 320px;
  line-height: 0.85;
  letter-spacing: -0.04em;
  position: absolute;
  top: 40px;
  right: -40px;
  color: var(--hfl-surface);
  z-index: 0;
  pointer-events: none;
}
.hero-v3 .left-content { position: relative; z-index: 1; }
.hero-v3 h1.headline {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 96px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin: 24px 0 32px 0;
}
.hero-v3 h1.headline .accent { color: var(--hfl-orange); }
.hero-v3 .meta-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin: 32px 0;
  padding: 32px 0;
  border-top: 1px solid var(--hfl-line);
  border-bottom: 1px solid var(--hfl-line);
}
.hero-v3 .meta-grid .meta-label {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--hfl-text-mute);
  margin-bottom: 8px;
}
.hero-v3 .meta-grid .meta-val {
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  letter-spacing: 0.02em;
  color: #fff;
}
.hero-v3 .meta-grid .meta-val .accent { color: var(--hfl-orange); }
.hero-v3 .right-col {
  background: var(--hfl-ink);
  padding: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  border-left: 1px solid var(--hfl-line);
}
.hero-v3 .vs-card {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  padding: 0;
  position: relative;
  overflow: hidden;
}
.hero-v3 .vs-card .vs-card-header {
  background: var(--hfl-orange);
  padding: 12px 20px;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 12px;
  font-weight: 700;
  font-style: italic;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hero-v3 .vs-card .face-off {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: stretch;
  height: 280px;
}
.hero-v3 .vs-card .face-off .fighter-pic {
  height: 100%;
  position: relative;
  background: var(--hfl-ink);
  overflow: hidden;
}
.hero-v3 .vs-card .face-off .fighter-pic svg { height: 100%; width: 100%; }
.hero-v3 .vs-card .face-off .vs-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 56px;
  color: var(--hfl-orange);
  width: 80px;
  position: relative;
}
.hero-v3 .vs-card .face-off .vs-divider::before,
.hero-v3 .vs-card .face-off .vs-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 1px;
  height: 32px;
  background: var(--hfl-line-bright);
  transform: translateX(-50%);
}
.hero-v3 .vs-card .face-off .vs-divider::before { top: 16px; }
.hero-v3 .vs-card .face-off .vs-divider::after { bottom: 16px; }
.hero-v3 .vs-card .name-row {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  padding: 20px;
  gap: 16px;
  border-top: 1px solid var(--hfl-line);
}
.hero-v3 .vs-card .name-row .col {
  display: flex;
  flex-direction: column;
}
.hero-v3 .vs-card .name-row .col.right { text-align: right; align-items: flex-end; }
.hero-v3 .vs-card .name-row .name {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1;
}
.hero-v3 .vs-card .name-row .record {
  font-family: var(--font-mono);
  color: var(--hfl-text-dim);
  font-size: 12px;
  margin-top: 6px;
  letter-spacing: 0.05em;
}

/* ====== Marquee ====== */
.marquee-strip {
  background: var(--hfl-orange);
  color: #000;
  padding: 14px 0;
  overflow: hidden;
  border-top: 1px solid var(--hfl-orange-deep);
  border-bottom: 1px solid var(--hfl-orange-deep);
}
.marquee-track {
  display: flex;
  gap: 48px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 16px;
}
.marquee-track span { display: inline-flex; align-items: center; gap: 48px; }
.marquee-track .star { font-size: 10px; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ====== Featured fight cards row ====== */
.feat-cards {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 16px;
}
.feat-card {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
}
.feat-card:hover {
  border-color: var(--hfl-orange);
  transform: translateY(-2px);
}
.feat-card .feat-head {
  padding: 12px 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: var(--hfl-ink);
  border-bottom: 1px solid var(--hfl-line);
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 11px;
  color: var(--hfl-text-dim);
}
.feat-card .feat-head .title-pill {
  color: var(--hfl-orange);
  font-weight: 700;
  font-style: italic;
}
.feat-card .vs-grid {
  display: grid;
  grid-template-columns: 1fr 60px 1fr;
  align-items: stretch;
  height: 220px;
}
.feat-card .vs-grid .pic { height: 100%; overflow: hidden; }
.feat-card .vs-grid .vs-mid {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-style: italic;
  color: #fff;
  font-size: 28px;
  background: var(--hfl-ink);
}
.feat-card .vs-grid .vs-mid b { color: var(--hfl-orange); }
.feat-card .feat-foot {
  padding: 16px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 8px;
  align-items: center;
  border-top: 1px solid var(--hfl-line);
}
.feat-card .feat-foot .nm {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 18px;
  line-height: 1;
}
.feat-card .feat-foot .nm-r { text-align: right; }
.feat-card .feat-foot .ctry { font-size: 11px; color: var(--hfl-text-mute); margin-top: 4px; letter-spacing: 0.1em; }
.feat-card .feat-foot .ctry-r { text-align: right; }
.feat-card .feat-foot .vs-tiny { color: var(--hfl-text-mute); font-family: var(--font-display); font-style: italic; font-size: 14px; }

/* ====== News strip ====== */
.news-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 16px;
}
.news-card {
  background: var(--hfl-surface);
  border: 1px solid var(--hfl-line);
  display: flex;
  flex-direction: column;
  transition: all 0.2s;
  overflow: hidden;
}
.news-card:hover { border-color: var(--hfl-orange); }
.news-card.feature { grid-row: span 2; }
.news-card .img {
  background: var(--hfl-ink);
  height: 220px;
  position: relative;
  overflow: hidden;
}
.news-card.feature .img { height: 380px; }
.news-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.news-card .nb-cat {
  display: inline-flex;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 11px;
  color: var(--hfl-orange);
  margin-bottom: 8px;
}
.news-card .nb-title {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 22px;
  line-height: 1.05;
  margin: 0;
}
.news-card.feature .nb-title { font-size: 32px; }
.news-card .nb-excerpt {
  color: var(--hfl-text-dim);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.5;
}
.news-card .nb-date {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--hfl-text-mute);
  letter-spacing: 0.05em;
  margin-top: auto;
  padding-top: 16px;
}

/* ====== Stats band ====== */
.stats-band {
  background: var(--hfl-ink);
  border-top: 1px solid var(--hfl-line);
  border-bottom: 1px solid var(--hfl-line);
  padding: 56px 0;
}
.stats-band .grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stats-band .stat .num {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 700;
  font-size: 80px;
  line-height: 0.9;
  letter-spacing: -0.02em;
  color: var(--hfl-orange);
}
.stats-band .stat .lbl {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-size: 12px;
  color: var(--hfl-text-dim);
  margin-top: 8px;
}

/* ====== Sponsors ====== */
.sponsor-row {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 24px;
  align-items: center;
  padding: 32px 0;
}
.sponsor-row .sp {
  height: 64px;
  border: 1px solid var(--hfl-line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--hfl-text-mute);
  font-size: 13px;
  transition: all 0.2s;
}
.sponsor-row .sp:hover { color: var(--hfl-orange); border-color: var(--hfl-orange); }

/* ====== HERO PAGER ====== */
.hero-pager {
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.hero-pager .dot-btn {
  width: 36px;
  height: 4px;
  background: rgba(255,255,255,0.2);
  border: none;
  cursor: pointer;
  transition: all 0.2s;
}
.hero-pager .dot-btn.active {
  background: var(--hfl-orange);
}
.hero-pager .dot-btn:hover { background: rgba(255,255,255,0.4); }
.hero-pager .dot-btn.active:hover { background: var(--hfl-orange); }

/* ==========================================
   RESPONSIVE MEDIA QUERIES (Homepage Specific)
   ========================================== */

/* Tablet (< 1024px) */
@media (max-width: 1024px) {
  .hero-v1 {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 40px;
  }
  .hero-v1 .fighter-side {
    height: 380px;
    padding: 24px;
  }
  .hero-v1 .fighter-side .name {
    font-size: 56px;
  }
  .hero-v1 .center-stack {
    order: -1; /* Plaats VS badge en titel bovenaan op tablet/mobiel */
    padding: 20px;
    min-width: 100%;
  }
  .feat-cards {
    grid-template-columns: 1fr; /* Fight cards onder elkaar */
  }
  .news-grid {
    grid-template-columns: 1fr 1fr;
  }
  .news-card.feature {
    grid-column: span 2;
    grid-row: span 1;
  }
  .news-card.feature .img {
    height: 240px;
  }
  .stats-band .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* Mobiel (< 640px) */
@media (max-width: 640px) {
  .hero-v1 .vs-badge {
    font-size: 64px;
  }
  .hero-v1 .fighter-side {
    height: 300px;
  }
  .hero-v1 .fighter-side .name {
    font-size: 40px;
  }
  .news-grid {
    grid-template-columns: 1fr; /* Nieuws-items allemaal op 1 kolom */
  }
  .news-card.feature {
    grid-column: span 1;
  }
  .stats-band .grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .stats-band .stat .num {
    font-size: 56px;
  }
  .section-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  .feat-card .vs-grid {
    height: 160px;
  }
  .feat-card .feat-foot .nm {
    font-size: 15px;
  }
}
