/* Book Now Button */
.book-btn {
  background-color: #a57c1b;
  color: #fff;
  padding: 10px 22px;
  border-radius: 0;
  font-weight: 500;
  text-transform: uppercase;
  transition: all 0.3s ease;
}

.book-btn:hover {
  background-color: #d4af37;
  color: #000;
}

/* ================= HERO SLIDER ================= */
.hero-slider {
  height: 100vh;
  overflow: hidden;
}

.hero-slider img {
  height: 100vh;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  color: #fff;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 600;
}

.hero-content p {
  font-size: 1.2rem;
  margin-top: 10px;
}

@media (max-width: 768px) {
  .hero-slider {
    margin-top: 10%;
  }
}

.about-area {
  margin-top: 10%;
}
.about-col h6 {
  font-size: 14px;
  font-weight: 600;
  color: #6e2611;
}
.about-col h2 {
  font-size: 30px;
  line-height: 40px;
  font-weight: 200;
  margin-bottom: 20px;
}
.about-col h2 span {
  font-weight: bold;
}
.about-video-img-box .hoverlay {
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 4px;
  width: 100%;
}
.about-video-img-box:after {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  width: 85%;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: -10px;
  z-index: -1;
  border-radius: 4px;
  height: 100%;
}
.about-video-img-box:before {
  position: absolute;
  content: "";
  background-color: rgba(0, 0, 0, 0.6);
  width: 75%;
  left: 0px;
  right: 0px;
  margin: auto;
  bottom: -20px;
  border-radius: 4px;
  z-index: -1;
  height: 100%;
}
.about-video-img-box a {
  background-color: #6e2611;
  width: 50px;
  height: 50px;
  -webkit-box-shadow: 0px 0px 0px 9px rgba(255, 255, 255, 0.4);
  box-shadow: 0px 0px 0px 9px rgba(255, 255, 255, 0.4);
  text-align: center;
  line-height: 50px;
  color: #fff;
  font-size: 16px;
  border-radius: 100%;
}
.btn-style-1 {
  background-color: #6e2611;
  color: #fff;
  border: 0;
  border-radius: 0px;
  padding: 12px 20px;
  font-size: 16px;
  line-height: 22px;
  text-decoration: none;
  display: inline-block;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  -o-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.btn-style-1:hover {
  background-color: #222222;
  color: #fff;
  text-decoration: none;
}
.zoom-effect {
  transition: all 0.3s ease-in-out;
}
.zoom-effect:hover {
  transform: scale(1.025);
}
@media (max-width: 768px) {
  .about-video-img-box {
    margin-top: 10%;
  }
}

/* ROOMS SECTION */
.rooms-section {
  padding: 80px 0;
  background: #f9fbfc;
}

/* HEADING */
.section-heading {
  font-size: 42px;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 12px;
}

.section-subheading {
  font-size: 16.5px;
  color: #555;
  max-width: 650px;
  margin: auto;
  line-height: 1.6;
}

/* CARD */
.room-card {
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
  transition: transform 0.3s ease;
}

.room-card:hover {
  transform: translateY(-6px);
}

.room-card img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

/* CONTENT */
.room-content {
  padding: 22px;
}

.room-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #0b1f3a;
  margin-bottom: 10px;
}

.room-content p {
  font-size: 15px;
  color: #555;
  line-height: 1.6;
  margin-bottom: 18px;
}

/* FOOTER */
.room-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* DETAILS LINK */
.details-link {
  font-size: 14px;
  color: #6c7a89;
  text-decoration: underline;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .section-heading {
    font-size: 32px;
  }

  .room-card img {
    height: 220px;
  }
}

/* SKY DECK SECTION */
.skydeck-section {
  padding: 80px 0;
  background: #ffffff;
}

/* IMAGE COLLAGE */
.image-collage {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.top-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.top-images img,
.bottom-image img {
  width: 100%;
  height: 100%;
  border-radius: 18px;
  object-fit: cover;
}

.top-images img {
  height: 200px;
}

.bottom-image img {
  height: 320px;
}

/* BUTTON */
.dark-btn {
  display: inline-block;
  background: #6e2611;
  color: #fff;
  padding: 14px 34px;
  border-radius: 30px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  margin-top: 25px;
  transition: 0.3s ease;
}

.dark-btn:hover {
  background: #09172d !important;
  color: #fff !important;
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .rooms-section {
    padding-bottom: 40px;
  }

  .skydeck-section {
    padding-top: 40px;
  }
  .top-images img {
    height: 160px;
  }

  .bottom-image img {
    height: 240px;
  }
}
/* SECTION */
.contact-section {
  background: #ededed;
  padding: 90px 0;
  position: relative;
}

/* TEXT */
.section-tag {
  font-size: 13px;
  font-weight: 600;
  color: #6e2611;
  letter-spacing: 1px;
}

.section-title {
  font-size: 36px;
  font-weight: 700;
  color: #0b1320;
}

.section-desc {
  color: #6c7a89;
  margin: 18px 0 30px;
  max-width: 480px;
}

/* CONTACT INFO */
.contact-info .info-item {
  display: flex;
  gap: 16px;
  margin-bottom: 22px;
}

.icon-box {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6e2611;
  font-size: 18px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
}

.contact-info h6 {
  font-weight: 600;
  margin-bottom: 4px;
}

.contact-info p {
  margin: 0;
  color: #6c7a89;
  font-size: 14px;
}

/* FORM CARD */
.form-card {
  background: #ffffff;
  border-radius: 30px;
  padding: 35px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08);
}

.form-control {
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid #edf1f4;
  font-size: 14px;
}

.form-control:focus {
  border-color: #6e2611;
  box-shadow: none;
}

.submit-btn {
  background: #6e2611;
  color: #fff;
  padding: 14px;
  border-radius: 16px;
  font-weight: 600;
  border: none;
}

.submit-btn:hover {
  background: #6e2613;
  color: #fff;
}

/* 📱 MOBILE FIX */
@media (max-width: 767px) {
  .contact-section {
    padding: 50px 0;
  }

  .section-title {
    font-size: 28px;
  }

  .section-desc {
    font-size: 14px;
    margin-bottom: 22px;
  }

  .form-card {
    padding: 24px;
    border-radius: 22px;
  }
}

/* 📱 TABLET */
@media (min-width: 768px) and (max-width: 991px) {
  .contact-section {
    padding: 70px 0;
  }

  .section-title {
    font-size: 32px;
  }
}
