/* =========================================================
   HotVWs.com Magazine — Storefront-matched styling
   Palette: dark #222 / red #fa1818 / off-white #f5f5f5 / white
   Fonts:   Oswald (headlines, ALL CAPS, letter-spaced)
            Muli   (body)
   ========================================================= */

:root {
  --hv-dark:   #222;
  --hv-darker: #1a1a1a;
  --hv-red:    #fa1818;
  --hv-grey:   #f5f5f5;
  --hv-border: #e6e6e6;
  --hv-text:   #2b2b2b;
  --hv-muted:  #777;
}

/* ---------- base ---------- */
body {
  font-family: 'Muli', 'Segoe UI', system-ui, sans-serif;
  background: #fff;
  color: var(--hv-text);
  font-size: 16px;
  line-height: 1.6;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-4 {
  font-family: 'Oswald', 'Impact', sans-serif;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--hv-darker);
}

a { color: var(--hv-darker); }
a:hover { color: var(--hv-red); }

/* ---------- top bar (dark header) ---------- */
.hv-topbar {
  background: var(--hv-dark);
  color: #fff;
  padding: 18px 0 12px;
  border-bottom: 3px solid var(--hv-red);
}
.hv-topbar .hv-logo {
  display: block;
  margin: 0 auto 10px;
  max-height: 70px;
  width: auto;
}
.hv-topbar .hv-logo-text {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 2.4rem;
  letter-spacing: 0.12em;
  color: #fff;
  text-decoration: none;
  text-align: center;
  display: block;
}

.hv-topbar .hv-logo-text span { color: var(--hv-red); }

/* ---------- horizontal nav ---------- */
.hv-nav {
  background: var(--hv-dark);
  border-top: 1px solid #333;
}
.hv-nav .nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.hv-nav .nav-list li a {
  display: block;
  padding: 14px 22px;
  color: #fff;
  text-decoration: none;
  font-family: 'Oswald', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: color .15s, background .15s;
}
.hv-nav .nav-list li a:hover,
.hv-nav .nav-list li a.active {
  color: var(--hv-red);
  background: #1a1a1a;
}

