/* ============================================================
   VerifyFirst — Home / Hero Page Styles
   ============================================================ */

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; overflow-x: hidden; }

/* ── Hero wrapper ── */
.vf-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background:
    linear-gradient(180deg,
      rgba(8,2,28,.45)  0%,
      rgba(10,4,32,.25) 40%,
      rgba(6,2,18,.35)  100%),
    url('../images/hero-bg.png') center/cover no-repeat;
}

/* ── Star field — hidden: stars are in the photo ── */
.vf-stars { display: none; }

/* ── Decorative blobs — hidden: AI head & globe are in the photo ── */
.vf-blob-left  { display: none; }
.vf-blob-right { display: none; }

/* ── City silhouette — hidden: city is in the photo ── */
.vf-city { display: none; }

/* ── Logo bar ── */
.vf-logo-bar {
  position: relative; z-index: 10;
  padding: 1.5rem 2.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
.vf-nav-btns {
  display: flex; gap: .65rem; align-items: center;
}
.vf-nav-btn {
  display: inline-flex; align-items: center; gap: .45rem;
  padding: .48rem 1.15rem;
  border-radius: 6px;
  font-size: .82rem; font-weight: 600;
  text-decoration: none;
  border: none; cursor: pointer;
  transition: filter .2s, transform .15s;
}
.vf-nav-btn:hover { filter: brightness(1.12); transform: translateY(-1px); color: #fff; }
.vf-btn-consultant {
  background: linear-gradient(135deg, #0ea5e9 0%, #0284c7 100%);
  color: #fff;
  box-shadow: 0 0 14px rgba(14,165,233,.45);
}
.vf-btn-employer {
  background: linear-gradient(135deg, #1d4ed8 0%, #1e3a8a 100%);
  color: #fff;
  box-shadow: 0 0 14px rgba(29,78,216,.4);
}
.vf-logo {
  display: inline-flex; align-items: center; gap: .55rem;
  text-decoration: none;
}
.vf-logo-icon {
  width: 38px; height: 38px;
  background: linear-gradient(135deg, #0ea5e9 0%, #06b6d4 100%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 0 18px rgba(14,165,233,.55);
  flex-shrink: 0;
}
.vf-logo-icon svg { width: 20px; height: 20px; }
.vf-logo-text {
  font-size: 1.55rem; font-weight: 700; letter-spacing: -.5px;
  color: #fff; line-height: 1;
}
.vf-logo-text span { color: #22d3ee; }

/* ── Decorative blobs — hidden: AI head & globe are in the photo ── */
.vf-blob-left  { display: none; }
.vf-blob-right { display: none; }

/* ── City silhouette — hidden: city is in the photo ── */
.vf-city { display: none; }

/* ── Centre content ── */
.vf-content {
  position: relative; z-index: 10;
  flex: 1;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  text-align: center;
  padding: 2rem 1rem 7rem;
}

/* gold tag line */
.vf-tagline {
  font-size: .7rem; font-weight: 700; letter-spacing: .2em;
  text-transform: uppercase;
  color: #c9902a;
  margin-bottom: 1.2rem;
  display: flex; flex-direction: column; align-items: center; gap: .45rem;
}
.vf-tagline-row {
  display: flex; align-items: center; gap: .7rem; justify-content: center;
}
.vf-tagline-sep {
  width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, #c9902a, transparent);
  flex-shrink: 0;
}

/* main heading */
.vf-heading {
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 800; line-height: 1.1;
  color: #fff;
  margin-bottom: .6rem;
  max-width: 750px;
  text-shadow: 0 2px 20px rgba(0,0,0,.4);
}
.vf-heading .highlight { color: #22d3ee; }

/* sub heading */
.vf-sub {
  font-size: clamp(1.1rem, 2.5vw, 1.6rem);
  font-weight: 400; color: rgba(255,255,255,.85);
  margin-bottom: 0;
  text-shadow: 0 1px 10px rgba(0,0,0,.3);
}
.vf-sub strong { font-weight: 700; color: #fff; }

/* ── Satellite — hidden: satellite is in the photo ── */
.vf-satellite { display: none; }

/* ── Feature bar ── */
.vf-bar {
  position: absolute; bottom: 0; left: 0; right: 0;
  z-index: 20;
  background: rgba(4, 2, 20, .75);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(255,255,255,.07);
}
.vf-bar-inner {
  display: flex; align-items: stretch;
  justify-content: center;
  min-height: 70px;
}
.vf-feat {
  display: flex; align-items: center; gap: .75rem;
  padding: 1rem 2.5rem;
  border-right: 1px solid rgba(255,255,255,.07);
  flex: 1; max-width: 360px;
}
.vf-feat:last-child { border-right: none; }
.vf-feat-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border-radius: .5rem;
  background: rgba(14,165,233,.12);
  border: 1px solid rgba(14,165,233,.25);
  display: flex; align-items: center; justify-content: center;
  color: #22d3ee; font-size: 1.25rem;
}
.vf-feat-txt { text-align: left; }
.vf-feat-title {
  display: block; font-size: .8rem; font-weight: 700;
  color: #fff; line-height: 1.4;
}
.vf-feat-title .vf-accent { color: #22d3ee; font-weight: 700; }

/* ── Theme toggle (home page) ── */
.vf-theme-toggle {
  display: inline-flex;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 50px;
  padding: 2px;
  gap: 2px;
}
.vf-theme-btn {
  background: transparent;
  border: none;
  color: rgba(255,255,255,.5);
  border-radius: 50px;
  width: 30px; height: 30px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: .85rem;
  cursor: pointer;
  transition: background .18s, color .18s;
}
.vf-theme-btn.active {
  background: rgba(255,255,255,.18);
  color: #fff;
}
.vf-theme-btn:hover:not(.active) { color: rgba(255,255,255,.8); }

/* ── Light mode (html[data-vf-theme="light"]) ── */
[data-vf-theme="light"] .vf-hero {
  background:
    linear-gradient(160deg, rgba(240,249,255,.97) 0%, rgba(224,242,254,.97) 50%, rgba(239,246,255,.97) 100%),
    url('https://images.unsplash.com/photo-1521737852567-6949f3f9f2b5?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
[data-vf-theme="light"] .vf-stars span { opacity: 0 !important; animation: none !important; }
[data-vf-theme="light"] .vf-logo-text { color: #0f172a; }
[data-vf-theme="light"] .vf-logo-text span { color: #0284c7; }
[data-vf-theme="light"] .vf-heading { color: #0f172a; text-shadow: none; }
[data-vf-theme="light"] .vf-heading .highlight { color: #0284c7; }
[data-vf-theme="light"] .vf-sub { color: rgba(15,23,42,.75); text-shadow: none; }
[data-vf-theme="light"] .vf-sub strong { color: #0f172a; }
[data-vf-theme="light"] .vf-tagline { color: #92400e; }
[data-vf-theme="light"] .vf-tagline-sep { background: linear-gradient(90deg,transparent,#92400e,transparent); }
[data-vf-theme="light"] .vf-bar { background: rgba(255,255,255,.82); border-top: 1px solid rgba(0,0,0,.08); }
[data-vf-theme="light"] .vf-feat-title { color: #0f172a; }
[data-vf-theme="light"] .vf-feat-desc { color: #475569; }
[data-vf-theme="light"] .vf-feat { border-right-color: rgba(0,0,0,.08); }
[data-vf-theme="light"] .vf-theme-toggle { background: rgba(0,0,0,.06); border-color: rgba(0,0,0,.12); }
[data-vf-theme="light"] .vf-theme-btn { color: rgba(0,0,0,.4); }
[data-vf-theme="light"] .vf-theme-btn.active { background: rgba(0,0,0,.12); color: #0f172a; }
[data-vf-theme="light"] .vf-theme-btn:hover:not(.active) { color: rgba(0,0,0,.7); }

/* ── Responsive tweaks ── */
@media (max-width: 991px) {
  .vf-feat { padding: 1rem 1.25rem; }
}
@media (max-width: 767px) {
  .vf-bar-inner { flex-direction: column; }
  .vf-feat { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); max-width: 100%; }
  .vf-feat:last-child { border-bottom: none; }
  .vf-content { padding-bottom: 14rem; }
}
@media (max-width: 575px) {
  .vf-logo-bar { padding: 1.1rem 1.25rem; }
  .vf-satellite { right: 4%; top: 7%; }
  .vf-nav-btn { font-size: .73rem; padding: .4rem .85rem; }
}
@media (max-width: 430px) {
  .vf-logo-text { font-size: 1.25rem; }
  .vf-logo-icon { width: 32px; height: 32px; }
  .vf-logo-icon svg { width: 16px; height: 16px; }
  .vf-nav-btn { font-size: .68rem; padding: .36rem .65rem; gap: .3rem; }
}
@media (max-width: 360px) {
  /* Icon-only buttons on the smallest phones */
  .vf-nav-btn span,
  .vf-nav-btn { gap: 0; }
  .vf-nav-btn i + * { display: none; }
  .vf-nav-btn i { font-size: 1.05rem; }
  .vf-nav-btn { padding: .4rem .6rem; border-radius: 50%; width: 36px; height: 36px; justify-content: center; }
  .vf-logo-bar { gap: .5rem; }
}
