/* contact.css */

#contact .contact-wrap{
  display: inline-block;
}

/* Banner is H1 */
#contact #banner{
  display: flex;
  margin: 0 0 0.75rem 0;
}

/* Note */
#contact .note{
  width: 100%;
  border: 2px dashed black;
  padding: .75rem 1rem;
  background: #fcfcfc;
  box-sizing: border-box;
  font-size: 95%;
  margin-bottom: .75rem;
}

/* Grid */
#contact .contact-grid{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  align-items: stretch;
}

/* Cards */
#contact .card{
  flex: 1 1 360px;
  max-width: 480px;
  border: 2px dashed black;
  padding: 1rem;
  box-sizing: border-box;
  background: white;
}

#contact .card h3{
  margin-top: 0;
}

/* Lines */
#contact .contact-line{
  margin: .35rem 0;
  line-height: 1.4em;
}

#contact .contact-line i{
  width: 1.25em;
  text-align: center;
  margin-right: .35rem;
}

#contact .contact-link{
  color: black;
  text-decoration: underline dotted;
  font-weight: bold;
}

/* Work image (kept simple + responsive) */
#contact .work-img{
  margin-top: .5rem;
  width: 100%;
}

#contact .work-img img{
  width: 100%;
  height: auto;
  display: block;
  border: 2px dashed black;
  box-sizing: border-box;
}

/* Fold title */
#contact .fold-title{
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  gap: .5rem;
}

#contact .fold-title .bulletAr{
  margin-right: 0;
}

/* Social row */
#contact .social-row{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: .5rem;
}

#contact .social{
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 2px dashed black;
  padding: .25rem .6rem;
  text-decoration: none;
  color: black;
  font-weight: bold;
  background: white;
  transition: .1s;
}

#contact .social:hover{
  background: black;
  color: white;
}

#contact .social i{
  width: 1.1em;
  text-align: center;
}

/* Form */
#contact .form-row{
  display: flex;
  flex-direction: column;
  gap: .25rem;
  margin-bottom: .75rem;
}

#contact .form-row label{
  font-weight: bold;
}

#contact input[type="text"],
#contact input[type="email"],
#contact textarea{
  width: 100%;
  border: 2px dashed black;
  padding: .5rem .6rem;
  font-size: 1rem;
  box-sizing: border-box;
  background: white;
  outline: none;
}

#contact textarea{
  min-height: 140px;
  resize: vertical;
}

#contact .btn{
  border: 2px dashed black;
  background: white;
  color: black;
  font-weight: bold;
  padding: .5rem .9rem;
  cursor: pointer;
  transition: .1s ease-in;
  font-size: 1rem;
}

#contact .btn:hover{
  background: black;
  color: white;
}

#contact .req{
  font-weight: normal;
}

#contact .alt-email{
  margin-top: .75rem;
  font-size: 90%;
}

/* Honeypot (hidden but still present in DOM/form submit) */
#contact .hp-field{
  position: absolute;
  left: -9999px;
  top: -9999px;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* Small screens */
@media (max-width: 800px){
  #contact .card{ max-width: 100%; }
}
