/* line 3, app/assets/stylesheets/lodging.css.scss */
.Highlight {
  color: #330066;
}

/* line 7, app/assets/stylesheets/lodging.css.scss */
#RoomListDiv {
  display: block;
  width: 100%;
}

/* line 12, app/assets/stylesheets/lodging.css.scss */
.RoomSectionDiv {
  margin-bottom: 20px;
  position: relative;
}

/* Decorative top ornament */
/* line 18, app/assets/stylesheets/lodging.css.scss */
.RoomSectionDiv:before {
  content: '';
  background-image: url(lodging/TopOrnament-1fb3e123dfd28490f641511f5cd055bf9c77934a36886b8085a8bf2c7ad9e6f8.png);
  height: 100px;
  width: 950px;
  max-width: 100vw;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  z-index: 0;
}

/* line 31, app/assets/stylesheets/lodging.css.scss */
.RoomSectionDiv h1 {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  font-size: 28pt;
  color: #990000;
  text-decoration: underline;
  position: relative;
  z-index: 1;
}

/* Room Thumbnails Row (e.g., "See all rooms on this floor") */
/* line 43, app/assets/stylesheets/lodging.css.scss */
.RoomSectionImgRow {
  width: 100%;
  margin: auto;
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  position: relative;
  z-index: 1;
}

/* line 55, app/assets/stylesheets/lodging.css.scss */
.RoomSectionDiv img {
  margin: 10px;
  vertical-align: middle;
  border: 2px solid #999;
  border-bottom-color: #EEE;
  border-right-color: #EEE;
  box-shadow: 10px 10px 5px #888888;
  border-radius: 10px;
}

/* Individual Room Row Layout */
/* line 66, app/assets/stylesheets/lodging.css.scss */
.RoomRowDiv {
  margin-bottom: 40px;
  display: block;
}

/* Decorative divider */
/* line 72, app/assets/stylesheets/lodging.css.scss */
.RoomRowDiv hr.LodgingDivider {
  width: 90%;
  height: 4px;
  background: #800000;
  border-radius: 4px;
  margin: 40px auto;
  border: none;
  display: block;
}

/* Flex Container for Content and Sidebar */
/* line 83, app/assets/stylesheets/lodging.css.scss */
.RoomRowContentWithSidebar {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

/* Left Column: Main Info */
/* line 91, app/assets/stylesheets/lodging.css.scss */
.RoomMainInfo {
  flex: 1;
  /* Take up available space */
}

/* Right Column: Amenities */
/* line 97, app/assets/stylesheets/lodging.css.scss */
.AmenitiesDiv {
  width: 320px;
  /* Fixed width as per original design */
  flex-shrink: 0;
  /* Don't shrink */
  margin-left: 20px;
}

/* line 105, app/assets/stylesheets/lodging.css.scss */
.AmenitiesDiv img {
  /* Main amenities image */
  display: block;
  margin-bottom: 20px;
}

/* line 111, app/assets/stylesheets/lodging.css.scss */
.RoomRowDiv h1 {
  text-align: left;
  margin: 10px 0;
  font-size: 3em;
  color: #B46464;
  text-decoration: underline;
}

/* line 119, app/assets/stylesheets/lodging.css.scss */
.RoomRowDiv p {
  font-size: 1.1em;
  line-height: 1.6;
}

/* line 124, app/assets/stylesheets/lodging.css.scss */
.RoomRowDiv h3 {
  margin: 1em 0;
}

/* Image Wrapper for additional room images */
/* line 130, app/assets/stylesheets/lodging.css.scss */
.RoomImgWrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 20px;
  margin-top: 20px;
}

/* line 138, app/assets/stylesheets/lodging.css.scss */
.RoomImgItem img {
  margin: 0;
  display: block;
  border: 2px solid #999;
  border-bottom-color: #EEE;
  border-right-color: #EEE;
  box-shadow: 10px 10px 5px #888888;
  border-radius: 10px;
}

/* line 148, app/assets/stylesheets/lodging.css.scss */
p img {
  float: right;
  margin: 10px;
}

/* Tabs Styling */
/* line 154, app/assets/stylesheets/lodging.css.scss */
.LodgingTabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 0;
  /* Removed margin to let it stick cleanly */
  flex-wrap: wrap;
  position: sticky;
  /* Make it sticky */
  top: 0;
  z-index: 100;
  /* Above content */
  background-color: #f9dfc0;
  /* Match page background */
  padding: 15px 0;
  border-bottom: 1px solid rgba(153, 0, 0, 0.2);
  /* Subtle separator */
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  /* Subtle shadow */
}

/* line 175, app/assets/stylesheets/lodging.css.scss */
.LodgingTab {
  background-color: transparent;
  border: 2px solid #990000;
  color: #990000;
  padding: 10px 20px;
  font-family: inherit;
  font-size: 1.2em;
  font-weight: bold;
  cursor: pointer;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* line 188, app/assets/stylesheets/lodging.css.scss */
.LodgingTab:hover {
  background-color: #ffe6e6;
}

/* line 192, app/assets/stylesheets/lodging.css.scss */
.LodgingTab.active {
  background-color: #990000;
  color: white;
}

/* Building Description Styling */
/* line 198, app/assets/stylesheets/lodging.css.scss */
.BuildingDescription {
  text-align: center;
  max-width: 800px;
  margin: 30px auto;
  /* Added margin here since removed from Tabs */
  padding: 20px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
}

/* line 208, app/assets/stylesheets/lodging.css.scss */
.BuildingDescription h2 {
  color: #330066;
  /* Highlight color */
  margin-top: 0;
  font-size: 2.2em;
}

/* line 215, app/assets/stylesheets/lodging.css.scss */
.BuildingDescription p {
  font-size: 1.3em;
  font-style: italic;
  color: #555;
  text-indent: 0;
  /* Override default indent */
  margin-left: 0;
}

/* Responsive adjustments */
@media (max-width: 900px) {
  /* line 226, app/assets/stylesheets/lodging.css.scss */
  .RoomSectionDiv:before {
    width: 100%;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: top center;
  }
  /* line 233, app/assets/stylesheets/lodging.css.scss */
  .RoomRowContentWithSidebar {
    flex-direction: column;
  }
  /* line 237, app/assets/stylesheets/lodging.css.scss */
  .AmenitiesDiv {
    width: 100%;
    margin-left: 0;
    margin-top: 20px;
    order: -1;
    text-align: center;
  }
  /* line 245, app/assets/stylesheets/lodging.css.scss */
  .AmenitiesDiv img {
    margin: 0 auto 20px;
  }
  /* line 249, app/assets/stylesheets/lodging.css.scss */
  .AmenitiesDiv ul {
    display: inline-block;
    text-align: left;
  }
  /* line 254, app/assets/stylesheets/lodging.css.scss */
  .RoomSectionDiv h1 {
    font-size: 20pt;
  }
  /* line 258, app/assets/stylesheets/lodging.css.scss */
  .RoomRowDiv h1 {
    font-size: 2em;
    text-align: center;
  }
  /* line 263, app/assets/stylesheets/lodging.css.scss */
  .RoomImgWrapper {
    justify-content: center;
  }
  /* line 267, app/assets/stylesheets/lodging.css.scss */
  .LodgingTab {
    flex: 1 1 100%;
    /* Full width buttons on mobile */
    margin: 5px 0;
  }
  /* Ensure sticky header doesn't take up too much space on mobile if buttons stack */
  /* line 274, app/assets/stylesheets/lodging.css.scss */
  .LodgingTabs {
    padding: 5px 0;
    position: static;
    /* Often better to un-stick on mobile context if it takes too much height */
  }
}
