@charset "utf-8";
/* CSS Document */

/* =====================================================
   DELUXE ROOM PAGE
===================================================== */

/* HERO */
.room-hero{

  position:relative;

  min-height:84vh;

  display:flex;

  align-items:center;

  justify-content:center;

  overflow:hidden;

  padding:120px 20px;

  color:#fff;
}

/* HERO IMAGE */
.room-hero-image{

  position:absolute;

  inset:0;

  z-index:-2;
}

.room-hero-image img{

  width:100%;

  height:100%;

  object-fit:cover;

  display:block;

  animation:heroZoom 18s ease-in-out infinite alternate;

  will-change:transform;
}

@keyframes heroZoom{

  0%{

    transform:
      scale(1)
      translateX(0)
      translateY(0);
  }

  100%{

    transform:
      scale(1.08)
      translateX(-1%)
      translateY(-1%);
  }

}

/* OVERLAY */
.room-hero-overlay{

  position:absolute;

  inset:0;

  background:
linear-gradient(
  to bottom,
  rgba(0,0,0,0.35),
  rgba(0,0,0,0.60)
);

  z-index:-1;
}

/* HERO CONTENT */
.room-hero-content{

  max-width:820px;

  text-align:center;
}

.room-hero-micro{

  margin-top:22px;

  font-size:14px;

  color:rgba(255,255,255,0.72);
}

/* TAG */
.room-hero-tag{

  font-size:12px;

  letter-spacing:3px;

  text-transform:uppercase;

  margin-bottom:20px;

  opacity:0.85;
}

/* TITLE */
.room-hero-content h1{

  font-size:52px;

  line-height:1.08;

  margin-bottom:28px;

  font-family:'Playfair Display', serif;
}

/* TEXT */
.room-hero-content p{

  font-size:17px;

  line-height:1.9;

  color:rgba(255,255,255,0.88);

  margin-bottom:42px;
}

/* ACTIONS */
.room-hero-actions{

  display:flex;

  gap:18px;

  justify-content:center;

  flex-wrap:wrap;
}

/* MAIN BTN */
.room-main-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:18px 36px;

  border-radius:999px;

  background:linear-gradient(
    135deg,
    #1F5FAF,
    #2EC4C7
  );

  color:#fff;

  font-weight:600;

  text-decoration:none;

  transition:0.3s ease;
}

.room-main-btn:hover{

  transform:translateY(-3px);

  box-shadow:
    0 18px 40px rgba(31,95,175,0.30);
}

/* SECOND BTN */
.room-second-btn{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:18px 36px;

  border-radius:999px;

  border:1px solid rgba(255,255,255,0.28);

  backdrop-filter:blur(10px);

  color:#fff;

  text-decoration:none;

  transition:0.3s ease;
}

.room-second-btn:hover{

  background:rgba(255,255,255,0.08);
}

/* =====================================================
   INFO STRIP
===================================================== */

.room-info-strip{

  background:#ffffff;

  border-bottom:1px solid rgba(0,0,0,0.06);

  padding:24px 20px;
}

.room-info-container{

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:repeat(4,1fr);

  gap:18px;
}

.room-info-item{

  background:#f8fafb;

  border-radius:18px;
	
  box-shadow: 0 10px 25px rgba(0,0,0,0.04);

  padding:20px;

  text-align:center;

  font-size:16px;

  font-weight:500;

  color:#374151;
}

/* =====================================================
   ROOM DETAIL
===================================================== */

.room-detail-main{

  padding:120px 20px;

  background:#ffffff;
}

.room-detail-container{

  max-width:1200px;

  margin:auto;

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:70px;

  align-items:start;
}

/* GALLERY */
.room-gallery img{

  width:100%;

  display:block;

  border-radius:32px;

  object-fit:cover;
}

/* MAIN IMAGE */
.room-gallery > img{

  height:620px;

  margin-bottom:20px;
}

/* SMALL GRID */
.room-gallery-grid{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:20px;
}

