/* contact.css - page-specific styles for contact.html */

body.contact-page {
  overflow-x: hidden;
}

.brutalist-border {
  border: 2px solid #1a104e;
}

.brutalist-shadow {
  box-shadow: 8px 8px 0px 0px #1a104e;
}

.brutalist-shadow-neon {
  box-shadow: 8px 8px 0px 0px #00ffaa;
}

.text-stroke {
  -webkit-text-stroke: 1px #1a104e;
  color: transparent;
}

.hover-flash {
  transition: transform 180ms ease, box-shadow 180ms ease, background-color 180ms ease, color 180ms ease;
}

.hover-flash:hover {
  background-color: #00ffaa !important;
  color: #000000 !important;
  transform: translate(-2px, -2px);
  box-shadow: 10px 10px 0px 0px #1a104e;
}

.marquee {
  white-space: nowrap;
  overflow: hidden;
  position: relative;
}

.marquee-content {
  display: inline-block;
  animation: marquee 20s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

.contact-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

.contact-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.field-focus {
  transform: scale(1.02);
  transition: transform 180ms ease;
}

.contact-page .group.relative {
  transform-origin: left center;
  transition: transform 180ms ease;
}

.contact-page .group.relative.field-focus {
  transform: scale(1.02);
}

.contact-page .contact-marquee {
  border-top: 2px solid #1a104e;
  border-bottom: 2px solid #1a104e;
}

