/* General Section Styling */
.contact-section {
  padding: 40px 20px;
  background-color: #f9f9f9;
}

.contact-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px;
  align-items: stretch; /* Ensures equal height for map and form */
}

/* Map Column */
.contact-map {
  flex: 1;
  max-width: 700px;
  width: 100%;
  margin-bottom: 10px; /* Spacing when stacked on mobile */
}

.contact-map iframe {
  width: 100%;
  height: 100%; /* Ensures it stretches to match container */
  border: none;
  border-radius: 12px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* Form Column */
.contact-form-container {
  flex: 1;
  max-width: 700px;
  width: 100%;
  background-color: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  justify-content: center; /* Centers content vertically */
}

.contact-heading {
  font-size: 1.8rem;
  color: #e53e3e;
  margin-bottom: 15px;
  text-align: center;
}

.contact-description {
  font-size: 1.2rem;
  color: #666;
  margin-bottom: 25px;
  text-align: center;
}

.contact-form {
  width: 100%;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  font-weight: bold;
  display: block;
  margin-bottom: 5px;
  color: #333;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 1rem;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #e53e3e;
  outline: none;
  box-shadow: 0 0 6px rgba(229, 62, 62, 0.3);
}

.submit-button {
  background-color: #e53e3e;
  color: #ffffff;
  padding: 12px 25px;
  border: none;
  border-radius: 6px;
  font-size: 1.1rem;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.submit-button:hover {
  background-color: #cc2e2e;
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact-container {
    flex-direction: column;
    align-items: center;
  }

  .contact-map,
  .contact-form-container {
    max-width: 100%;
    margin-bottom: 20px;
  }

  .contact-map iframe {
    height: 300px; /* Adjust map height for smaller screens */
  }

  .contact-heading {
    font-size: 1.6rem;
  }

  .contact-description {
    font-size: 1rem;
  }

  .submit-button {
    font-size: 1rem;
    padding: 10px 20px;
  }
}

/* Additional Utility Classes */
.contact-iframe {
  border-radius: 1rem;
  width: 100%;
  height: 50vh; /* Matches form height for consistency */
}



form {
  padding: 0;
  margin: 0;
  max-width: 100%;
}
.menu-button-calender-slide
{
  background-color: white;
  border-radius: 20px;
  border: 2px solid rgb(235, 213, 71);
  width: 100%;
  margin-left: 60px;
  color: rgb(4, 4, 4);
}
.menu-button-calender-slide img {
  border-radius: 10%; /* Make the image inside the button round */
  width: 100%;
  height: 100%; /* Adjust the height to match the width */
  object-fit: cover; /* Ensures the image fits the container without distortion */
}
button img {
  display: block;
}
  @media (max-width: 768px) {
    .menu-button-calender-slide {
      margin-left: 0; /* Reset left margin */
      margin-right: 0; /* Ensure no unintended right margin */
      margin: 0 auto; /* Center-align the element */
      text-align: center; /* Align text or content inside */
      width: auto; /* Adjust width to fit the content */
    }
    
    /* Ensure the image inside scales properly */
    .menu-button-calender-slide img {
      display: block;
      margin: 0 auto; /* Center the image inside the button */
      max-width: 100%; /* Prevent the image from overflowing */
      height: auto; /* Maintain aspect ratio */
    }
  }