.room-gallery-grid img{

  height:260px;
}

/* CONTENT */
.room-content-side{

  position:sticky;

  top:120px;
}

/* SMALL TAG */
.room-small-tag{

  font-size:12px;

  letter-spacing:3px;

  text-transform:uppercase;

  color:#1F5FAF;

  font-weight:600;

  margin-bottom:18px;
}

/* TITLE */
.room-content-side h2{

  font-size:40px;

  line-height:1.08;

  margin-bottom:22px;

  color:#111827;

  font-family:'Playfair Display', serif;
}

/* BEST FOR */
.room-best-for{

  font-size:18px;

  font-weight:600;

  color:#1F5FAF;

  margin-bottom:24px;
}

/* DESCRIPTION */
.room-description{

  font-size:16px;

  line-height:1.9;

  color:#4b5563;

  margin-bottom:38px;
}

/* FEATURES */
.room-features-grid{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:16px;

  margin-bottom:42px;
}

/* FEATURE BOX */
.feature-box{

  background:#f8fafb;

  border-radius:18px;

  padding:18px 20px;

  font-size:16px;

  color:#374151;
}

/* CTA BOX */
.room-cta-box{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:24px;

  background:#111827;

  border-radius:30px;

  padding:34px;

  color:#fff;

  flex-wrap:wrap;
}

/* CTA TEXT */
.room-cta-box strong{

  display:block;

  font-size:22px;

  margin-bottom:10px;
}

.room-cta-box p{

  color:rgba(255,255,255,0.72);

  line-height:1.8;
}

/* CTA BTN */
.room-cta-box a{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:18px 34px;

  border-radius:999px;

  background:linear-gradient(
    135deg,
    #1F5FAF,
    #2EC4C7
  );

  color:#fff;

  font-weight:600;

  text-decoration:none;

  white-space:nowrap;
}

/* =====================================================
   WHY ROOM
===================================================== */

.why-room{

  padding:120px 20px;

  background:#fff;
}

.why-room-container{

  max-width:1200px;

  margin:auto;
}

/* HEAD */
.why-room-head{

  text-align:center;

  max-width:760px;

  margin:0 auto 70px;
}

/* TAG */
.why-room-tag{

  font-size:12px;

  letter-spacing:3px;

  text-transform:uppercase;

  color:#1F5FAF;

  font-weight:600;

  margin-bottom:18px;
}

/* TITLE */
.why-room-head h2{

  font-size:40px;

  line-height:1.1;

  color:#111827;

  font-family:'Playfair Display', serif;
}

/* GRID */
.why-room-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:24px;
}

/* CARD */
.why-room-card{

  background:#ffffff;

  border-radius:28px;

  padding:40px;

  box-shadow:0 10px 30px rgba(0,0,0,0.18);
}

/* TITLE */
.why-room-card h3{

  font-size:24px;

  line-height:1.3;

  margin-bottom:20px;

  color:#111827;

  font-family:'Playfair Display', serif;
}

/* TEXT */
.why-room-card p{

  font-size:16px;

  line-height:1.9;

  color:#6b7280;
}

/* =====================================================
   FAQ
===================================================== */

.room-faq{

  padding:120px 20px;

  background:#f8fafb;
}

.faq-container{

  max-width:900px;

  margin:auto;
}

/* HEAD */
.faq-head{

  text-align:center;

  margin-bottom:60px;
}

/* TAG */
.faq-tag{

  font-size:12px;

  letter-spacing:3px;

  text-transform:uppercase;

  color:#1F5FAF;

  font-weight:600;

  margin-bottom:18px;
}

/* TITLE */
.faq-head h2{

  font-size:40px;

  line-height:1.1;

  color:#111827;

  font-family:'Playfair Display', serif;
}

/* ITEM */
.faq-item{

  padding:34px 0;

  border-bottom:1px solid rgba(0,0,0,0.08);
}

/* QUESTION */
.faq-item h3{

  font-size:20px;

  margin-bottom:18px;

  color:#111827;
}

