

.contact-section {
  width: 100%;
  padding: 4rem 2rem 8rem 2rem;
  box-sizing: border-box;
}

.outro__title {
  font-weight: 200;
  font-size: clamp(1.4rem, 7vw, 2.5rem) !important;
  width: 100%;
  text-align: center;

}

.input-field {
  width: 100%;
  padding: 0.9rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 6px;
  background: transparent;
  font-family: inherit;
  font-size: clamp(1rem, 3.5vw, 1.2rem) !important;
  color: inherit;
  outline: none;
  opacity: 0.85;
  transition: 0.3s ease;
}

.input-field:focus {
  opacity: 1;
  transform: scale(1.02);
}

.contact-form button {
  width: 100%;
  padding: 0.9rem;
  border: 1px solid rgba(0,0,0,0.2);
  border-radius: 6px;
  background: transparent;
  font-family: inherit;
  font-size: clamp(1rem, 3.5vw, 1.2rem) !important;
  opacity: 0.8;
  cursor: pointer;
  transition: 0.3s ease;
}

.contact-form button:hover {
  opacity: 1;
  transform: scale(1.08);
}

.fonty {
  font-family: "capitana", sans-serif !important;
  font-weight: 200;
}

.font-alt {
font-family: "Captaina", sans-serif;
  font-weight: 200;
  text-align: center;
}

.contact-row {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap:30px;
}

.content__text--large {
  font-size: clamp(1rem,4vw,1.7rem);
  max-width: none;
  padding: 8vh 4vh 10vh 4vh;
}

@media screen and (min-width: 900px) {
  .contact-row {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    width: 80%;
    max-width: 1100px;
    margin: auto;
  }

  .contact-info { min-width: 260px; }

  .socials {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;

  }
}

.credits a {
  color: inherit;
  text-decoration: none;
  opacity: 0.9;
  transition: 0.25s ease;
}

.credits a:hover {
  opacity: 1;
  text-decoration: underline;
}

.contact-info .socials a {
  color: var(--color-text) !important;
  text-decoration: none !important;
}

.contact-info .socials a:visited,
.contact-info .socials a:active {
  color: var(--color-text) !important;
}

.contact-info .socials a:hover {
  color: var(--color-link-hover) !important;
}



