/*Morder Room Section CSS*/
.room-section {
  position: relative;
  width: 100%;
  background: url("file:///C:/Users/kinja/Downloads/hotale_html/hotale_html/upload/imgs/room_slider.jpg") no-repeat center center/cover;
  padding: 80px 0;
  z-index: 1;
}

.room-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(10, 42, 83, 0.6); /* Dark blue overlay (adjust color/opacity) */
  z-index: -1; /* keep overlay behind content */
}

/* Container for content */
.room-container {
  max-width: 1200px;
  margin: auto;
  padding: 0 20px;
}

/* Featured room (big box) */
.featured-room {
  display: flex;
  flex-wrap: wrap;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 60px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

/* Left side image */
.featured-room img {
  width: 60%;
  object-fit: cover;
  display: block;
}

/* Right side info */
.room-info {
  flex: 1;
  padding: 50px 40px;
  border: 2px solid #f1c40f; /* yellow border like screenshot */
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.room-info h2 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 15px;
  color: #222;
}

/* Decorative yellow separator */
.room-info .separator {
  width: 60px;
  height: 2px;
  background: #f1c40f;
  margin: 0 auto 25px auto;
}

.room-info p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 25px;
  font-family: Helvetica Neue;
}

/* Price styling */
.room-price {
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 25px;
  color: #000;
  font-family: Helvetica Neue;
}

.room-price span {
  font-size: 14px;
  font-weight: normal;
  margin-left: 6px;
  color: #777;
  font-family: Helvetica Neue;
}

/* Book Now button */
.btn-book {
  background: #EFC175;
  color: #222;
  padding: 14px 35px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 4px;
  display: inline-block;
  transition: background 0.3s;
  font-family: 'Helvetica Neue';
}

.btn-book:hover {
  background: #cc5a27;
  color: #fff !important;
}

a.btn-book {
  color: #222;
}

/* Room list (3 cards) */
.room-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: -200px;
}

.room-card {
  background: #fff;
  overflow: hidden;
  width: 320px;
  text-align: center;
  transition: transform 0.3s;
  padding: 15px;
  position: sticky;
}

.room-card:hover {
  transform: translateY(-5px);
}

.room-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
}

.room-card h3 {
  padding: 15px;
  font-size: 18px;
  color: #222;
  margin: 0;
}

/* Responsive */
@media (max-width: 900px) {
  .featured-room {
    flex-direction: column;
  }
  .featured-room img {
    width: 100%;
    height: 300px;
  }
  .room-info {
    border-left: none;
    border-top: 2px solid #f1c40f;
  }
}

/**End Of This css**/

/**Welcome to Queenstown Section**/
/* Section */
.welcome-section {
  padding: 60px 20px;
  background: #fff;
  font-family: Arial, sans-serif;
  margin-top: 200px;
}
.container { max-width: 1200px; margin: 0 auto; }

/* ===== Title block ===== */
.section-title {
  text-align: center;
  margin: 0 auto 48px;
  max-width: 900px;
}
.section-title h2 {
  font-size: 40px;           /* big like your ref */
  font-weight: 700;
  color: #111;
  margin: 0 0 12px;
}
.section-title .title-sep{
  width: 80px;
  height: 3px;
  background:#d4af37;        /* gold */
  margin: 0 auto 14px;
}
.section-title p{
  margin:0;
  color:#555;
  font-size:16px;
  line-height:1.6;
  font-family: Helvetica Neue;
}

/* ===== Two-column with overlap ===== */
.welcome-container{
  display:flex;
  align-items:flex-start;
  gap:30px;
  position:relative;
  flex-wrap:wrap;
}
.welcome-image{
  flex: 1 1 560px;
  max-width: 560px;
  position: relative;
  z-index: 2;
  margin-right: -81px;
  top: 75px;
  border: 15px solid #ffff;
}
.welcome-image img{
  width:100%;
  display:block;
  border-radius:6px;
}

.welcome-text{
  flex:1 1 520px;
  border:6px solid #BD9535;   /* gold border */
  background:#fff;
  padding-top: 55px;
  padding-right: 55px;
  padding-left: 100px;
  padding-bottom: 45px;
  z-index:1;
}
.welcome-text h3{
  margin:0 0 18px;
  font-size:26px;
  font-weight:700;
  color:#111;
  margin-bottom: 10px;
}
.welcome-text .heading-line, .nearby-heading .heading-line {
  border: none;
  border-top: 2px solid #FDCF9C;
  width: 60px;
  margin: 20px auto 20px 0;
}
.welcome-text p{
  margin:0 0 20px;
  color:#444;
  line-height:1.7;
  font-size:15px;
  margin-top: 0;
  font-family: Helvetica Neue;
}

/* Button */
.btn-read{
  display:inline-block;
  padding:12px 28px;
  background:#004225;
  color:#fff !important;
  text-decoration:none;
  font-weight:600;
  border-radius:4px;
  transition:.3s;
  font-family: Helvetica Neue;
}
.btn-read:hover{ 
  background:#ffffff; 
  color:#000000 !important;
  border: solid #004225; 
}
/* Mobile adjustments */
@media (max-width: 900px){
  .section-title h2{ font-size:32px; }
  .welcome-container{ gap:20px; }
  .welcome-image{ margin-right:0; }     /* remove overlap on small screens */
  .welcome-text{ 
    padding-left: 28px;
    padding-right: 28px; 
  }
}

/**/

/**Nearby Section css**/

.nearby-outer {
  margin: 100px auto 0 auto;
}

.nearby-header-outer {
  text-align: center;
}

.img-list-outer {
  display: flex;
}

.letf-image,.right-text {
  width: 50%;;
}
.tourmaster-room-date-selection .tourmaster-tail {
  background-color: white;
}

