/* contact.css */

.container h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  margin-bottom: 0.3rem;
}

.container h2 {
  font-family: 'Libre Baskerville', serif;
  font-weight: 300;
  color: #555;
  margin-bottom: 1.5rem;
}

.container p,
.container ul {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
  margin-bottom: 1.2rem;
}

.container ul li {
  margin-bottom: 0.4rem;
}

form {
  background-color: #fafafa;
  padding: 1.5rem;
  border-radius: 6px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

.form-group {
  margin-bottom: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
  display: block;
  margin-bottom: 0.25rem;
}

input[type="text"],
input[type="email"],
input[type="date"],
select,
textarea {
  font-size: 0.9rem;
  padding: 0.55rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}

input:focus,
select:focus,
textarea:focus {
  border-color: #5ff4f4;
  outline: none;
  box-shadow: 0 0 0 2px rgba(95, 244, 244, 0.2);
}

.btn-primary {
  background-color: #333;
  border-color: #333;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 0.6rem 1.2rem;
  font-size: 0.9rem;
  border-radius: 3px;
  transition: background-color 0.3s ease;
}

.btn-primary:hover {
  background-color: #5ff4f4;
  color: #000;
  border-color: #5ff4f4;
}

/* Adjust spacing on image and form container */
.row > div {
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .row > div {
    margin-bottom: 0;
  }
}

.contact-heading {
  text-align: center;
  margin-bottom: 1rem;
}

.contact-heading h1 {
  font-family: 'Playfair Display', serif;
  font-weight: 500;
  font-size: 2rem;
  margin-bottom: 0.4rem;
}

.contact-heading h2 {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  font-style: italic;
  color: #666;
  margin-top: 0;
}

.connection-blurb {
  font-family: 'Libre Baskerville', serif;
  font-size: 0.95rem;
  line-height: 1.7;
  background-color: #fafafa;
  padding: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 1.5rem;
  border-left: 4px solid #ccc;
  border-radius: 6px;
}

.response-expectations {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  line-height: 1.8;
  text-align: center;
  margin: 2rem auto;
  padding: 1.5rem 1rem;
  max-width: 850px;
}

.response-expectations ul {
  list-style-type: disc;
  padding-left: 1.5rem;
  margin-top: 1.2rem;
  text-align: left;
  display: inline-block;
}

.response-expectations li {
  margin-bottom: 0.75rem;
  font-size: 1.05rem;
}.form-image {
  max-width: 100%;
  max-height: 500px;
  width: auto;
  height: auto;
  object-fit: cover;
  border-radius: 6px;
  display: block;
  margin: 0 auto;
}.contact-submit {
  background-color: #333333;   /* Dark charcoal or any custom brand color */
  color: #ffffff;              /* White text */
  border: none;
  font-size: 1rem;
  padding: 10px 20px;
  border-radius: 4px;
  transition: background-color 0.3s ease;
}

.contact-submit:hover {
  background-color: #555555;   /* Slightly lighter on hover */
  color: #ffffff;
}