/* mobile toggle */
.hv-nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid #555;
  color: #fff;
  padding: 8px 14px;
  margin: 8px auto;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.1em;
  cursor: pointer;
}
@media (max-width: 768px) {
  .hv-nav-toggle { display: block; }
  .hv-nav .nav-list { display: none; flex-direction: column; }
  .hv-nav .nav-list.is-open { display: flex; }
  .hv-nav .nav-list li a { text-align: center; padding: 12px; border-top: 1px solid #333; }
}

/* ---------- section bands ---------- */
.hv-band-grey { background: var(--hv-grey); padding: 50px 0; }
.hv-band-white { background: #fff; padding: 50px 0; }
.hv-band-dark { background: var(--hv-dark); color: #fff; padding: 40px 0; }

.hv-section-title {
  font-family: 'Oswald', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 35px;
  position: relative;
  padding-bottom: 14px;
}
.hv-section-title::after {
  content: "";
  display: block;
  width: 50px;
  height: 3px;
  background: var(--hv-red);
  margin: 14px auto 0;
}

/* ---------- hero card (16:9) ---------- */
.hv-hero {
  position: relative;
  overflow: hidden;
  margin-bottom: 50px;
  background: #000;
}
.hv-hero-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  transition: transform .4s ease;
}
.hv-hero:hover .hv-hero-img { transform: scale(1.02); }
.hv-hero-overlay {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
  padding: 60px 40px 30px;
  color: #fff;
}
.hv-hero-overlay .hv-cat-tag {
  display: inline-block;
  background: var(--hv-red);
  color: #fff;
  padding: 4px 12px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.hv-hero-overlay h1 {
  color: #fff;
  font-size: 2.6rem;
  line-height: 1.05;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.hv-hero-overlay .hv-subhead {
  color: #ddd;
  font-family: 'Muli', sans-serif;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-size: 1.1rem;
}

/* ---------- 3-col blog grid ---------- */
.hv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
@media (max-width: 992px) { .hv-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .hv-grid { grid-template-columns: 1fr; gap: 24px; } }

.hv-story-card {
  background: #fff;
  border: 1px solid var(--hv-border);
  display: flex;
  flex-direction: column;
  transition: box-shadow .2s, transform .2s;
}
.hv-story-card:hover {
  box-shadow: 0 8px 24px rgba(0,0,0,0.10);
  transform: translateY(-3px);
}
.hv-story-card a { text-decoration: none; color: inherit; }

.hv-story-card .hv-thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
}
.hv-story-card .hv-card-body { padding: 22px 22px 26px; }
.hv-story-card .hv-cat {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--hv-red);
  margin-bottom: 10px;
}
.hv-story-card h3 {
  font-size: 1.2rem;
  line-height: 1.25;
  margin: 0 0 10px;
  letter-spacing: 0.04em;
}
.hv-story-card .hv-excerpt {
  color: var(--hv-muted);
  font-size: 0.92rem;
  line-height: 1.55;
  text-transform: none;
  font-family: 'Muli', sans-serif;
  margin: 0;
}
.hv-story-card .hv-meta {
  font-size: 0.75rem;
  color: #999;
  margin-top: 12px;
  font-family: 'Muli', sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ---------- sponsor logo carousel ---------- */
.hv-sponsors {
  background: #fff;
  border-top: 1px solid var(--hv-border);
  border-bottom: 1px solid var(--hv-border);
  padding: 30px 0;
}
.hv-sponsor-track {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}
.hv-sponsor-track img {
  max-height: 60px;
  max-width: 160px;
  width: auto;
  filter: grayscale(100%);
  opacity: 0.7;
  transition: filter .2s, opacity .2s;
}
.hv-sponsor-track img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ---------- footer (4-col) ---------- */
.hv-footer {
  background: var(--hv-dark);
  color: #bdbdbd;
  padding: 50px 0 0;
  margin-top: 60px;
  border-top: 3px solid var(--hv-red);
}

.hv-footer .hv-foot-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
@media (max-width: 768px) {
  .hv-footer .hv-foot-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
}
@media (max-width: 480px) {
  .hv-footer .hv-foot-grid { grid-template-columns: 1fr; }
}
.hv-footer h5 {
  color: #fff;
  font-size: 0.95rem;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.hv-footer p, .hv-footer li { font-size: 0.9rem; line-height: 1.7; }
.hv-footer a { color: #bdbdbd; text-decoration: none; }
.hv-footer a:hover { color: var(--hv-red); }
.hv-footer ul { list-style: none; padding: 0; margin: 0; }
.hv-footer .hv-social a {
  display: inline-block;
  width: 36px; height: 36px; line-height: 36px;
  text-align: center;
  background: #333;
  margin-right: 6px;
  border-radius: 50%;
  font-size: 14px;
}
.hv-footer .hv-social a:hover { background: var(--hv-red); color: #fff; }
.hv-footer .hv-newsletter input {
  width: 100%;
  padding: 10px 12px;
  background: #1a1a1a;
  border: 1px solid #444;
  color: #fff;
  font-family: 'Muli', sans-serif;
  margin-bottom: 8px;
}

.hv-footer .hv-newsletter button {
  background: var(--hv-red);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  cursor: pointer;
  width: 100%;
}
.hv-footer .hv-newsletter button:hover { background: #c41212; }
.hv-footer-bottom {
  background: #1a1a1a;
  color: #888;
  text-align: center;
  padding: 18px 0;
  margin-top: 40px;
  font-size: 0.85rem;
}

/* ---------- single story page ---------- */
.story-body {
  font-size: 1.1rem;
  line-height: 1.75;
  max-width: 740px;
  margin: 0 auto;
  font-family: 'Muli', sans-serif;
}
.story-body p { margin-bottom: 1.3rem; text-transform: none; }
.story-body h2, .story-body h3 { margin-top: 2rem; margin-bottom: 1rem; }
.subhead {
  color: #555;
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-family: 'Muli', sans-serif;
}

/* ---------- responsive hero text ---------- */
@media (max-width: 768px) {
  .hv-hero-overlay { padding: 30px 20px 18px; }
  .hv-hero-overlay h1 { font-size: 1.6rem; }
  .hv-hero-overlay .hv-subhead { font-size: 0.95rem; }
}
