/* nn-form.css — enquiry form layout and field styling.
   Replaces the inline <style> that was lost when the HTML widget was removed. */

.custom-booking-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 20px;
}
@media (max-width: 767px) {
  .custom-booking-form .form-row { grid-template-columns: 1fr; }
}

.custom-booking-form .form-group { margin-bottom: 22px; }

.custom-booking-form label {
  display: block;
  margin-bottom: 8px;
  font-family: "Manrope", sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6B615A;
}

.custom-booking-form .wpcf7-form-control-wrap { display: block; width: 100%; }

.custom-booking-form input[type="text"],
.custom-booking-form input[type="email"],
.custom-booking-form input[type="tel"],
.custom-booking-form input[type="number"],
.custom-booking-form input[type="date"],
.custom-booking-form select,
.custom-booking-form textarea {
  width: 100%;
  box-sizing: border-box;
  padding: 13px 14px;
  background-color: #FFFFFF;
  border: 1px solid #DFD3BE;
  border-radius: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 15px;
  line-height: 1.45;
  color: #603620;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  transition: border-color 0.25s ease, background-color 0.25s ease;
}

/* selected value must read as solid, not greyed out */
.custom-booking-form select { color: #603620; opacity: 1; }
.custom-booking-form select option { color: #603620; }

/* chevron */
.custom-booking-form select {
  padding-right: 42px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1.5 L6 6.5 L11 1.5' fill='none' stroke='%23B56637' stroke-width='1.4' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px 8px;
}

.custom-booking-form input:focus,
.custom-booking-form select:focus,
.custom-booking-form textarea:focus {
  outline: none;
  border-color: #B56637;
  background-color: #FFFDF9;
}

.custom-booking-form input::placeholder,
.custom-booking-form textarea::placeholder { color: #B9AFA6; opacity: 1; }

.custom-booking-form input[type="date"] { min-height: 49px; }
.custom-booking-form input[type="date"]::-webkit-calendar-picker-indicator { opacity: 0.45; cursor: pointer; }

.custom-booking-form textarea { min-height: 120px; resize: vertical; }

/* ---------- Submit ---------- */
.custom-booking-form .form-submit-area { margin-top: 6px; }

.custom-booking-form input[type="submit"] {
  width: auto;
  padding: 18px 38px;
  background-color: #B56637;
  border: none;
  border-radius: 2px;
  color: #FCF9F2;
  font-family: "Manrope", sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.custom-booking-form input[type="submit"]:hover {
  background-color: #E2B98F;
  color: #231F20;
}

.custom-booking-form .submit-note {
  margin: 14px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  line-height: 1.65;
  color: #9A8F86;
}

/* ---------- CF7 messages ---------- */
.custom-booking-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 12.5px;
  color: #B54B37;
}
.custom-booking-form .wpcf7-not-valid { border-color: #B54B37 !important; }
.custom-booking-form .wpcf7-response-output {
  margin: 24px 0 0;
  padding: 14px 16px;
  border: 1px solid #DFD3BE;
  border-radius: 2px;
  font-family: "Manrope", sans-serif;
  font-size: 14px;
  line-height: 1.6;
}
.custom-booking-form form.invalid .wpcf7-response-output,
.custom-booking-form form.failed .wpcf7-response-output { border-color: #B54B37; color: #B54B37; }
.custom-booking-form form.sent .wpcf7-response-output { border-color: #5C7A4A; color: #3F5A31; }
.custom-booking-form .wpcf7-spinner { display: block; margin: 12px 0 0; }
