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

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

/* ==============================
   ROOM DETAILS WRAPPER
================================ */
.th-room-details-wrap {
  padding: 80px 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: #ebf1f8;
  border-radius: 14px;
  padding: 60px;
}

@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;
}

.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; }
}

/* View more button */
.th-view-more-btn {
  position: absolute;
  bottom: 8px;
  right: 8px;
  background: rgba(255,255,255,0.8);
  color: #333;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 6px;
  font-size: 16px;
  cursor: default;
}

/* ==============================
   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: #fff;
  border: 1px solid #1876d1;
  border-radius: 12px;
  padding: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.th-arrival-box strong {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.th-arrival-box i {
  color: #1876d1;
  font-size: 20px;
}

@media (max-width: 768px) {
  .th-arrival ul {
    grid-template-columns: 1fr;
  }
}

/* ==============================
   DESCRIPTION
================================ */
.th-about-space {
  max-width: 1000px;
}

.th-about-space h4 {
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 18px;
}

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

/* ==============================
   MAP
================================ */
#hotelMap {
  height: 420px;
  border-radius: 14px;
  overflow: hidden;
}

/* ==============================
   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;
}