/* Contact Styles */

#contact-hero-container {
  display: flex;
  flex-direction: column;
}

#contact-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
  margin: 1rem;
  font-size: 1.5rem;
  color: var(--button-color);
}

#contact-subtitle {
  font-size: 2.5rem;
  color: #000000;
  margin-bottom: 2rem;
  margin: 0 1rem;
}

#contact-text {
  font-size: 1.25rem;
  color: #475569;
  margin-bottom: 2rem;
  margin: 0 1rem;
}

#contacts-container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
  justify-content: center;
  margin-top: 2rem;
}

.contact-card {
  display: flex;
  gap: 1rem;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  margin-bottom: 2rem;
  width: 70%;
}

.left-section {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.left-section h1 {
  font-size: 1.5rem;
  font-weight: bold;
  color: #000000;
}

.left-section p {
  font-size: 1.25rem;
  color: #475569;
}

/*message section styles*/

#message-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.input {
  width: 70%;
  padding: 0.75rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.25rem;
  margin-bottom: 1rem;
}

#submit-btn {
  background-color: var(--button-color);
  color: #fff;
  border: none;
  padding: 1rem 1.75rem;
  font-size: 1.25rem;
  cursor: pointer;
  border-radius: 5px;
  width: 70%;
  transition: box-shadow 0.3s;
  margin-bottom: 2rem;
}

#submit-btn:hover {
  background-color: #3e37b8;
}

/*responsive styles*/

@media (min-width: 768px) {
  #contact-text-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
  }

  #contact-title {
    font-size: 2.5rem;
  }
  #contact-subtitle {
    font-size: 3rem;
  }
  #contact-text {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    margin: 0 1rem;
    text-align: center;
  }

  
  #message-container {
    width: 50%;
     padding: 2rem;
     margin: 0 auto;
  }
}

@media (min-width: 1024px) {
  .contact-card {
    width: 30%;
  }
  #contacts-container {
    flex-direction: row;
    justify-content: center;
    padding: 0 2.5rem;
    margin-top: 4rem;
  }
}