.hero {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  width: 100%;
  height: calc(100vh - 80px);

  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.hero-background {
  position: absolute;
  display: flex;
  z-index: -1;

  flex-direction: column;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 100%;
}
.hero-background-overlay {
  position: absolute;
  display: flex;
  z-index: 1;

  flex-direction: column;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  background: linear-gradient(
    to bottom,
    rgba(var(--color-brand-offwhite-rgb), 1),
    rgba(var(--color-brand-offwhite-rgb), 1),
    rgba(var(--color-brand-offwhite-rgb), 0.6)
  );
}
.hero-background img {
  position: relative;
  display: flex;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;
}

.hero-body {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: column;

  width: 100%;
  height: calc(100% - (50px + (15px*2)));

  padding: 0 20px;

  padding-bottom: 60px;
}

.hero-title {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: 100%;

  text-align: center;
}
.hero-title img {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  width: calc(100vw - (40px*2));
  height: 150px;

  object-fit: contain;
  object-position: center center;
}

.hero-subtitle {
  position: relative;

  width: 100%;

  text-align: center;

  line-height: 1.3;

  font-size: 18px;
  font-weight: 700;

  color: rgb(161 161 161);
}

.hero-footer {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  margin-top: auto;

  width: 100%;
  height: calc(50px + (15px*2));

  padding: 15px 20px;
}

.hero-footer a {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  min-height: 50px;
  min-width: 50px;

  text-decoration: none;

  color: rgba(var(--color-brand-blue-rgb), 1);
}



/* Rooms Section. */
.homerooms {
  position: relative;
  display: flex;
  gap: 30px;

  flex-direction: column;

  width: 100%;
}
.homerooms-room {
  position: relative;
  display: flex;

  flex-direction: column;

  width: 100%;

  text-decoration: none;

  color: inherit;
}

.homerooms-room-thumbnail {
  position: relative;
  display: flex;

  align-content: center;
  justify-content: center;

  flex-direction: row;

  width: 100%;
  height: 220px;
}
.homerooms-room-thumbnail img {
  position: absolute;
  display: flex;
  z-index: -1;

  top: 0;
  right: 0;
  left: 0;
  bottom: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center center;

  border-radius: 8px;
}

.homerooms-room-thumbnail-tags {
  position: absolute;
  display: flex;
  gap: 3px;
  z-index: 1;

  align-items: flex-end;

  flex-direction: column;

  top: 20px;
  left: 20px;
}

.homerooms-room-thumbnail-tag {
  position: relative;
  display: flex;

  align-items: center;
  justify-content: center;

  flex-direction: row;

  padding: 0 15px;
  padding-bottom: 1px;

  font-size: 12px;
  font-weight: 500;

  border-radius: 6px;

  color: rgba(var(--color-brand-offwhite-rgb), 1);
  background: rgba(0, 0, 0, 1);
}

.homerooms-room-infobar {
  position: absolute;
  display: flex;

  align-items: center;
  justify-content: space-between;

  flex-direction: row;

  right: 0;
  left: 0;
  bottom: 0;

  width: 100%;

  padding: 10px 20px;
  padding-top: 40px;

  border-radius: 8px;
  border-top-right-radius: 0;
  border-top-left-radius: 0;

  color: rgba(var(--color-brand-offwhite-rgb), 1);
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.9),
    rgba(0, 0, 0, 0)
  );
}
.homerooms-room-infobar-title {
  position: relative;

  font-size: 16px;
  font-weight: 600;
}











/*  */