.custom-image-grid {
  max-width: 1200px; /* control max size */
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px; /* space between rows */
}

.image-row img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 6px; /* optional */
  object-fit: cover;
}

/* Two column layout for bottom row */
.image-row.squares {
  display: flex;
  gap: 20px;
}

.image-row.squares .image-col {
  flex: 1;
}

.image-row.squares img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Transparent form wrapper */
.hb-search-form-68bacdf740704 {
  display: flex;
  flex-wrap: nowrap; /* inline on desktop */
  gap: 15px;
  background: transparent;
  padding: 30px 20px;
  align-items: center;
  justify-content: center;
  max-width: 1200px;
  margin: 0 auto; /* center form */
}

/* UL behaves like flex row */
.hb-form-table {
  display: flex;
  flex-wrap: nowrap;
  gap: 15px;
  padding: 0;
  margin: 0;
  list-style: none;
}

/* Each field same size */
.hb-form-field {
  flex: 1 1 200px;
  /* min-width: 180px; */
}

/* Inputs and selects styled the same */
.hb_input_field input[type="text"],
.hb_input_field select {
  width: 100%;
  height: 48px;
  padding: 0 15px;
  font-size: 14px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background: #fff;
  transition: border-color 0.3s, box-shadow 0.3s;
  box-sizing: border-box;
  appearance: none;
  line-height: 1.5;
  font-family: Helvetica Neue;
}

/* Hover/Focus */
.hb_input_field input[type="text"]:focus,
.hb_input_field select:focus {
  border-color: #e66a31;
  box-shadow: 0 0 6px rgba(230,106,49,0.4);
  outline: none;
  background: #fff;
}

/* Submit button */
.hb-submit {
  flex: 0 0 auto;
}

.hb-submit button {
  height: 48px;
  padding: 0 30px;
  background: #EFC175;
  color: #004225;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
  font-family: Helvetica Neue;
}

.hb-submit button:hover {
  background: #cc5a27;
  color: #fff;
  transform: translateY(-2px);
}

/* ============================= */
/* ✅ Responsive adjustments */
/* ============================= */

/* Tablets: stack in 2 rows */
@media (max-width: 991px) {
  .hb-search-form-68bacdf740704 {
    flex-wrap: wrap;
    justify-content: center;
  }
  .hb-form-table {
    flex-wrap: wrap;
    width: 100%;
    justify-content: center;
  }
  .hb-form-field {
    flex: 1 1 45%;
    min-width: 220px;
  }
  .hb-submit {
    flex: 1 1 100%;
    text-align: center;
    margin-top: 15px;
  }
  .hb-submit button {
    width: 100%;
  }
}

/* Mobile: stack fields vertically */
@media (max-width: 575px) {
  .hb-form-field {
    flex: 1 1 100%;
    min-width: 100%;
  }
  .hb-submit button {
    width: 100%;
  }
}

/* Background */
.testimonial-section {
  background: url("../images/bg-img-01-2.jpg") no-repeat center center;
  background-size: cover;
  padding: 100px 20px;
  color: #fff;
  text-align: center;
  position: relative;
}

.testimonial-section::before {
  content: '';
  height: 100%;
  width: 100%;
  background-color: #000000;
  display: inline-block;
  top: 0;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.7;
}

/* Testimonial box */
.testimonial-item {
  max-width: 700px;
  margin: 0 auto;
}

.testimonial-text {
  font-size: 18px;
  font-style: italic;
  margin-bottom: 20px;
  line-height: 1.6;
  margin-top: 40px;
  font-family: Helvetica Neue;
}

/* Client name */
.client-name {
  font-weight: bold;
  margin-bottom: 10px;
  margin-top: 25px;
  font-family: Helvetica Neue;
}

/* Client image */
.testimonial-item .client-img img {
  width: auto;
  max-width: 60px;
  height: auto;
  border-radius: 50%;
  border: 2px solid #fff;
  display: block;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 45px;
}
/**/

.testimonial-section::before{
  content: '';
  height: 100%;
  width: 100%;
  background-color: #000000;
  z-index: 1;
}

.testimonial-section h2{
  color: #fff;
  font-weight: 900;
  position: relative;
  z-index: 2; /* keeps title above overlay */
  margin-bottom: 15px;
}

.testimonial-sep{
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
  display: inline-block;
}

.stats-section {
  padding: 60px 20px;
  background: #ffffff; /* dark background */
  color: #000000;
}

.stats-container {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  gap: 40px;
}

.stats-counters {
  flex: 1;
  display: grid;
  gap: 14px;
}

.counter-box {
  display: flex;
  align-items: center;
  gap: 50px;
}

.counter-icon-wrap {
  font-size: 50px;
  color: #EFC175;
  min-width: 50px;
  text-align: center;
}

.counter-info {
  display: flex;
  flex-direction: column;
}

.counter-number {
  display: inline-block;
  vertical-align: middle;
  font-size: 50px;
  font-weight: 400;
  margin: 0;
  line-height: normal;
  font-family: 'Montserrat';
}

.counter-suffix {
  margin-left: 4px;
  font-size: 28px;
  font-weight: 600;
}

.counter-title {
  font-size: 16px;
  font-weight: 500;
  margin: 0;
  color: #000000;
  margin: 5px 0 0 4px;
  width: 100%;
  font-family: Crimson Text Roman;
  font-size: 22px;
}

.stats-image {
  flex: 1;
  text-align: center;
}

.stats-image img {
  max-width: 100%;
  height: auto;
  border-radius: 10px;
}

span, article , em, .hotale-single-author-wrap , p {
  font-family: "Helvetica Neue";
}
