/* Contact */

.contact_section {
  padding: 60px 20px;
  /* margin-top: 1rem; */
}

.contact_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.contact-text {
  flex: 1 1 500px;
  max-width: 600px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  color: #E91E63;
  font-style: italic;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 10px;
}

.about-text h1 {
  font-size: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: #2C2C2C;
}

.about-text .desc {
  color: #666;
  margin-bottom: 20px;
  line-height: 1.7;
  margin-top: 1rem;
}

.contact-image {
  flex: 1 1 300px;
  position: relative;
  margin-top: 1.5rem;
  margin-left: 1rem;
}

.contact-image img {
  width: 100%;
  max-width: 400px;
  border-radius: 50%;
  object-fit: cover;
}

/* Responsive */
@media (max-width: 768px) {
  .contact_container {
    flex-direction: column;
    align-items: center;
  }

  .about-text h1 {
    font-size: 28px;
  }

  .contact-image {
    text-align: center;
  }
}

.contact-form h2 {
  font-size: 2.2rem;
  color: #000;
  margin-bottom: 0 !important;
  margin-top: 1rem;
}

.contact-form h2 span {
  color: #E91E63;
  font-style: italic;
}

.contact-form form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}

.form-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

input, textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid #ccc;
  font-size: 1rem;
  border-radius: 5px;
  resize: vertical;
}

.form-row input {
  flex: 1;
}

textarea {
  min-height: 120px;
}

.btn {
  width: max-content;
  padding: 0.7rem 1.5rem;
  background-color: #E91E63;
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
  border-radius: 3px;
}

.btn:hover {
  background-color: lightpink;
} 



/* ========== 1024px SCREENS ========== */
@media (max-width: 1024px) {

  .form-row {
    flex-direction: column;
  }
  .contact-form h2 {
    font-size: 2rem;
  }
}

/* ========== 600px SCREENS ========== */
@media (max-width: 600px) {
  .contact-form h2 {
    font-size: 1.6rem;
    text-align: center;
  }

  .contact-form form {
    gap: 0.8rem;
  }

  input, textarea {
    font-size: 0.95rem;
    padding: 0.7rem 0.9rem;
  }

  button {
    align-self: center;
  }
}
