.home-away-section {
  background-color: #f9f7f3;
  /* same cream background */
  padding: 90px 0;
}

.home-away-section .line {
  width: 60px;
  height: 3px;
  background-color: #c7a440;
  /* gold accent */
  margin: 0 auto;
}

.section-title {

  font-weight: 600;
  color: #0f2647;
  /* navy blue */
  /* font-family: "Georgia", serif; */
  font-size: 38px;
  font-family: 'Playfair Display', serif;
  /* color: #0e1a2b; */
}

.subtitle {
  font-size: 18px;
  color: #1e3c68;
  /* lighter navy */
  font-weight: 500;
}

.description {
  font-family: 'Lato', sans-serif;
  max-width: 750px;
  font-size: 17px;
  color: #4a4a4a;
  line-height: 1.7;
}


/* ============================= */
/*         RESPONSIVE CSS        */
/* ============================= */

/* ----------- Large Tablets (≤ 992px) ----------- */
@media (max-width: 992px) {
  .room-title {
    font-size: 32px;
  }

  .room-description {
    font-size: 16px;
    max-width: 100%;
  }

  .room-section {
    padding: 70px 0;
  }

  .amenities-list li {
    font-size: 15px;
  }
}

/* ----------- Tablets (≤ 768px) ----------- */
@media (max-width: 768px) {

  .room-image-wrapper img {
    width: 100%;
    margin-bottom: 20px;
  }

  .room-title {
    text-align: center;
    font-size: 30px;
  }

  .room-subtitle,
  .room-description,
  .amenities-title {
    text-align: center;
  }

  .room-description {
    margin: 0 auto;
  }

  .gold-line {
    margin: 0 auto 15px auto;
  }

  .amenities-list {
    text-align: center;
  }
}

/* ----------- Mobile Devices (≤ 576px) ----------- */
@media (max-width: 576px) {

  .room-section {
    padding: 50px 0;
  }

  .room-title {
    font-size: 26px;
  }

  .room-subtitle {
    font-size: 16px;
  }

  .room-description {
    font-size: 15px;
    line-height: 1.6;
  }

  .amenities-title {
    font-size: 18px;
  }

  .amenities-list li {
    font-size: 14px;
  }
}



/* SECTION BASE */
.business-room-section {
  background-color: #f9f7f3;
  padding: 100px 0;
}

/* GOLD LINE */
.gold-line {
  width: 60px;
  height: 3px;
  background-color: #c7a440;
}

/* TITLES & TEXT */
.room-title {
  font-size: 32px;
  color: #0f2647;
  font-family: "Georgia", serif;
  font-weight: 600;
  margin-bottom: 10px;
}

.room-subtitle {
  color: #c7a440;
  font-size: 18px;
  margin-bottom: 20px;
}

.room-description {
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: #4a4a4a;
  max-width: 620px;
}

.amenities-title {
  font-weight: 700;
  margin-top: 25px;
  color: #0f2647;
}

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

.amenities-list li {
  list-style: none;
  font-family: 'Lato', sans-serif;
  font-size: 17px;
  margin-bottom: 10px;
  color: #2f3b52;
}

/* IMAGE HOVER EFFECT */
.room-image-wrapper img {
  border-radius: 12px;
  transition: transform 0.8s ease, box-shadow 0.5s ease;
}

.room-img-animate:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
}

/* ============================= */
/*         ANIMATIONS            */
/* ============================= */

.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s ease forwards;
}

.fade-in-delay {
  opacity: 0;
  animation: fadeIn 1.5s ease forwards;
}

.slide-up {
  opacity: 0;
  transform: translateY(20px);
  animation: slideUp 1.2s ease forwards;
}

.slide-down {
  opacity: 0;
  transform: translateY(-20px);
  animation: slideDown 1.2s ease forwards;
}

.fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
  animation: fadeInLeft 1.3s ease forwards;
}

.fade-in-right {
  opacity: 0;
  transform: translateX(40px);
  animation: fadeInRight 1.3s ease forwards;
}

/* KEYFRAMES */
@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

@keyframes slideUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideDown {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInLeft {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================= */
/*       RESPONSIVE SECTION      */
/* ============================= */

/* Tablets */
@media (max-width: 992px) {
  .business-room-section {
    padding: 70px 0;
  }

  .room-title {
    font-size: 32px;
    text-align: center;
  }

  .room-subtitle,
  .room-description,
  .amenities-title {
    text-align: center;
  }

  .amenities-list {
    justify-content: center;
    text-align: center;
  }

  .amenities-list ul {
    padding-left: 0;
  }

  .room-image-wrapper {
    margin-top: 25px;
    text-align: center;
  }
}

/* Mobile */
@media (max-width: 576px) {
  .business-room-section {
    padding: 50px 0;
  }

  .room-title {
    font-size: 28px;
  }

  .room-description {
    font-size: 15px;
  }

  .amenities-list li {
    font-size: 15px;
  }

  .room-image-wrapper img {
    width: 100%;
    border-radius: 10px;
  }

  .gold-line {
    margin: 0 auto 15px auto;
  }

  .room-subtitle {
    font-size: 16px;
  }
}