/* ROOM DETAILS PAGE STYLES - KULIR KODAI INN */

/* Note: Room pages inherit the exact Master Navbar & Hero styling from style.css */

body.room-detail-page .room-hero-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff !important;
  margin-bottom: 0.5rem;
  line-height: 1.15;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}

body.room-detail-page .room-hero-tagline {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 1.15rem;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 0;
  letter-spacing: 0.05em;
}

@media (max-width: 768px) {
  body.room-detail-page .room-hero-title {
    font-size: 2.3rem;
  }
  body.room-detail-page .room-hero-tagline {
    font-size: 0.95rem;
  }
}

/* 2. LARGE ROOM IMAGE GALLERY (FEATURE GRID) */
body.room-detail-page .room-gallery-feature-section {
  background-color: #ffffff;
  padding: 60px 0 30px;
}

body.room-detail-page .feature-main-wrapper {
  position: relative;
  width: 100%;
  height: 480px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

body.room-detail-page .feature-main-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body.room-detail-page .feature-main-wrapper:hover .feature-main-img {
  transform: scale(1.03);
}

body.room-detail-page .feature-thumb-item {
  position: relative;
  width: 100%;
  height: 232px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

body.room-detail-page .feature-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body.room-detail-page .feature-thumb-item:hover .feature-thumb-img {
  transform: scale(1.04);
}

@media (max-width: 991.98px) {
  body.room-detail-page .feature-main-wrapper {
    height: 340px;
  }
  body.room-detail-page .feature-thumb-item {
    height: 160px;
  }
}

/* 3. ROOM DESCRIPTION + DETAILS */
body.room-detail-page .room-overview-section {
  padding: 60px 0;
  background-color: #ffffff;
}

body.room-detail-page .room-subheading {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #0B5A43;
  display: block;
  margin-bottom: 0.5rem;
}

body.room-detail-page .room-section-heading {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 2.3rem;
  font-weight: 700;
  color: #1a202c;
  line-height: 1.25;
}

body.room-detail-page .room-description-para {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 1.05rem;
  line-height: 1.8;
  color: #4a5568;
}

body.room-detail-page .room-specs-panel {
  background-color: #fcfbf9;
  border: 1px solid rgba(11, 90, 67, 0.12);
  border-radius: 14px;
  padding: 35px 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

body.room-detail-page .specs-panel-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.6rem;
  font-weight: 700;
  color: #0B5A43;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(11, 90, 67, 0.15);
}

body.room-detail-page .spec-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid #edf2f7;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 0.95rem;
}

body.room-detail-page .spec-row:last-child {
  border-bottom: none;
}

body.room-detail-page .spec-label {
  color: #718096;
  font-weight: 500;
  display: flex;
  align-items: center;
}

body.room-detail-page .spec-label i {
  color: #0B5A43;
  font-size: 1.1rem;
}

body.room-detail-page .spec-value {
  color: #1a202c;
  font-weight: 600;
  text-align: right;
}

/* 4. AMENITIES SECTION */
body.room-detail-page .room-amenities-section {
  padding: 50px 0 70px;
  background-color: #ffffff;
}

body.room-detail-page .amenity-item-box {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid rgba(11, 90, 67, 0.1);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

body.room-detail-page .amenity-item-box i {
  font-size: 1.25rem;
  width: 24px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0B5A43 !important;
  opacity: 1 !important;
  flex-shrink: 0;
  line-height: 1;
}

body.room-detail-page .amenity-item-box span {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d3748;
}

/* 5. ROOM PHOTO GALLERY */
body.room-detail-page .room-photo-gallery-section {
  padding: 60px 0;
  background-color: #ffffff;
}

body.room-detail-page .photo-gallery-card {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
  aspect-ratio: 4 / 3;
  min-height: 280px;
  max-height: 420px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
}

body.room-detail-page .photo-gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

body.room-detail-page .photo-gallery-card:hover img {
  transform: scale(1.05);
}

/* 6. MORE ROOMS SECTION */
body.room-detail-page .more-rooms-section {
  padding: 70px 0;
  background-color: #fcfbf9;
  border-top: 1px solid #edf2f7;
}

body.room-detail-page .more-room-card {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(11, 90, 67, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.room-detail-page .more-room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(11, 90, 67, 0.12);
}

body.room-detail-page .more-room-img-wrapper {
  height: 220px;
  width: 100%;
  overflow: hidden;
  position: relative;
}

body.room-detail-page .more-room-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

body.room-detail-page .more-room-card:hover .more-room-img {
  transform: scale(1.05);
}

body.room-detail-page .more-room-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  text-align: left;
}

body.room-detail-page .more-room-title {
  font-family: var(--font-serif, 'Cormorant Garamond', serif);
  font-size: 1.4rem;
  font-weight: 700;
  color: #0B5A43;
  margin-bottom: 8px;
}

body.room-detail-page .more-room-desc {
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 0.9rem;
  color: #718096;
  margin-bottom: 20px;
  line-height: 1.5;
  flex-grow: 1;
}

body.room-detail-page .btn-more-view {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #0B5A43;
  color: #ffffff;
  padding: 10px 20px;
  border-radius: 6px;
  font-family: var(--font-sans, 'Montserrat', sans-serif);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

body.room-detail-page .btn-more-view:hover {
  background-color: #073c2c;
  color: #ffffff;
}
