/* ================= TAB SECTION ================= */

.tab-buttons {
  display: flex;
  justify-content: flex-start;
  gap: 10px;
  margin-bottom: 0;
  border-bottom: 5px solid #292d6c;
  padding-bottom: 5px;
  flex-wrap: nowrap;
}

.tab-buttons .tab-link {
  flex: 1;
  min-width: 120px;
  padding: 10px 0;
  border: none;
  background-color: #fcce08;
  color: #292d6c;
  cursor: pointer;
  text-align: center;
  font-size: 16px;
  transition: background-color 0.3s;
}

.tab-buttons .tab-link.active {
  background-color: #292d6c;
  color: #fff;
  font-weight: bold;
}

.tab-content {
  display: none;
  padding: 15px;
  background-color: #ffffff;
  margin-bottom: 20px;
  border: none;
}

@media screen and (max-width: 400px) {
  .tab-buttons .tab-link {
    font-size: 14px;
    padding: 8px 0;
  }
}










/* ================= AMENITIES GRID ================= */

.amenities-section {
  margin-bottom: 25px;
}

.amenities-section-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 16px;
  grid-column: 1 / -1;
}

.amenities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.amenity-item {
  display: flex;
  align-items: center;
  font-size: 14px;
  line-height: 1.4;
}

.amenity-item img {
  width: 24px;
  height: 24px;
  margin-right: 8px;
}

@media screen and (max-width: 768px) {
  .amenities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media screen and (max-width: 400px) {
  .amenities-grid {
    grid-template-columns: 1fr;
  }
  .amenity-item {
    font-size: 13px;
  }
}


/* ================= LIGHTBOX & GALLERY ================= */

.gallery-container {
  width: 90%;
  max-width: 900px;
  margin: 0 auto 40px auto;
}

.gallery-main img {
  width: 100%;
  height: auto;
  display: block;
  border: 2px solid #fcce08;
  border-radius: 5px;
  cursor: pointer;
}

.gallery-thumbnails {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 10px;
  gap: 10px;
}

.gallery-thumbnails img {
  width: 120px;
  height: 80px;
  object-fit: cover;
  cursor: pointer;
  border: 2px solid #ffffff;
  border-radius: 3px;
  transition: border 0.2s;
}

.gallery-thumbnails img:hover,
.gallery-thumbnails img.active {
  border: 2px solid #fcce08;
}

#lightboxOverlay {
  display: flex;
}


    /* Lightbox arrows and close button styling */
    #lightboxOverlay {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background: rgba(0,0,0,0.9);
      justify-content: center;
      align-items: center;
      z-index: 9999;
    }

    #lightboxImg {
      max-width: 90%;
      max-height: 90%;
      border: 4px solid #fcce08;
      border-radius: 5px;
    }

    .lightbox-btn {
      position: absolute;
      top: 50%;
      transform: translateY(-50%);
      color: white;
      font-size: 40px;
      font-weight: bold;
      padding: 10px 20px;
      cursor: pointer;
      user-select: none;
      background: rgba(0,0,0,0.4);
      border-radius: 5px;
    }

    .lightbox-btn:hover {
      background: rgba(252,206,8,0.7);
      color: black;
    }

    #prevBtn { left: 30px; }
    #nextBtn { right: 30px; }

    #closeBtn {
      position: absolute;
      top: 30px;
      right: 40px;
      color: white;
      font-size: 40px;
      font-weight: bold;
      cursor: pointer;
      background: rgba(0,0,0,0.4);
      padding: 5px 15px;
      border-radius: 5px;
    }

    #closeBtn:hover {
      background: rgba(252,206,8,0.7);
      color: black;
    }


/* ================= ACCOMMODATION CARDS ================= */

.accommodation-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  width: 90%;
  margin: 0 auto;
}

.accommodation-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 15px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.accommodation-card h3 {
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.accommodation-card img {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 12px;
}

.accommodation-card p {
  font-size: 14px;
  margin-bottom: 6px;
}

.accommodation-card .rate {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 6px;
}

.accommodation-card .guest {
  font-size: 16px;
  font-weight: bold;
  color: #03a9ce;
  margin-bottom: 6px;
}

.accommodation-card p.cleaning-deposit {
  font-size: 13px;
  margin: 0;
  line-height: 1.2;
}

.accommodation-card .unit-code {
  display: block;
  text-align: center;
  font-size: 12px;
  color: #555;
  margin-bottom: 8px;
}

.factsheet-btn {
  display: inline-block;
  margin-top: 12px;
  padding: 10px 18px;
  background: #fcce07;
  color: #292d2d;
  text-decoration: none;
  font-weight: bold;
  font-size: 13px;
  border-radius: 6px;
  letter-spacing: 1px;
  transition: 0.2s;
}

.factsheet-btn:hover {
  background: #e3b805;
}

@media (max-width: 992px) {
  .accommodation-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .accommodation-container {
    grid-template-columns: 1fr;
  }
}


/* ================= ACCOMMODATION NOTICE ================= */

.accommodation-notice {
  background: #292d6c;
  padding: 20px 25px;
  margin: 0 auto 30px auto;
  border-radius: 10px;
  color: #ffffff;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 80%;
}

.accommodation-notice h2 {
  margin: 0 0 12px 0;
  letter-spacing: 2px;
  font-size: 20px;
  text-transform: uppercase;
  text-align: center;
  color: #ffffff;
}

.accommodation-notice ul {
  margin: 0;
  padding-left: 20px;
}

.accommodation-notice li {
  font-size: 14px;
  margin-bottom: 8px;
}

@media (max-width: 600px) {
  .accommodation-notice {
    width: 95%;
  }
}


/* ================= INLINE INFO STRIP ================= */

.accommodation-info {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-size: 14px;
  margin: 10px 0;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 5px;
}

.info-item img {
  width: 30px;
  height: 30px;
}

.divider {
  color: #888;
  font-weight: bold;
}



/* ================= PRICE BLOCK ON FACTSHEET ================= */


.price-block {
  text-align: center;
}

.price-block .rate {
  font-size: 22px; /* bigger font for rate */
  margin-bottom: 8px; /* space below rate */
}

.price-block .cleaning-deposit {
  font-size: 14px;
  margin: 2px 0; /* minimal vertical spacing between fee and deposit */
}



/* ================= H2 hotel name ================= */


  h2.hotel-name {
    font-size: 26px;         /* slightly larger than default */
    color: #292d6c;
    font-weight: 700;       /* extra bold */
    text-align: center;     /* keeps alignment consistent */
    margin-top: 8px;        /* reduce space between h1 and h2 */
    letter-spacing: 0.5px;  /* optional subtle refinement */
  }
