/* room.css */
body {
    background-color: #fcfbf7;
}

/* Rooms Intro Section */
.rooms-intro {
    padding: 3rem 40px;
    background-color: #fcfbf7;
    position: relative;
}

.rooms-intro .container {
    padding: 0;
}

.text-center {
    text-align: center;
    width: 100%;
}

.rooms-main-title, .room-title {
    font-family: "Playfair Display", serif;
    font-size: 28px;
    color: #7a6e65;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.rooms-subtitle {
    font-family: "Playfair Display", serif;
    font-size: 20px;
    font-style: italic;
    color: #555;
    margin-bottom: 30px;
}

.rooms-desc, .room-description, .room-features-list, .room-details {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.rooms-desc {
    /* max-width: 800px; */
    margin: 0 auto;
    margin-bottom: 25px;
}

.room-description {
    margin-bottom: 25px;
}

/* Room Section Layout */
.room-section {
    display: flex;
    flex-wrap: wrap;
    align-items: stretch;
    max-width: 1450px;
    margin: 40px auto;
    background-color: #fcfbf7;
    overflow: hidden;
}

.room-section.alternate-right {
    flex-direction: row;
}

.room-section.alternate-left {
    flex-direction: row;
}

.room-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 300px;
    box-sizing: border-box;
}

/* adjust padding for left and right alternating sections */
.room-section.alternate-right .room-content {
    padding: 30px 30px 30px 40px; 
}
.room-section.alternate-left .room-content {
    padding: 30px 40px 30px 30px;
}

.room-image {
    flex: 1;
    min-width: 300px;
    box-sizing: border-box;
}

.room-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    min-height: 400px;
}

.room-features-title {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    font-weight: 500;
    color: #333;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.room-features-list {
    margin-bottom: 20px;
}

.room-features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 30px;
    list-style: none;
    padding: 0;
    margin: 0 0 25px 0;
}

.room-features-grid li {
    font-family: "Poppins", sans-serif;
    font-size: 16px;
    color: #111;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 8px;
    line-height: 1.4;
}

.room-features-grid li::before {
    content: "◇";
    color: #c5a880;
    font-size: 18px;
    font-weight: bold;
    display: inline-block;
    flex-shrink: 0;
}

.room-details p {
    margin-bottom: 5px;
}

.enquire-btn {
    display: inline-block;
    padding: 12px 35px;
    border: 1.5px solid #7a6e65;
    border-radius: 0 20px 0 20px;
    background-color: transparent;
    color: #7a6e65;
    text-decoration: none;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top: 10px;
    width: fit-content;
}

.enquire-btn:hover {
    background-color: #7a6e65;
    color: #fff;
    border-color: #7a6e65;
    border-radius: 20px 0 20px 0;
}

/* Stay Amenities Section */
.stay-amenities-container {
    margin-top: 40px;
    width: 100%;
}

.stay-amenities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px 30px;
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.amenity-item-new {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.amenity-item-new img {
    width: 65px;
    height: 65px;
    object-fit: contain;
    /* CSS filter to convert green #023b2d to golden #b18745 */
    filter: brightness(0) saturate(100%) invert(65%) sepia(51%) saturate(526%) hue-rotate(358deg) brightness(77%) contrast(75%);
}

.amenity-item-new span {
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 600;
    color: #111;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.3;
}

.stay-amenities-action {
  display: none;
    margin-top: 40px;
    /* display: flex; */
    justify-content: center;
}

.stay-view-all-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 35px;
    border: 1.5px solid #7a6e65;
    border-radius: 0 20px 0 20px;
    background-color: transparent;
    color: #7a6e65;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.stay-view-all-btn:hover {
    background-color: #7a6e65;
    color: #ffffff;
    border-color: #7a6e65;
    border-radius: 20px 0 20px 0;
}

/* =========================================
   Tablet Responsive (max-width: 900px)
   ========================================= */
@media (max-width: 900px) {
  /* --- Room Section Layout --- */
  .room-section.alternate-left {
    flex-direction: column !important;
  }
  
  .room-section.alternate-right {
    flex-direction: column-reverse !important;
  }

  .room-content, 
  .room-section.alternate-right .room-content, 
  .room-section.alternate-left .room-content {
    padding: 40px 20px;
  }
  
  .room-image img {
    min-height: 300px;
  }
}

/* Tablet Responsive stay amenities */
@media (max-width: 992px) {
    .stay-amenities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px 20px;
    }
}

/* =========================================
   Mobile Responsive (max-width: 600px)
   ========================================= */
@media (max-width: 600px) {
  /* --- Rooms Intro Section --- */
  .rooms-intro {
    padding: 0vw 15px 1rem;
;
  }
  
  .rooms-main-title {
    margin-top: 15px;
    font-size: 22px;
  }
  
  .rooms-subtitle {
    font-size: 16px;
  }
  
  .rooms-desc {
    font-size: 14px;
  }

  /* --- Room Section Layout --- */
  .room-title {
    font-size: 22px;
  }
  
  .room-description, 
  .room-features-list, 
  .room-details {
    font-size: 14px;
  }
  
  .room-image img {
    min-height: 250px;
  }

  .room-features-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .enquire-btn {
    width: 100%;
    text-align: center;
    box-sizing: border-box;
  }

  .stay-amenities-grid {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
    padding: 0 10px;
  }
  .amenity-item-new {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 290px;
    margin: 0 auto;
  }
  .amenity-item-new img {
    width: 60px;
    height: 60px;
  }
  .amenity-item-new span {
    font-size: 14px;
  }
}






