/* home.css — RoadshowHub marketing homepage */

:root {
  --navy: #0a1628;
  --navy-mid: #0f2040;
  --blue: #1a5fb4;
  --accent: #2563eb;
  --light: #f8f9fa;
  --border: #dee2e6;
  --text: #1a1a2e;
  --muted: #6c757d;
}

* { box-sizing: border-box; }

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  margin: 0;
  padding: 0;
}

/* ── NAV ─────────────────────────────────────────── */
.home-nav {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 18px 0;
  transition: background 0.3s, box-shadow 0.3s;
}

.home-nav.nav-scrolled {
  position: fixed;
  background: var(--navy);
  box-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.brand-logo {
  height: 90px;
  width: auto;
}

/* ── HERO ─────────────────────────────────────────── */
.hero-section {
  position: relative;
  min-height: 100vh;
  background: url('/images/munihubHeroNYC01.jpg') center center / cover no-repeat;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-bottom: 80px;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(10, 22, 40, 0.62);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 140px;
}

.hero-headline {
  font-size: 3rem;
  font-weight: 800;
  color: #fff;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  letter-spacing: -0.02em;
}

.hero-subhead {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.85);
  font-weight: 400;
  line-height: 1.6;
  margin-bottom: 2.25rem;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-hero-primary {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-hero-primary:hover {
  background: #e8edf5;
  transform: translateY(-2px);
  color: var(--navy);
  text-decoration: none;
}

.btn-hero-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 14px 32px;
  border-radius: 6px;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.65);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-hero-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

/* ── HERO STATS STRIP ─────────────────────────────── */
.hero-stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(10, 22, 40, 0.78);
  backdrop-filter: blur(8px);
  padding: 18px 0;
}

.stats-row {
  display: flex;
  justify-content: center;
  gap: 48px;
  flex-wrap: wrap;
}

.stat-chip {
  color: rgba(255,255,255,0.9);
  font-size: 0.875rem;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.02em;
}

.stat-chip i {
  font-size: 1rem;
  color: #60a5fa;
}

/* ── VALUE PROPS ──────────────────────────────────── */
.value-section {
  padding: 88px 0;
  background: #fff;
}

.section-headline {
  font-size: 1.875rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 0;
}

.value-card {
  border: 1px solid var(--border);
  border-top: 4px solid var(--accent);
  border-radius: 10px;
  padding: 32px 28px;
  height: 100%;
  transition: box-shadow 0.2s;
}
.value-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.value-icon {
  font-size: 2rem;
  color: var(--accent);
  margin-bottom: 16px;
  line-height: 1;
}

.value-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.value-card p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.65;
  margin: 0;
}

/* ── FEATURE HIGHLIGHTS ───────────────────────────── */
.features-section {
  padding: 88px 0;
  background: var(--light);
}

.feature-tile {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 28px 24px;
  height: 100%;
  transition: box-shadow 0.2s;
}
.feature-tile:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,0.08);
}

.feature-icon {
  font-size: 1.75rem;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

.feature-tile h4 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
}

.feature-tile p {
  font-size: 0.875rem;
  color: var(--muted);
  line-height: 1.6;
  margin: 0;
}

/* ── ABOUT ────────────────────────────────────────── */
.about-section {
  padding: 88px 0;
  background: #fff;
}

.about-block {
  height: 100%;
}

.about-heading {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.1rem;
  padding-bottom: 0.65rem;
  border-bottom: 3px solid var(--accent);
  display: inline-block;
}

.about-block p {
  font-size: 0.9rem;
  color: #444;
  line-height: 1.75;
  margin-bottom: 0.9rem;
}

.about-since {
  color: var(--muted) !important;
  font-style: italic;
}

.about-divider {
  width: 1px;
  background: var(--border);
  height: 100%;
  min-height: 200px;
}

.about-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  margin-top: 0.5rem;
  transition: gap 0.18s;
}
.about-link:hover {
  gap: 10px;
  color: var(--blue);
  text-decoration: none;
}

/* ── CTA ──────────────────────────────────────────── */
.cta-section {
  padding: 100px 0 80px;
  background: var(--navy);
}

.cta-headline {
  font-size: 2.25rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 1rem;
  line-height: 1.2;
}

.cta-subhead {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.72);
  max-width: 560px;
  margin: 0 auto 2.25rem;
  line-height: 1.65;
}

.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.5rem;
}

.btn-cta-primary {
  background: #fff;
  color: var(--navy);
  font-weight: 700;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 1rem;
  border: none;
  text-decoration: none;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-cta-primary:hover {
  background: #e8edf5;
  transform: translateY(-2px);
  color: var(--navy);
  text-decoration: none;
}

.btn-cta-secondary {
  background: transparent;
  color: #fff;
  font-weight: 600;
  padding: 14px 36px;
  border-radius: 6px;
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
  display: inline-block;
}
.btn-cta-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  color: #fff;
  transform: translateY(-2px);
  text-decoration: none;
}

.cta-contact {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  margin: 0;
}

/* ── FOOTER ───────────────────────────────────────── */
.home-footer {
  background: #06101e;
  color: rgba(255,255,255,0.45);
  padding: 20px 0;
  font-size: 0.8rem;
}

/* ── RESPONSIVE ───────────────────────────────────── */
@media (max-width: 991px) {
  .hero-headline { font-size: 2.4rem; }
}

@media (max-width: 768px) {
  .hero-headline { font-size: 1.9rem; }
  .hero-subhead  { font-size: 1rem; }
  .stats-row     { gap: 20px; }
  .section-headline { font-size: 1.5rem; }
  .cta-headline  { font-size: 1.75rem; }
  .brand-logo    { height: 64px; }
  .about-section { padding: 60px 0; }
  .about-heading { font-size: 1.3rem; }
}
