/* =============================================
   contact.css — Contact section & footer
   ============================================= */

/* ── Contact section ── */
#contact {
  padding: 100px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
#contact .bg-text {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Press Start 2P', monospace;
  font-size: 120px;
  color: var(--bg1);
  white-space: nowrap;
  pointer-events: none;
  z-index: 0;
  opacity: 0.4;
}
#contact > * { position: relative; z-index: 1; }

.contact-title {
  font-family: 'Press Start 2P', monospace;
  font-size: 14px;
  color: var(--fg2);
  letter-spacing: 3px;
  margin-bottom: 20px;
}
.contact-headline {
  font-family: 'Press Start 2P', monospace;
  font-size: clamp(18px, 3vw, 32px);
  color: var(--yellow-b);
  text-shadow: 0 0 30px var(--yellow);
  margin-bottom: 40px;
  line-height: 1.8;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 50px;
}
.contact-link {
  font-size: 11px;
  color: var(--fg2);
  text-decoration: none;
  letter-spacing: 2px;
  display: flex;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid var(--bg2);
  padding-bottom: 4px;
  transition: all 0.2s;
  text-transform: uppercase;
}
.contact-link:hover {
  color: var(--yellow-b);
  border-color: var(--yellow-b);
}
.contact-link .prefix { color: var(--orange-b); }

/* ── Footer ── */
footer {
  background: var(--bg0);
  border-top: 1px solid var(--bg1);
  padding: 30px 80px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .copy    { font-size: 10px; color: var(--bg4); letter-spacing: 2px; }
footer .version { font-family: 'Press Start 2P', monospace; font-size: 8px; color: var(--bg3); }

@media (max-width: 900px) {
  #contact { padding: 80px 24px; }
  footer   { padding: 24px; }
}
