/* =========================================
   EXPANDABLE ROOM DETAILS
========================================= */

.room-details-section {
  padding: 120px 0;
  background: #f4f4f6;
}

.room-details {
  display: none;
  max-width: 1200px;
  margin: 0 auto 100px;
  text-align: center;
}

.room-details h2 {
  font-size: 32px;
  margin-bottom: 50px;
  font-weight: 500;
  text-transform: uppercase;
}

.details-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.details-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 12px;
  transition: 0.4s ease;
}

.details-grid img:hover {
  transform: scale(1.04);
}

.room-specs {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
}
/* =========================================
   MAIN GALLERY SLIDER
========================================= */

.main-slider {
  position: relative;
  max-width: 1200px;
  margin: 60px auto 0;
}

.main-slider-track {
  overflow: hidden;
  position: relative;
}

.main-slide {
  display: none;
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 16px;
}

.main-slide.active {
  display: block;
}

/* ARROWS ON IMAGE */
.main-prev,
.main-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0,0,0,0.4);
  color: white;
  border: none;
  font-size: 28px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  transition: 0.3s ease;
  backdrop-filter: blur(4px);
}

.main-prev:hover,
.main-next:hover {
  background: rgba(0,0,0,0.7);
}

.main-prev {
  left: 20px;   /* now inside image */
}

.main-next {
  right: 20px;  /* now inside image */
}

.room-details-section {
  display: none;
  padding: 0;
}


.room-details-section {
  display: none;
  padding: 100px 0;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

