.hero {
  position: relative;
  min-height: 600px;
  padding: 140px 0 80px 0;
  background-image: var(--hero-bg-url);
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.heroOverlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}

.heroContent {
  position: relative;
  z-index: 1;
  color: #fff;
  padding: 0 20px;
}

.heroContent h1 {
  font-size: 48px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
}

.heroContent p {
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto;
  color: #ffffff;
}

/* Rooms List Section */
.roomsListSection {
  padding: 80px 0;
  background-color: #f9f9f9;
}

.roomsList {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.roomCard {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

@media (min-width: 992px) {
  .roomCard {
    flex-direction: row;
    align-items: stretch;
  }
  
  /* Reverse layout for alternating cards */
  .roomCardReverse {
    flex-direction: row-reverse;
  }
}

.roomImageWrapper {
  flex: 1;
  min-height: 300px;
  position: relative;
  overflow: hidden;
}

.roomImage {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.roomCard:hover .roomImage {
  transform: scale(1.05);
}

.roomInfo {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.roomInfo h2 {
  font-size: 28px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 16px;
}

.roomMeta {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  color: #555;
  font-size: 15px;
  font-weight: 500;
}

.roomMeta span {
  display: flex;
  align-items: center;
  gap: 8px;
}

.roomMeta svg {
  color: #00aa6c;
}

.roomDescription {
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.amenities {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 40px;
}

.amenityBadge {
  background-color: #f0f0f0;
  color: #333;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
}

.roomFooter {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: auto;
  border-top: 1px solid #eee;
  padding-top: 30px;
}

@media (min-width: 576px) {
  .roomFooter {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}

.exploreTextLink {
  font-size: 16px;
  font-weight: 600;
  color: #1e1e1e;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.exploreTextLink:hover {
  color: #f62440;
  transform: translateX(4px);
}

/* Variants Accordion */
.variantsContainer {
  margin-bottom: 30px;
}

.variantsTitle {
  font-size: 15px;
  font-weight: 700;
  color: #1e1e1e;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.variantsList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.variantDetails {
  background: #fcfcfc;
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}

.variantSummary {
  padding: 14px 16px;
  font-size: 15px;
  font-weight: 600;
  color: #333;
  cursor: pointer;
  user-select: none;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.2s ease;
}

.variantSummary::-webkit-details-marker {
  display: none;
}

.variantSummary::after {
  content: '+';
  font-size: 18px;
  color: #00aa6c;
  font-weight: 400;
  transition: transform 0.3s ease;
}

.variantDetails[open] .variantSummary::after {
  transform: rotate(45deg);
}

.variantDetails[open] .variantSummary {
  background-color: #f4f4f4;
  border-bottom: 1px solid #eee;
}

.variantDesc {
  padding: 16px;
  font-size: 14px;
  color: #555;
  line-height: 1.6;
  background-color: #fff;
}
