/*
 Theme Name:   ClubWeeks
 Theme URI:    https://www.clubweeks.com
 Description:  Custom child theme for ClubWeeks based on Hello Elementor
 Author:       ClubWeeks Dev Team
 Author URI:   https://www.clubweeks.com
 Template:     hello-elementor
 Version:      1.0.0
*/

body {
    background-color: #fff;
}
/* Style Submit Listing form wrapper */
.hp-form {
  background: #fff;
  border: 1px solid #ddd;
  padding: 30px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

/* Labels + Inputs */
.hp-form .hp-field-label {
  font-weight: 600;
  margin-bottom: 6px;
  display: block;
}
.hp-form input, 
.hp-form select, 
.hp-form textarea {
  border: 1px solid #ccc;
  padding: 10px 12px;
  border-radius: 4px;
  width: 100%;
  font-size: 15px;
}

/* Multi-step navigation (details/images/review) */
.hp-form-steps {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.hp-form-steps li {
  flex: 1;
  text-align: center;
  font-weight: 600;
  color: #999;
}
.hp-form-steps li.hp-current {
  color: #d32f2f; /* RedWeek red */
  border-bottom: 3px solid #d32f2f;
}

/* Submit button */
.hp-form .hp-submit {
  background: #d32f2f;
  color: #fff;
  padding: 12px 20px;
  border-radius: 6px;
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
}
.hp-form .hp-submit:hover {
  background: #b71c1c;
}

/* ===============================
   HivePress Submit Listing - RedWeek Layout (Improved)
=============================== */

/* Row 1: Availability (Check-in, Check-out, Nights) */
.hp-form__field:has([name="checkin"]),
.hp-form__field:has([name="checkout"]),
.hp-form__field:has([name="nights"]) {
  display: inline-block;
  width: 32%;
  margin-right: 2%;
  vertical-align: top;
}
.hp-form__field:has([name="nights"]) { margin-right: 0; }

/* Row 2: Bedrooms + Sleeps */
.hp-form__field:has([name="bedrooms"]),
.hp-form__field:has([name="sleeps"]) {
  display: inline-block;
  width: 48%;
  margin-right: 4%;
  vertical-align: top;
}
.hp-form__field:has([name="sleeps"]) { margin-right: 0; }

/* Row 3: Bed types (full width dropdowns) */
.hp-form__field:has([name="bedtypes"]) {
  width: 100%;
  display: block;
  margin-bottom: 20px;
}

/* Row 4: Bathrooms + Kitchen */
.hp-form__field:has([name="bathrooms"]),
.hp-form__field:has([name="kitchen"]) {
  display: inline-block;
  width: 48%;
  margin-right: 4%;
  vertical-align: top;
}
.hp-form__field:has([name="kitchen"]) { margin-right: 0; }

/* Row 5: View from Unit + Unit/Building */
.hp-form__field:has([name="viewfromunit"]),
.hp-form__field:has([name="unitbuilding"]) {
  display: inline-block;
  width: 48%;
  margin-right: 4%;
  vertical-align: top;
}
.hp-form__field:has([name="unitbuilding"]) { margin-right: 0; }

/* Improve label appearance */
.hp-form .hp-field-label,
.hp-form label {
  font-weight: 600;
  font-size: 15px;
  color: #333;
  margin-bottom: 6px;
  display: inline-block;
}