/* ANSWER */
.faq-item p{

  font-size:16px;

  line-height:1.9;

  color:#6b7280;
}

/* =====================================================
   FINAL CTA
===================================================== */

.room-final-cta{

  position:relative;

  padding:140px 20px;

  overflow:hidden;

  background:url('../images/padang-padang-beach2.webp') center/cover;

  color:#fff;
}

/* OVERLAY */
.room-final-overlay{

  position:absolute;

  inset:0;

  background:
  linear-gradient(
    to bottom,
    rgba(0,0,0,0.30),
    rgba(0,0,0,0.70)
  );
}

/* CONTENT */
.room-final-content{

  position:relative;

  z-index:2;

  max-width:760px;

  margin:auto;

  text-align:center;
}

/* TAG */
.room-final-tag{

  font-size:12px;

  letter-spacing:3px;

  text-transform:uppercase;

  margin-bottom:20px;

  opacity:0.82;
}

/* TITLE */
.room-final-content h2{

  font-size:52px;

  line-height:1.08;

  margin-bottom:28px;

  font-family:'Playfair Display', serif;
}

/* TEXT */
.room-final-content p{

  font-size:16px;

  line-height:1.9;

  color:rgba(255,255,255,0.82);

  margin-bottom:40px;
}

/* BTN */
.room-final-content a{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:18px 38px;

  border-radius:999px;

  background:linear-gradient(
    135deg,
    #1F5FAF,
    #2EC4C7
  );

  color:#fff;

  font-weight:600;

  text-decoration:none;
}

/* =====================================================
   MOBILE
===================================================== */

@media(max-width:992px){

  .room-info-container{

    grid-template-columns:repeat(2,1fr);
  }

  .room-detail-container{

    grid-template-columns:1fr;
  }

  .room-content-side{

    position:relative;

    top:0;
  }

  .why-room-grid{

    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .room-hero{

    min-height:72vh;

    padding:100px 20px;
  }

  .room-hero-content h1{

    font-size:34px;
  }

  .room-hero-content p{

    font-size:15px;
  }

  .room-hero-actions{

    flex-direction:column;
  }

  .room-main-btn,
  .room-second-btn{

    width:100%;
  }

  .room-info-container{

    grid-template-columns:1fr;
  }

  .room-detail-main{

    padding:72px 20px;
  }

  .room-gallery > img{

    height:420px;
  }

  .room-gallery-grid{

    grid-template-columns:1fr;
  }

  .room-gallery-grid img{

    height:220px;
  }

  .room-content-side h2{

    font-size:34px;
  }

  .room-features-grid{

    grid-template-columns:1fr;
  }

  .room-cta-box{

    padding:28px;
  }

  .why-room{

    padding:72px 20px;
  }

  .why-room-head h2{

    font-size:32px;
  }

  .room-faq{

    padding:72px 20px;
  }

  .faq-head h2{

    font-size:32px;
  }

  .faq-item h3{

    font-size:21px;
  }

  .room-final-cta{

    padding:110px 20px;
  }

  .room-final-content h2{

    font-size:34px;
  }

}

/* =========================================
   BED OPTIONS
========================================= */

.bed-options{

  padding:120px 20px;

  background:#ffffff;
}

.bed-options .container{

  max-width:1200px;

  margin:auto;
}

.bed-options-head{

  text-align:center;

  margin-bottom:60px;
}

.bed-options-tag{

  font-size:12px;

  letter-spacing:3px;

  text-transform:uppercase;

  color:#1F5FAF;

  font-weight:600;

  margin-bottom:18px;
}

.bed-options-head h2{

  font-size:40px;

  line-height:1.1;

  color:#111827;

  font-family:'Playfair Display', serif;
}

.bed-options-grid{

  display:grid;

  grid-template-columns:repeat(2,1fr);

  gap:24px;
}

.bed-option-card{

  background:#f8fafb;

  border-radius:28px;

  padding:42px;

  border:1px solid rgba(0,0,0,0.06);
}

.bed-option-card h3{

  font-size:24px;

  margin-bottom:18px;

  color:#111827;

  font-family:'Playfair Display', serif;
}

.bed-option-card p{

  font-size:16px;

  line-height:1.9;

  color:#6b7280;

  margin-bottom:26px;
}

.bed-option-card ul{

  list-style:none;

  padding:0;

  margin:0;

  display:flex;

  flex-direction:column;

  gap:14px;
}

.bed-option-card li{

  font-size:15px;

  color:#374151;
}

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

  .bed-options{

    padding:72px 20px;
  }

  .bed-options-head h2{

    font-size:32px;
  }

  .bed-options-grid{

    grid-template-columns:1fr;
  }

}

