/* ==============================
   GLOBAL RESET
================================ */
* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: "Jost", sans-serif;
  background: #f3f6fb;
}

/* ==============================
   ROOM DETAILS WRAPPER
================================ */
.th-room-details-wrap {
  padding: 40px 0 60px; /* container closer to header */
  width: 100%;
}

.th-room-details-wrap .container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

.th-room-details-box {
  background: #ffffff;
  border-radius: 14px;
  padding: 1px 50px 50px 50px;
}

@media (max-width: 992px) {
  .th-room-details-box {
    padding: 35px;
  }
}

/* ==============================
   TITLE + STARS + ADDRESS
================================ */
.th-room-details-wrap h2 {
  font-size: 38px;
  font-weight: 700;
  margin-bottom: 8px;
  background-color: #b0822d;
  padding: 10px 10px 10px 50px;
  margin-left: -50px; 
  margin-right: -50px;  
  color: #ffffff;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 5px; 
}

.th-hotel-address {
  font-size: 16px;
  color: #777;
  margin-bottom: 12px;
}

.th-rating span {
  color: #f5b50a;
  font-size: 18px;
  margin-right: 2px;
}

/* ==============================
   IMAGE COLLAGE
================================ */
.th-image-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: 8px;
  border-radius: 14px;
  overflow: hidden;
  margin: 40px 0 55px;
  position: relative;
}

.th-image-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: pointer;
  display: block;
}

/* Collage pattern */
.th-image-item:nth-child(1) { grid-column: 1 / span 3; grid-row: 1 / span 2; }
.th-image-item:nth-child(2) { grid-column: 4; grid-row: 1; }
.th-image-item:nth-child(3) { grid-column: 4; grid-row: 2; }
.th-image-item:nth-child(4) { grid-column: 1; grid-row: 3; }
.th-image-item:nth-child(5) { grid-column: 2; grid-row: 3; }
.th-image-item:nth-child(6) { grid-column: 3; grid-row: 3; }

@media (max-width: 768px) {
  .th-image-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .th-image-item:nth-child(n) { grid-column: auto; grid-row: auto; }
}

.th-image-item.th-view-more-btn {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Dark overlay */
.th-image-item.th-view-more-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.45);
}

/* +12 Photos text */
.th-image-item.th-view-more-btn span {
  position: relative;
  z-index: 1;
  color: #fff;
  font-size: 20px;
  font-weight: 600;
}

/* ==============================
   ARRIVAL / INFO CARDS
================================ */
.th-arrival ul {
  list-style: none;
  padding: 0;
  margin: 0 0 60px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.th-arrival-box {
  background: #303d52;
  border: 1px solid #1876d1;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

.th-arrival-box strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: #ffffff;
  font-size: 1.2rem;
}

.th-arrival-box i {
  color: #b0822d;
  font-size: 1.7rem;
  margin-right: 15px;
}
.th-arrival-box p {
   color: #ffffff;
   font-size: 1.1rem;
}
@media (max-width: 768px) {
  .th-arrival ul {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   DESCRIPTION
================================ */
.th-about-space {
  max-width: 1000px;
  border-bottom: 1px solid #ececec;
  padding-bottom: 20px;
}

.th-about-space h4 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.th-about-space p {
  font-size: 18px;
  line-height: 30px;
  color: #333;
}

/* ==============================
   MAP
================================ */
#hotelMap {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: solid 5px #303d52;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
}

/* ==============================
   LIGHTBOX
================================ */
.th-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.85);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}

.th-lightbox img {
  max-width: 90%;
  max-height: 90%;
}

.th-lightbox span {
  position: absolute;
  top: 20px;
  right: 30px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.th-facilities {
  margin-top: 60px;
}

.th-facilities-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.th-facility-card {
  background: #303d52;
  border: 1px solid #ffffff;
  border-radius: 12px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
  height: 270px;
  overflow: overlay; 
}

.th-facility-card strong {
  display: flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  color: #ffffff;
}

.th-facility-card i {
  font-size: 1.4rem;
  color: #b0822d;
}

.th-facility-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.th-facility-card li {
  font-size: 1rem;
  color: #ffffff;
  line-height: 24px;
}

 .th-hotel-area-location {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 10px;
}

.th-location-icon {
    width: 35px;
    height: 35px;
    margin-top: 3px;
}

.th-hotel-area {
    display: flex;
    flex-direction: column;
}

.th-hotel-address {
    font-weight: 600;
    font-size: 0.95rem;
}

.th-google-link a:hover {
    color: #009150;
}

/* Responsive */
@media (max-width: 992px) {
  .th-facilities-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 576px) {
  .th-facilities-grid {
    grid-template-columns: 1fr;
  }
}
