.contact-section {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  min-height: 70vh;
  font-family: 'Lato', sans-serif;
}

.reservation-note {
  font-size: 15px;
}

.contact-image {
  flex: 1;
  min-width: 50%;
  background-color: #eee;
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-info {
  flex: 1;
  min-width: 50%;
  background-color: white;
  padding: 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-family: 'Lato';
}

.contact-info h2 {
  font-size: 40px;
  font-weight: 300;
  margin-bottom: 40px;
  font-family: 'Melodrama', serif;
}

.contact-info h2 span {
  font-weight: 600;
  display: block;
}

.contact-details {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-box {
  flex: 1 1 200px;
}

.contact-box h3 {
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: 500;
  margin-bottom: 10px;
}

.contact-box p {
  font-size: 16px;
  line-height: 1.5;
}

.contact-box a {
  text-decoration: none;
  border-bottom: 1px solid grey;
  color: inherit;
}

.contact-box i {
  margin-right: 8px;
  color: #594835;
  /* Match your brand color */
}

/* General Form Styling */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  background-color: #f9f9f9;
}

.contact-form h2 {
  text-align: center;
  margin-bottom: 20px;
  font-size: 40px;
  color: #594835;
}

/* Form Group Styling */
.form-group {
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 10px;
  border: 1px solid #594835;
  border-radius: 4px;
  font-size: 16px;
}

.form-group input:focus,
.form-group select:focus {
  border-color: #594835;
  outline: none;
}

/* Submit Button Styling */
.form-group button {
  width: 50%;
  margin-top: 50px;
  padding: 20px;
  background-color: #594835;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-size: 18px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  display: block;
  margin-left: auto;
  margin-right: auto;

}

.form-group button:hover {
  background-color: #fab118;
}



/* ✅ Responsive Styling for Mobile */
@media (max-width: 768px) {
  .contact-section {
    flex-direction: column;
  }

  .contact-image,
  .contact-info {
    min-width: 100%;
    flex: none;
  }

  .contact-image {
    height: 200px;
  }

  .contact-image img {
    height: 200px;
    object-fit: cover;
  }

  .contact-info {
    padding: 40px 20px;
  }

  .contact-info h2 {
    font-size: 32px;
    text-align: center;
  }

  .contact-details {
    flex-direction: column;
    gap: 30px;
    text-align: center;
  }

  .contact-box {
    flex: 1 1 100%;
  }
}