
/* CONTACT SECTION */
.contact-section {
  padding: 3em 0;
  background: #f4f1fa;
}
.contact-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
  width: 90%;
  margin: auto;
}

/* FORM */
.contact-form {
  background: white;
  padding: 2em;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  flex: 1;
  min-width: 320px;
}

.contact-form h3 {
  color: #1A1919;
  margin-bottom: 1em;
}

.contact-form label {
  display: block;
  text-align: left;
  margin-top: 1em;
  color: #1A1919;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.8em;
  margin-top: 0.4em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1em;
}

.submit-btn {
  margin-top: 1.5em;
  background: #635050;
  color: white;
  border: none;
  padding: 0.8em 1.5em;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.submit-btn:hover {
  background: #875252;
}

/* MAP */
.map-container {
  flex: 1;
  min-width: 320px;
}

.map-container h3 {
  color: #1A1919;
  margin-bottom: 1em;
}

.map-container iframe {
  width: 100%;
  height: 400px;
  border: none;
  border-radius: 8px;
}

/* Hero Section */
.hero {
  background: url('assets/imgs/mission.png') center/cover no-repeat;
  height: 50vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;

}
.hero .overlay {
  background: rgba(0,0,0,0.5);
  padding: 3rem 1rem;
  border-radius: 6px;
}
.hero h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;

}
.hero p {
  font-size: 1.2rem;
  opacity: 0.9;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .contact-content {
    flex-direction: column;
  }

  .footer-sections {
    flex-direction: column;
    text-align: center;
  }
}
