.contact-page {
  padding: 6rem 2rem;
  background-color: #fffef8;
  font-family: 'Segoe UI', sans-serif;
}

.contact-title {
  font-size: 4rem;
  font-family: 'Georgia', serif;
  margin-bottom: 2rem;
  color: #2a2005;
  text-align: center;
}

.contact-section {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;               /* bigger gap for breathing */
  align-items: center;     /* vertically center form & image */
  justify-content: center; /* center horizontally if space */
  max-width: 1200px;
  margin: 0 auto;          /* center container */
  padding: 0 1rem;
}

.form-column {
  flex: 1 1 400px;         /* grow, shrink, min width */
  max-width: 550px;        /* limit max form width */
  background: #fffef8;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.welcome-text {
  margin-bottom: 1.5rem;
  font-size: 1.2rem;
  color: #444;
}

.contact-form .form-group {
  margin-bottom: 1.2rem;
  display: flex;
  flex-direction: column;
}

.contact-form label {
  font-weight: bold;
  margin-bottom: 0.5rem;
}

.contact-form input,
.contact-form textarea {
  padding: 0.8rem;
  border: 1px solid #ccc;
  border-radius: 0.6rem;
  font-size: 1rem;
  font-family: inherit;
}

.contact-form .form-row {
  display: flex;
  gap: 1rem;
}

.contact-form button {
  margin-top: 1rem;
  padding: 0.9rem 2rem;
  font-size: 1rem;
  background-color: #ffc600;
  color: #000;
  border: none;
  border-radius: 0.6rem;
  cursor: pointer;
  transition: background-color 0.3s;
  font-weight: 600;
  font-family: inherit;
}

.contact-form button:hover {
  background-color: #e6b200;
}

.image-column {
  flex: 1 1 350px;         /* grow, shrink, min width */
  max-width: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem;
  background: #fffef8;
  border-radius: 1rem;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
}

.image-column img {
  width: 100%;
  height: auto;
  border-radius: 1rem;
  object-fit: cover;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
}

/* Gallery styles */
.contact-gallery {
  margin-top: 4rem;
  display: flex;
  gap: 2rem;
  justify-content: center;
  flex-wrap: wrap;
}

.contact-gallery img {
  width: 100%;
  max-width: 300px;
  border-radius: 1.2rem;
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.07);
  object-fit: cover;
  transition: transform 0.3s ease;
}

.contact-gallery img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-section {
    flex-direction: column;
    padding: 0 2rem;
  }

  .form-column,
  .image-column {
    max-width: 100%;
    flex: 1 1 auto;
    padding: 1.5rem;
    margin-bottom: 2rem;
  
  }

  .image-column img {
    max-height: 350px;
  }
}

.form-column {
  align-items: center;
}
