   /* GLOBAL RESET / BASE */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

section {
  scroll-margin-top: 60px;
}
   /* TYPOGRAPHY */
h1 {
  font-size: clamp(24px, 4vw, 42px);
}

h2 {
  font-size: clamp(20px, 3vw, 32px);
}

h3 {
  font-size: clamp(18px, 2.5vw, 24px);
}

.probootstrap-sub-wrap {
  font-size: clamp(14px, 2vw, 18px);
}
   /* SECTION SPACING */
.probootstrap-section {
  padding: clamp(40px, 6vw, 90px) 5%;
}

   /* SLIDER / HERO SECTIONS */
.probootstrap-slider,
.probootstrap-inner {
  min-height: 70vh;
}

#rooms.flexslider.probootstrap-inner,
#dining.flexslider.probootstrap-inner {
  height: 100vh !important;
  min-height: 100vh !important;
}

#rooms.flexslider .slides > li,
#dining.flexslider .slides > li {
  height: 100vh !important;
  background-position: center 80% !important;
  background-size: cover !important;
}

   /* COUPLE IMAGE SLIDE */
.probootstrap-slider .slides > li.couple-slide {
  position: relative;
  overflow: hidden;
  background: #000;
  background-image: none !important;
}

.probootstrap-slider .slides > li.couple-slide .couple-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  z-index: 0;
}

.probootstrap-slider .slides > li.couple-slide .container {
  position: relative;
  z-index: 2;
}

.probootstrap-slider .slides > li.couple-slide.overlay:before {
  z-index: 1;
}
   /* EVENTS CAROUSEL / VIDEOS */
#events-carousel .probootstrap-image {
  position: relative;
  height: 170px;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
}

#events-carousel .probootstrap-image:hover {
  transform: translateY(-5px);
}

#events-carousel .probootstrap-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0);
}

#events-carousel video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

#events-carousel .video-wrap {
  width: 100%;
  height: 100%;
}

#events-carousel .video-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

   /* ROOMS SECTION LAYOUT */
#rooms .row {
  display: flex;
  flex-wrap: wrap;
}

#rooms .col-md-4 {
  display: flex;
}

#rooms + .probootstrap-section .rooms-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 30px;
}

#rooms + .probootstrap-section .rooms-grid .room-item {
  display: flex;
  flex: 0 1 calc((100% - 60px) / 3);
  max-width: calc((100% - 60px) / 3);
}
   /* ROOM CARD */
.probootstrap-room {
  display: flex;
  flex-direction: column;
  width: 100%;
  background: #fff;
  border: 1px solid #e8e8e8;
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 0;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.probootstrap-room:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.probootstrap-room a {
  display: block;
}

.probootstrap-room img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  display: block;
}
   /* ROOM CARD CONTENT */
.probootstrap-room .text {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  gap: 12px;
  padding: 22px 18px 20px;
  text-align: center;
}

.probootstrap-room .text h3 {
  margin: 0;
  font-size: 24px;
  line-height: 1.3;
}

.probootstrap-room .text p {
  margin: 0;
  font-size: 16px;
  line-height: 1.5;
  color: #777;
}

.probootstrap-room .text p strong {
  color: #111;
  font-weight: 700;
}
   /* ROOM CARD META */
.probootstrap-room .post-meta {
  width: 100%;
  margin: 4px 0 0;
}

.probootstrap-room .post-meta ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.probootstrap-room .post-meta ul li {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  font-size: 15px;
  color: #999;
}

.probootstrap-room .review-rate {
  display: inline-block;
  padding: 3px 8px;
  border-radius: 6px;
  background: #000;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.2;
}
   /* WHATSAPP FLOAT BUTTON */
.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 999;
  width: 60px;
  height: 60px;
}

.whatsapp-float img {
  width: 60px;
  height: 60px;
}
   /* MOBILE / TABLET */
@media (max-width: 991px) {
  #rooms + .probootstrap-section .rooms-grid .room-item {
    flex: 0 1 calc((100% - 30px) / 2);
    max-width: calc((100% - 30px) / 2);
  }

  .probootstrap-room img {
    height: 220px;
  }

  .probootstrap-room .text h3 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  body {
    font-size: 14px;
    line-height: 1.6;
  }

  .probootstrap-main-nav li {
    display: block;
    margin: 10px 0;
  }

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

  .carousel-inner .col-md-4 {
    width: 100%;
  }

  .probootstrap-logo img {
    max-width: 120px;
  }
}

@media (max-width: 575px) {
  #rooms + .probootstrap-section .rooms-grid {
    gap: 20px;
  }

  #rooms + .probootstrap-section .rooms-grid .room-item {
    flex: 0 1 100%;
    max-width: 100%;
  }

  .probootstrap-room img {
    height: 210px;
  }

  .probootstrap-room .text {
    gap: 10px;
    padding: 18px 14px;
  }

  .probootstrap-room .text h3 {
    font-size: 21px;
  }

  .probootstrap-room .text p {
    font-size: 15px;
  }

  .probootstrap-room .post-meta ul {
    gap: 10px;
  }

  .probootstrap-room .post-meta ul li {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  #rooms.flexslider.probootstrap-inner,
  #dining.flexslider.probootstrap-inner,
  #rooms.flexslider .slides > li,
  #dining.flexslider .slides > li {
    height: 70vh !important;
    min-height: 70vh !important;
    background-position: center 85% !important;
  }
}
   /* LARGE SCREENS */
@media (min-width: 1400px) {
  .container {
    max-width: 1300px;
  }
}

.tree-room-img{
  object-fit: contain !important;
  background: #f8f8f8;
}
.qr-section{
  margin-top: 22px;
  text-align: center;
  padding: 14px 12px;
  background: #f7f7f7;
  border-radius: 14px;
}

.qr-title{
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 600;
  color: #222;
}

.qr-img{
  width: 140px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
  border-radius: 12px;
}

@media (max-width: 767px){
  .qr-section{
    margin-top: 18px;
    padding: 12px 10px;
  }

  .qr-img{
    width: 120px;
  }
}
