/* Contact Page Styles */

.contact-hero {
  position: relative;
  background: url('/images/banner_photos/contact-background.png') center center / cover no-repeat;
  color: white;
  text-align: center;
  padding: 6rem 2rem 4rem;
  min-height: 40vh;
  z-index: 0;
  margin-top: -30px;
}

.contact-page {
  position: relative;
  max-width: 600px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
  z-index: 5;
  margin: -400px auto 4rem;
  padding: 2rem;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.contact-hero h1,
.contact-hero p {
  position: relative;
  z-index: 2;
  margin: 0 auto;
  max-width: 800px;
}

.contact-hero h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.25rem;
  position: relative;
  z-index: 2;
}

.contact-page h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  text-align: center;
  /* color: var(--accent-text-primary, #1c93d2); */
  color: var(--accent-text-primary, #000000);
}

.contact-page p {
  text-align: center;
  font-size: 1.1rem;
  margin-bottom: 2rem;
  color: #4a5568;
}

/* Form Styles */
.contact-page form {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.contact-page label {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: #333333;
}

.contact-page input,
.contact-page textarea {
  width: auto;
  padding: 0.75rem 1rem;
  border: 1px solid #e2e8f0;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.contact-page input:focus,
.contact-page textarea:focus {
  border-color: #1c93d2;
  box-shadow: 0 0 0 3px rgba(28, 147, 210, 0.2);
  outline: none;
}

.contact-page textarea {
  min-height: 150px;
  resize: vertical;
}

/* Button Styles (reusing your btn-primary class) */
.btn-primary {
  background-color: var(--accent, #1c93d2);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  border: 2px solid var(--accent, #1c93d2);
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, box-shadow 0.3s ease;
}

.btn-primary:hover {
  background-color: #ffffff;
  color: var(--accent, #1c93d2);
  box-shadow: 0 4px 12px rgba(28, 147, 210, 0.25);
}

@media (max-width: 768px) {
  .contact-page {
    max-width: 90%;
    padding-left: 5%;
    padding-right: 5%;
    background-color: #ffffff;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    margin: -400px auto 4rem;
  }

  .contact-hero {
    padding: 5rem 1rem 3rem;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .contact-hero p {
    font-size: 1.1rem;
  }
}