.elementor-213 .elementor-element.elementor-element-3df5bb6{--display:flex;--flex-direction:row;--container-widget-width:initial;--container-widget-height:100%;--container-widget-flex-grow:1;--container-widget-align-self:stretch;--flex-wrap-mobile:wrap;}.elementor-213 .elementor-element.elementor-element-182e9a6{width:var( --container-widget-width, 100.425% );max-width:100.425%;--container-widget-width:100.425%;--container-widget-flex-grow:0;}.elementor-213 .elementor-element.elementor-element-182e9a6.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-182e9a6 */body {
  margin: 0;
  font-family: 'Playfair Display', serif;
  background: #C79A94;
}

/* HERO */
.room-hero {
  height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #C79A94;
}

.room-hero h1 {
  font-size: 70px;
  color: #2c2c2c;
}

/* FULL IMAGE BLOCK */
.room-block {
  position: relative;
  height: 90vh;
  overflow: hidden;
}

.room-block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT OVERLAY */
.room-text {
  position: absolute;
  bottom: 60px;
  left: 60px;
  color: #fff;
  max-width: 400px;
}

.room-text h2 {
  font-size: 40px;
  margin-bottom: 10px;
}

.room-text p {
  font-size: 16px;
  line-height: 1.6;
}

/* IMAGE STRIP */
.image-strip {
  display: flex;
}

.image-strip img {
  width: 33.33%;
  height: 300px;
  object-fit: cover;
  transition: 0.4s;
}

.image-strip img:hover {
  transform: scale(1.05);
}

/* MOBILE */
@media (max-width: 768px) {
  .room-hero h1 {
    font-size: 40px;
  }

  .room-text {
    left: 20px;
    bottom: 30px;
  }

  .image-strip {
    flex-direction: column;
  }

  .image-strip img {
    width: 100%;
  }
}/* End custom CSS */