/**
 * YNDJ Theme — Footer
 * assets/css/footer.css
 */


/* ── Footer wrapper ─────────────────────────────────────────── */
.yndj-footer {
  background: #080f1e; /* intentionally darker than --yndj-navy */
  padding: 40px 5vw 32px;
  margin-top: auto;
}


/* ── Inner layout ───────────────────────────────────────────── */
.yndj-footer__inner {
  max-width: 1140px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--yndj-space-md);
}


/* ── Wordmark (two-tone: "Your" white, "NewDreamJob" gold) ──── */
.yndj-footer__wordmark {
  font-family: var(--yndj-font-display);
  font-size: var(--yndj-text-md);
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  letter-spacing: 0.01em;
  transition: opacity var(--yndj-transition-fast);
}

.yndj-footer__wordmark .yndj-wordmark-accent {
  color: var(--yndj-gold-light);
}

.yndj-footer__wordmark:hover {
  opacity: 0.85;
}


/* ── Footer nav links ───────────────────────────────────────── */
.yndj-footer__links {
  display: flex;
  gap: 24px;
  list-style: none;
  flex-wrap: wrap;
}

.yndj-footer__links a {
  font-family: var(--yndj-font-body);
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--yndj-transition-fast);
}

.yndj-footer__links a:hover {
  color: var(--yndj-gold-light);
}


/* ── Copyright ──────────────────────────────────────────────── */
.yndj-footer__copy {
  font-family: var(--yndj-font-body);
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.22);
  white-space: nowrap;
}


/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 600px) {
  .yndj-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: var(--yndj-space-sm);
  }

  .yndj-footer__copy {
    width: 100%;
  }
}
