/* ============================ */
/*    Contact Section */
/* ============================ */

.contact-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: start;
  padding: 2rem;
  gap: 2rem;
  font-size: 1.3rem;
  background-color: #14131b;
  background: linear-gradient(180deg, #14131b 0%, #004aad50 100%);
  color: white;
}
#contact {
  scroll-margin-top: 40px;
}

.contact-content {
  display: flex;
  flex-direction: column;
  align-items: start;
  max-width: 400px;
  gap: 0.5rem;
}
.contact-content h3 {
  color: rgba(76, 152, 255, 0.7);
}
.contact-content h2 span {
  color: #4c98ff;
}
.contact-content p {
  font-family: "Quicksand", sans-serif;
  color: rgba(255, 255, 255, 0.7);
}
.contact-content h4 {
  font-weight: 400;
}
.contact-content h4 a {
  color: #ffffff;
  font-weight: bold;
}
.contact-social {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  list-style: none;
  padding-top: 10px;
  gap: 0.5rem;
}
.contact-social a img {
  width: 30px;
  height: 30px;
  border-radius: 10px;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  transition: all 0.2s ease-in-out;
}
.contact-social a img:hover {
  border-color: #4c98ff;
}

.contact-form {
  display: flex;
  flex-direction: column;
  align-items: start;
  padding: 1rem;
  width: 100%;
  max-width: 500px;
  min-width: 300px;
  border-radius: 10px;
  border-width: 0.5px;
  border-style: solid;
  border-color: #004aad80;
  font-family: "Montserrat", sans-serif;
  background: linear-gradient(360deg, #14131b 0%, #242232 100%);
}
.contact-form form {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 0.75rem;
}
.form-group {
  display: flex;
  flex-direction: column;
  align-items: start;
  width: 100%;
  gap: 0.5rem;
  font-size: 1.1rem;
}
.form-group input,
.form-group textarea {
  width: 100%;
  height: 30px;
  padding: 0.5rem;
  border-radius: 7.5px;
  border: none;
  font-size: 1rem;
  font-family: "Montserrat", sans-serif;
  background-color: rgba(20, 19, 27, 0.75);
  color: white;
}
.form-group textarea {
  height: 150px;
  resize: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.5);
  opacity: 1;
  font-size: 1rem;
}
.contact-form button {
  width: 150px;
  height: 25px;
  border-radius: 7.5px;
  border: none;
  font-size: 1rem;
  font-family: "Quicksand", sans-serif;
  font-weight: bold;
  background-color: #004aad;
  color: white;
  transition: all 0.3s ease-in-out;
}

@media (max-width: 700px) {
  .contact-container {
    flex-direction: column;
    align-items: start;
    padding: 1rem;
    gap: 1rem;
  }
  .contact-content,
  .contact-form {
    max-width: 100%;
  }
}
@media (max-width: 350px) {
  .contact-form {
    min-width: 0px;
  }
}