.room-upgrade-note{

  margin-bottom:28px;

  font-size:15px;

  line-height:1.8;

  color:#6b7280;
}

/* =========================================
   ROOM SWITCH NOTE
========================================= */

.room-switch-note{

  margin-top:24px;

  font-size:15px;

  line-height:1.8;

  color:#6b7280;
}

.room-switch-note a{

  color:#1F5FAF;

  font-weight:600;

  text-decoration:none;

  transition:0.3s ease;
}

.room-switch-note a:hover{

  opacity:0.75;
}

/* =====================================================
   ROOM COMPARE
===================================================== */

.room-compare{

  padding:120px 20px;

  background:#f8fafb;
}

.room-compare-container{

  max-width:1200px;

  margin:auto;
}

/* HEAD */
.room-compare-head{

  max-width:760px;

  margin:0 auto 70px;

  text-align:center;
}

/* TAG */
.room-compare-tag{

  font-size:12px;

  letter-spacing:3px;

  text-transform:uppercase;

  color:#1F5FAF;

  font-weight:600;

  margin-bottom:18px;
}

/* TITLE */
.room-compare-head h2{

  font-size:40px;

  line-height:1.1;

  color:#111827;

  margin-bottom:24px;

  font-family:'Playfair Display', serif;
}

/* TEXT */
.room-compare-head p{

  font-size:16px;

  line-height:1.9;

  color:#6b7280;
}

/* GRID */
.room-compare-grid{

  display:grid;

  grid-template-columns:repeat(3,1fr);

  gap:28px;
}

/* CARD */
.room-compare-card{

  background:#fff;

  border-radius:28px;

  overflow:hidden;

  box-shadow:
    0 12px 30px rgba(0,0,0,0.04);

  transition:0.35s ease;
}

.room-compare-card:hover{

  transform:translateY(-5px);
}

/* IMAGE */
.room-compare-card img{

  width:100%;

  height:260px;

  object-fit:cover;

  display:block;
}

/* CONTENT */
.room-compare-content{

  padding:32px;
}

/* TITLE */
.room-compare-content h3{

  font-size:24px;

  margin-bottom:16px;

  color:#111827;

  font-family:'Playfair Display', serif;
}

/* TEXT */
.room-compare-content p{

  font-size:15px;

  line-height:1.9;

  color:#6b7280;

  margin-bottom:28px;
}

/* LINK */
.room-compare-content a{

  display:inline-flex;

  align-items:center;

  justify-content:center;

  padding:14px 24px;

  border-radius:999px;

  background:#111827;

  color:#fff;

  font-size:14px;

  font-weight:600;

  text-decoration:none;

  transition:0.3s ease;
}

.room-compare-content a:hover{

  transform:translateY(-2px);

  background:#1f2937;
}

/* MOBILE */
@media(max-width:992px){

  .room-compare-grid{

    grid-template-columns:1fr;
  }

}

@media(max-width:768px){

  .room-compare{

    padding:72px 20px;
  }

  .room-compare-head h2{

    font-size:34px;
  }

  .room-compare-head p{

    font-size:15px;
  }

  .room-compare-content{

    padding:26px;
  }

}

@media(max-width:768px){

  .room-hero-image img{

    animation-duration:24s;
  }

}