/* page-contact.css — copied from app/contact/contact.css
   The template shipped plain global CSS, so the class names here are already
   the ones the markup uses. */

.contact {
  position: relative;
  width: 100vw;
  height: 100svh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--base-100);
  color: var(--base-400);
  overflow: hidden;
}

.contact .screensaver {
  position: absolute;
  background-size: cover;
  background-position: center;
  pointer-events: none;
  z-index: 0;
}

.contact .contact-copy {
  width: 75%;
  max-width: 2000px;
  display: flex;
  padding: 0 2rem;
  gap: 2rem;
}

.contact .contact-copy .contact-col:nth-child(1) {
  flex: 3;
}

.contact .contact-copy .contact-col:nth-child(2) {
  flex: 2;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.contact .contact-copy .contact-col h2 {
  width: 65%;
}

.contact .contact-copy p.sm {
  margin-bottom: 0.6rem;
}

.contact .contact-footer {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
}

.contact .contact-footer .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 2rem;
}

.contact .contact-footer .contact-socials {
  display: flex;
  gap: 2rem;
}

@media (max-width: 1000px) {
  .contact {
    height: 100%;
    min-height: 150svh;
    padding: 8rem 0;
  }

  .contact .contact-copy {
    flex-direction: column;
    width: 100%;
    gap: 4rem;
    padding: 1.25rem;
  }

  .contact .contact-copy .contact-col h2 {
    width: 90%;
    font-size: 3rem;
  }

  .contact .contact-footer {
    padding-bottom: 4rem;
  }

  .contact .contact-footer .container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.25rem;
  }

  .contact .contact-footer .contact-socials {
    flex-direction: column;
    gap: 0.5rem;
  }
}
