/* Contact Page Specific Styles */

/* Contact Page Styling */
.contact-page {
  width: 100%;
  min-height: 100vh;
}

/* Contact Hero Section */
.contact-hero {
  background-color: #d1e8e2;
  padding: 120px 0 0 0;
  text-align: center;
}

.contact-hero-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-hero-title {
  font-size: 4rem;
  font-weight: 600;
  color: var(--mp-color-black);
  margin-bottom: 2rem;
  font-family: 'Bauhaus Std', sans-serif;
}

.contact-hero-excerpt {
  font-size: 1.9rem;
  line-height: 1.6;
  font-weight: 500;
  color: var(--mp-color-black);
  margin-bottom: 16px;
  font-family: 'Avenir', sans-serif;
}

/* Contact Content Section */
.contact-content-section {
  background-color: #d1e8e2;
  padding: 80px 0 120px;
}

.contact-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.contact-content h2,
.contact-content h3,
.contact-content h4 {
  color: var(--mp-color-black);
  font-family: 'Bauhaus Std', sans-serif;
  margin-bottom: 1.5rem;
}

.contact-content p {
  color: var(--mp-color-black);
  font-family: 'Avenir', sans-serif;
  font-size: 1.6rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}

/* Contact Form Styling */
#contactForm {
  background: rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  padding: 40px;
  margin-top: 3rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.form-group {
  margin-bottom: 2rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--mp-color-black);
  font-family: 'Bauhaus Std', sans-serif;
  font-size: 1.4rem;
  margin-bottom: 0.5rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e0e0e0;
  border-radius: 8px;
  font-size: 1.4rem;
  font-family: 'Avenir', sans-serif;
  background: white;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: #4CAF50;
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

#contactForm button[type="submit"] {
  background: #4CAF50;
  color: white;
  border: none;
  padding: 15px 35px;
  border-radius: 8px;
  font-size: 1.4rem;
  font-weight: 600;
  font-family: 'Bauhaus Std', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

#contactForm button[type="submit"]:hover {
  background: #45a049;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(76, 175, 80, 0.3);
}

.cf-turnstile {
  margin: 2rem 0;
}

/* Mobile Responsiveness for Contact Page */
@media (max-width: 768px) {
  .contact-hero {
    padding: 80px 0 60px;
  }

  .contact-hero-title {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
  }

  .contact-hero-excerpt {
    font-size: 1.6rem;
  }

  .contact-content-section {
    padding: 60px 0 80px;
  }

  #contactForm {
    padding: 30px 20px;
    margin-top: 2rem;
  }

  .form-group input,
  .form-group textarea {
    font-size: 1.6rem;
  }

  #contactForm button[type="submit"] {
    width: 100%;
    font-size: 1.6rem;
  }
}
