/* Contact Hero Section */
.contact-hero {
  background: url('../../images/contact/dark-logo-banner.png') center center / cover no-repeat;
  background-repeat: no-repeat;
  background-size: contain; /* Fit image within area without zoom */
  background-position: center;
  background-color: #000; /* fallback background */
  color: #fff;
  text-align: center;
  padding: 5rem 2rem;
  border-bottom: 3px solid #d4af37;
  position: relative;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.4); /* dark overlay for readability */
  z-index: 1;
}

.contact-hero h1,
.contact-hero p {
  position: relative;
  z-index: 2;
}

.contact-hero h1 {
  font-size: 2.4rem;
  color: #fff;
  border-bottom: 2px solid #d4af37;
  display: inline-block;
  padding-bottom: 0.5rem;
  margin-bottom: 1rem;
}

.contact-hero p {
  font-size: 1.1rem;
  color: #fff;
  max-width: 700px;
  margin: 0 auto;
}

/* Contact Section Layout */
.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
  padding: 4rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
}

.contact-form-area, .contact-info {
  flex: 1 1 400px;
}

/* Contact Form */
.contact-form-area h2 {
  font-size: 1.8rem;
  color: #000;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #d4af37;
  padding-bottom: 0.5rem;
  display: inline-block;
}

.contact-form {
  background-color: #f8f8f8;
  padding: 2rem;
  border-left: 4px solid #d4af37;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  max-width: 500px;
  margin: 0 auto;
}

.contact-form label {
  font-weight: bold;
  display: block;
  margin-top: 1.2rem;
  color: #000;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  margin-top: 0.3rem;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1rem;
  background-color: #fff;
  color: #333;
}

.contact-form textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form .submit-btn {
  background-color: #000;
  color: #fff;
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid #d4af37;
  margin-top: 1.5rem;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.contact-form .submit-btn:hover {
  background-color: #d4af37;
  color: #000;
}

/* Contact Info Block */
.contact-details h2 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
}

.contact-details p {
  margin-bottom: 1rem;
  line-height: 1.6;
  color: var(--black);
}

.obfuscated-email {
  padding: 4px 10px;
  border-radius: 4px;
  display: inline-block;
}

/* Mobile Layout */
@media (max-width: 768px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .contact-hero h1 {
    font-size: 2rem;
  }
}
