/*
 * front-page.css
 * Loaded ONLY on the front page.
 * Prefixed .fp- to avoid conflicts. Relies on main.css vars.
 */

/* ── Full-screen hero ────────────────────────────────────── */
#fp-hero {
  height: calc(100vh - 60px);
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* Reuse existing .hero-bg-image from main.css — no changes needed */

/* Centered dark overlay */
.fp-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(4, 7, 12, 0.72);
}

@media (prefers-color-scheme: light) {
  .fp-hero-overlay {
    background: rgba(255, 255, 255, 0.82);
  }
}

/* ── Centered content block ──────────────────────────────── */
.fp-hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  max-width: 600px;
  padding: 0 24px;
}

/* Eyebrow */
.fp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  background: var(--blue-dim);
  border: 1px solid rgba(59,130,246,0.2);
  padding: 6px 16px;
  margin-bottom: 28px;
  backdrop-filter: blur(8px);
  animation: fadeUp 0.7s var(--ease) both;
}

.fp-dot {
  width: 5px;
  height: 5px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 6px var(--blue);
  animation: pulse-dot 2s infinite;
  flex-shrink: 0;
}

@keyframes pulse-dot { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* Name */
.fp-name {
  font-family: var(--display);
  font-size: clamp(42px, 7vw, 88px);
  font-weight: 800;
  letter-spacing: -3px;
  line-height: 0.95;
  color: var(--text);
  margin-bottom: 28px;
  animation: fadeUp 0.7s var(--ease) 0.1s both;
}

/* Bio */
.fp-bio {
  font-size: 14px;
  font-weight: 300;
  color: var(--text-2);
  line-height: 1.85;
  max-width: 440px;
  margin-bottom: 40px;
  animation: fadeUp 0.7s var(--ease) 0.18s both;
}

/* Page nav buttons */
.fp-page-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 36px;
  animation: fadeUp 0.7s var(--ease) 0.26s both;
}

.fp-nav-btn {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.8px;
  text-decoration: none;
  padding: 10px 22px;
  transition: all 0.2s;
  background: var(--blue);
  color: #fff;
  border: 1px solid var(--blue);
}

.fp-nav-btn:hover {
  background: #2563eb;
  box-shadow: 0 8px 30px rgba(59,130,246,0.35);
  transform: translateY(-1px);
}

.fp-nav-btn--ghost {
  background: transparent;
  color: var(--text-2);
  border: 1px solid var(--border2);
  backdrop-filter: blur(6px);
}

.fp-nav-btn--ghost:hover {
  color: var(--text);
  border-color: var(--btn-ghost-hover);
  background: var(--surface2);
  transform: translateY(-1px);
}

/* Social links */
.fp-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  animation: fadeUp 0.7s var(--ease) 0.34s both;
}

.fp-social-link {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 1px;
  color: var(--text-3);
  text-decoration: none;
  transition: color 0.2s;
}

.fp-social-link:hover { color: var(--text); }

.fp-social-sep {
  color: var(--text-4);
  font-size: 10px;
}

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 600px) {
  .fp-name {
    font-size: clamp(36px, 11vw, 56px);
    letter-spacing: -2px;
  }

  .fp-page-nav {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .fp-nav-btn {
    width: 100%;
    text-align: center;
  }
}
