.room-details-section {
  padding: 90px 45px 70px;
  background: #f7f5e7;
	overflow: hidden;
}

.room-title {
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 30px;
  line-height: 1.3;
}

.room-description {
  margin-bottom: 50px;
}

.room-description p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-color);
  margin-bottom: 20px;
}

.room-description p:last-child {
  margin-bottom: 0;
}

.room-amenities {
  margin-top: 50px;
}

.amenities-title {
  font-size: 30px;
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 25px;
  line-height: 1.3;
}

.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.amenities-list li {
  font-size: 1rem;    
  color: var(--text-color);
  padding: 8px 0;
  border-bottom: 1px solid #e5e5e5;
  line-height: 1.6;
}

.amenities-list li:last-child {
  border-bottom: none;
}

.gallery-section {
    padding: 90px 45px 60px;
}

.overview-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  padding: 40px 30px;
  position: sticky;
  top: 100px;
}

.overview-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.75rem;
  color: var(--title-color);
  font-weight: 400;
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e5e5e5;
}

.overview-item {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #e5e5e5;
}

.overview-item:last-of-type {
  margin-bottom: 30px;
}

.overview-label {
  font-family: 'Roboto Slab', serif;
  font-size: 1rem;
  color: var(--title-color);
  font-weight: 500;
  margin-bottom: 10px;
}

.overview-value {
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 5px;
}

.overview-value:last-child {
  margin-bottom: 0;
}

.btn-book-now {
  display: block;
  width: 100%;
  background: #c9b896;
  color: #fff;
  text-align: center;
  padding: 15px 30px;
  font-family: 'Open Sans', sans-serif;
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
}

.btn-book-now:hover {
  background: #9b8167;
  color: #fff;
  transform: translateY(-2px);
}


.see-also-section {
    padding: 60px 45px 80px;
    background: #f7f5e7;
	overflow: hidden;
}

.see-also-title {
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 0;
  line-height: 1.3;
}

.room-card {
  background: #fff;
  border: 1px solid #e5e5e5;
  overflow: hidden;
  transition: all 0.3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.room-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.room-card-image {
  width: 100%;
  height: 250px;
  overflow: hidden;
}

.room-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.room-card:hover .room-card-image img {
  transform: scale(1.03);
}

.room-card-content {
  padding: 25px 20px;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.room-card-title {
  font-family: 'Roboto Slab', serif;
  font-size: 1.1rem;
  color: var(--title-color);
  font-weight: 400;
  margin-bottom: 15px;
  line-height: 1.4;
  min-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.room-card-link {
  font-family: 'Open Sans', sans-serif;
  font-size: 0.9rem;
  color: #9b8167;
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.5px;
  transition: color 0.3s ease;
  text-transform: uppercase;
}

.room-card-link:hover {
  color: var(--text-color);
}

@media (max-width: 991px) {
	
	.gallery-section {
        padding: 60px 5px 0px;
    }
	
  .room-details-section {
    padding: 64px 15px 70px;
  }
  
  .overview-card {
    position: static;
    margin-top: 40px;
  }
  
  .room-title {
    margin-bottom: 25px;
  }
  
  .room-description {
    margin-bottom: 40px;
  }
  
  .room-amenities {
    margin-top: 40px;
  }
  
  .see-also-section {
    padding: 60px 15px 70px;
  }
  
  .room-card-image {
    height: 220px;
  }
}

@media (max-width: 767px) {
  .room-details-section {
    padding: 64px 15px 60px;
  }
  
  .room-description p {
    font-size: 0.95rem;
  }
  .overview-card {
    padding: 30px 20px;
  }
  
  .overview-title {
    font-size: 1.5rem;
  }
  
  .btn-book-now {
    padding: 12px 25px;
    font-size: 0.95rem;
  }
  
  .see-also-section {
    padding: 50px 15px 60px;
  }
  
  .room-card-image {
    height: 200px;
  }
  
  .room-card-title {
    font-size: 1rem;
    min-height: 45px;
  }
  
  .room-card-content {
    padding: 20px 15px;
  }
}

@media (max-width: 575px) {
   .room-details-section {
    padding: 40px 15px 20px
    }
    .room-title {
    margin-bottom: 10px;
    }
    .overview-card {
     margin-top: 20px;
    }
    .room-description {
     margin-bottom: 5px;
    }
    .room-amenities {
     margin-top: 5px;
    }
    .gallery-section {
     padding: 40px 5px 0px;
     }
}