/**
 * ===== Page title band (optional; remove if not used) =====
 *
 * @format
 */

body {
  background: rgb(248, 241, 244);
}

/* ===== Fix Subject (select) styling ===== */
select {
  width: 100%;
  padding: 2dvh 1vw;
  border: none;
  border-radius: 4px;
  background: #eff0f2;
  font-size: 14px;
  font-family: inherit;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
}

/* optional: better option text */
select option {
  /* font-size: 14px; */
  background: #fff;
  color: #000;
}
select:invalid {
  color: #000;
  opacity: 0.6;
  font-size: 14px;
}
.faqs_container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10dvh;
  background: rgba(0, 0, 0, 0.15);
  height: 6dvh;
  position: relative;
}
.faqs_container img {
  position: absolute;
  width: 8vw;
  opacity: 7%;
}
.faqs_container h2 {
  font-weight: normal;
  position: absolute;
  font-size: 14px;
}
.portfoli_gallery.brown {
  height: 2dvh;
  margin-top: 1dvh;
  /* background: #d9d9d9; */
}

/* ===== CTA button above the form (optional if you keep it) ===== */
.contact_page_btn,
.faqs_contact_btn {
  position: relative;
  left: 45.5%;
  margin: 15dvh 0 10dvh;
  background: #000;
  color: #fff;
  font-size: 14px;
  padding: 14px 26px;
  border: none;
  border-radius: 2px;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact_page_btn:hover,
.faqs_contact_btn:hover {
  opacity: 0.85;
}

/* ===== Contact / Booking form ===== */
.contact-section {
  padding: 30px 0;
}
/* outer container max-width only; keeps your layout intact */
.contact-form {
  max-width: 600px;
  margin: 0 auto;
}

.contact-section form {
  border: 2px solid #000;
  padding: 3vw;
  min-width: 60vw;
  border-radius: 4px;
}
.form-group {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 15px;
}
.form-column {
  flex: 1;
  display: flex;
  flex-direction: column;
}

label {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 5px;
  text-align: left;
  letter-spacing: 0.2vw;
  text-transform: capitalize;
  color: #000;
}
input,
textarea {
  width: 100%;
  padding: 2dvh 1vw;
  border: none;
  border-radius: 4px;
  background: #eff0f2;

  font-size: 14px;
}
#message {
  height: 30dvh;
  margin-top: 1.5dvh;
  resize: none;
}

.contact_form_btn {
  background: #000;
  color: rgba(255, 255, 255, 0.7);
  width: 100%;
  margin-top: 2dvh;
  padding: 10px 20px;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
}
.contact_form_btn:hover {
  opacity: 0.85;
}

/* ===== Date picker (Flatpickr) ===== */
/* style the visible text input created after your hidden #wedding-date */
#wedding-date + input[type="text"] {
  border: 1px solid #ccc;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  max-width: 300px;
  background: #eff0f2;
}
.flatpickr-calendar {
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.flatpickr-day.selected {
  background: #007bff;
  color: #fff;
  border-radius: 50%;
}
.flatpickr-day:hover {
  background: #f0f0f0;
  border-radius: 50%;
}

/* ===== WhatsApp bubble (if you use it) ===== */
.whatshapp {
  position: fixed;
  right: 2vw;
  bottom: 10vh;
  display: flex;
  align-items: center;
  z-index: 10;
}
.whatshapp h3 {
  font-size: 10px;
  font-weight: 100;
  padding: 8px 15px;
  background: #f5f7f9;
  border-radius: 5px;
}
.whatshapp img {
  width: 70px;
  height: auto;
  border-radius: 100px;
  transition: transform 0.3s;
}
.whatshapp img:hover {
  transform: scale(0.94);
}

/* ===== Mobile tweaks (form-only) ===== */
@media (max-width: 768px) {
  .faqs_container {
    height: 5dvh;
    /* position: fixed;
    width: 100vw;
    top: 0vh;  */
    margin-top: 8.7dvh;
  }
  .faqs_container img {
    width: 16vw;
  }
  .faqs_container h2 {
    font-size: 11px;
  }

  .contact-section form {
    /* margin-top: 8vh; */
    width: 95vw;
    padding: 3dvh 4vw;
    border: 1px solid #000;
    border-radius: 3px;
    min-width: unset;
  }
  .form-group {
    flex-direction: column;
    gap: 12px;
  }
  label {
    font-size: 12px;
  }
  input::placeholder {
    font-size: 12px;
  }

  .contact_page_btn {
    left: 31%;
    margin: 20px 0 0;
    padding: 10px 20px;
  }
  .whatshapp {
    right: 1vw;
  }
  .whatshapp h3 {
    padding-top: 7px;
    padding-bottom: 7px;
  }
}
