.room-banner {
  min-height: 400px;
  width: 100%;
  background-image: url("/Media/Background/room00.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.room-banner-overlay {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 50px;
}

.room-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.room-banner-title {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 15px;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.room-banner-subtitle {
  font-size: 1.5rem;
  margin-bottom: 20px;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.room-banner-divider {
  width: 100px;
  height: 3px;
  background: #f9a01b;
  margin: 0 auto 20px;
}

.room-banner-text {
  font-size: 1.1rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

.room-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}

@media (max-width: 768px) {
  .room-banner {
    min-height: 300px;
    padding: clamp(20px, 5vw, 60px);
  }

  .room-banner,
  .room-banner-overlay {
    text-align: center;
  }

  .room-banner-overlay {
    margin: 0 auto;
    padding: clamp(20px, 6vw, 40px);
  }

  .room-banner-title,
  .room-banner-subtitle,
  .room-banner-text {
    margin-left: auto;
    margin-right: auto;
  }

  .room-grid {
    margin-top: -20px;
  }

  .room-banner-title {
    font-size: 2rem;
    line-height: 1.2;
  }

  .room-banner-subtitle {
    font-size: 1.2rem;
  }

  .room-banner-text {
    font-size: 1rem;
    line-height: 1.5;
  }

  .room-banner-divider {
    width: 80px;
    margin-bottom: 15px;
  }

  .room-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: -30px;
  }
}

.room-type-main-title {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5rem;
  color: #f9a01b;
}

.room-type-title {
  font-size: 25px;
  font-weight: 600;
  text-transform: uppercase;
  color: #666;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0 auto;
  display: inline-block;
  padding-bottom: 10px;
}

.room-type-slider .slick-current .room-type-title {
  color: #f9a01b;
  border-bottom: 2px solid #f9a01b;
  padding-bottom: 10px;
}

.room-type-slider .slick-slide {
  display: flex !important;
  justify-content: center !important;
  text-align: center;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.room-type-slider .slick-current {
  opacity: 1;
}

@media (max-width: 992px) {
  .room-type-slider .slick-slide {
    text-align: center !important;
  }

  .room-type-slider .slick-slide h5,
  .room-type-slider .slick-slide p {
    margin-left: auto;
    margin-right: auto;
  }
}

.room-type-line-container {
  position: relative;
  width: 100%;
  margin: 20px 0 40px;
}

.room-type-line {
  height: 3px;
  background-color: #f9a01b;
  position: relative;
  margin-bottom: 20px;
}

.marker-container {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  transition: left 0.3s ease-in-out;
  z-index: 5;
}

#room-marker {
  width: 24px;
  height: auto;
  position: absolute;

  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.3s ease-in-out;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}

@media (max-width: 768px) {
  #room-marker {
    width: 20px;
    top: -20px;
  }
}

.room-nav-btn {
  background: white;
  border: 2px solid #f9a01b;
  color: #f9a01b;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: none;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  z-index: 10;
}

@media (max-width: 768px) {
  .room-nav-btn {
    display: flex;
  }

  .nav-buttons {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .nav-buttons button {
    pointer-events: auto;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  }
}

.room-thumbs img {
  border-radius: 10px;
  cursor: pointer;
  border: 2px solid transparent;
  transition: border 0.3s;
  height: 150px;
  object-fit: cover;
}

.room-thumbs .slick-slide {
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.room-thumbs .slick-current {
  opacity: 1;
}

.room-thumbs .slick-current img {
  border-color: #f9a01b;
}

.room-info-basic img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 10px;
}

.room-info-details li {
  margin-bottom: 0.5rem;
  color: #555;
}

.room-info-details .row > div {
  font-size: 0.95rem;
  color: #444;
}

.btn-primary {
  background-color: #f9a01b;
  border-color: #f9a01b;
}

.btn-primary:hover {
  background-color: #d88917;
  border-color: #d88917;
}

.btn-gap-right {
  margin-right: 6px;
}

.custom-book-btn {
  background-color: #f9a01b;
  color: white;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: bold;
  border: none;
  border-radius: 4px;
  text-decoration: none;
  display: inline-block;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.custom-book-btn:hover {
  background-color: #f9a01b;
  transform: translateY(-1px);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.15);
}

.carousel-inner img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.modal-amenity-icon {
  color: #f9a01b;
}

.btn-close {
  filter: invert(0%) grayscale(100%);
}

.text-orange {
  color: #f9a01b;
}

#modalAmenities > div {
  justify-content: center;
  padding-left: 10rem;
  gap: 3rem;
}

.amenities-heading {
  color: #f9a01b;
  font-weight: bold;
  border-bottom: 3px solid #f9a01b;
  padding-bottom: 5px;
  margin: 0 0 30px;
  display: inline-flex;
  align-items: center;
}

@media (max-width: 768px) {
  #modalAmenities > div {
    padding-left: 2rem;
    gap: 1.5rem;
  }

  .room-type-title {
    font-size: 1.2rem;
  }
}

.room-container {
  padding-bottom: 120px;
  position: relative;
  z-index: 1;
}

.modal-amenity i {
  margin-right: 6px;
}
