@charset "UTF-8";
html, body {
  background-color: #f9f9f9;
}

header {
  background-color: #fff;
  box-shadow: 0 0 10px 0px #d4d4d4;
}

p {
  margin-bottom: 10px;
}

footer {
  margin-top: 100px;
}
footer nav.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 1044;
  width: 100%;
  text-align: center;
  padding-top: 5px;
  padding-bottom: 5px;
  background-color: #fff;
  box-shadow: 0 0 1px 0px #000;
}
footer nav.footer img {
  margin-bottom: 2px;
}
footer nav.footer a {
  text-decoration: none;
  color: #000;
  font-size: 14px;
}

/* ปรับแต่ง modal */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
  background-color: #1c1c1c; /* พื้นหลังสีเข้ม */
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); /* แสงเงาที่เด่นชัด */
  animation: modal-fade-in 0.4s ease; /* เพิ่มการเคลื่อนไหวเมื่อแสดง modal */
}

/* แอนิเมชันในการแสดง modal */
@keyframes modal-fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.modal-body img {
  max-width: 100%;
  max-height: 80vh;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  transition: transform 0.3s ease; /* เพิ่มเอฟเฟกต์ zoom เมื่อเลื่อนเมาส์ */
}

/* เมื่อ hover บนภาพ */
.modal-body img:hover {
  transform: scale(1.05);
}

.modal-footer .btn {
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 30px;
  background-color: #ffffff;
  color: #1c1c1c;
  transition: background-color 0.3s ease, color 0.3s ease; /* เพิ่มเอฟเฟกต์การเปลี่ยนสี */
}

.modal-footer .btn:hover {
  background-color: #f0f0f0;
  color: #000;
}

/* ปุ่มปิดที่เป็นไอคอน */
.btn-close-white {
  filter: invert(1);
  opacity: 0.7;
}

.btn-close-white:hover {
  opacity: 1;
}

/* ปรับสไตล์ของ modal */
.modal-content {
  border-radius: 15px;
  overflow: hidden;
}

.modal-body img {
  max-width: 100%;
  border-radius: 10px;
}

/* ปรับแต่งปุ่มใน Swiper */
.swiper-button-next, .swiper-button-prev {
  color: #fff;
}

.swiper-wrapper .swiper-slide {
  text-align: center;
}

.swiper-pagination-bullet {
  background-color: #fff;
}

.home .swiper {
  width: 100%;
}
.home .swiper-slide {
  padding: 50px 0;
  display: flex;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.home .swiper-slide .card {
  background-color: rgba(0, 0, 0, 0.4588235294);
  border: 0px;
}
.home .swiper-slide .card h1, .home .swiper-slide .card h2 {
  font-size: 1.8em;
  color: #ffc13a;
}
.home .swiper-slide .card p {
  color: #ffe3a7;
}

.img {
  height: 200px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-color: #f9f9f9;
}

h2 {
  font-size: 2em;
  color: #ffc13a;
}

.price {
  color: #1b3779;
}
.price .span {
  font-size: 24px;
}
.price .span strong {
  font-size: 40px;
  line-height: 40px;
}

.btn-main,
.btn-main:hover,
.btn-main:active,
.btn-main:visited,
.btn-main:focus {
  background-color: #ffc13a;
  color: #000;
  border: 1px solid #1b3779;
  width: 100%;
  cursor: pointer;
}

hr {
  width: 100px;
  opacity: 1;
  border-top: 5px solid #1b3779;
}

.header-custom .history-placeholder {
  flex: 1;
}

.card {
  border-radius: 12px;
  overflow: hidden;
  transition: transform 0.2s, box-shadow 0.2s;
}

.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.card-title {
  font-size: 1.25rem;
  margin-bottom: 1rem;
  color: #495057;
}

.card-text {
  font-size: 1rem;
  color: #6c757d;
}

.card-footer {
  border-top: none;
}

.badge {
  font-size: 0.9rem;
  padding: 0.5em 0.75em;
  border-radius: 8px;
}

.btn-outline-primary {
  border-radius: 20px;
  padding: 0.5em 1.5em;
}

.bi {
  margin-right: 0.5rem;
  font-size: 1.1rem;
}

@media only screen and (min-width: 992px) {
  html, body {
    font-size: 18px;
  }
  .price {
    color: #1b3779;
  }
  .price .span {
    font-size: 30px;
  }
  .price .span strong {
    font-size: 50px;
    line-height: 50px;
  }
  .home .swiper-slide {
    padding: 80px 0;
  }
  .home .swiper-slide .card h1, .home .swiper-slide .card h2 {
    font-size: 2.8em;
  }
  footer {
    margin-top: 150px;
  }
  footer nav.footer {
    padding-top: 10px;
    padding-bottom: 10px;
  }
  footer nav.footer img {
    width: 30px;
    margin-bottom: 5px;
  }
  footer nav.footer a {
    font-weight: 600;
    font-size: 16px;
  }
  h2 {
    font-size: 3em;
  }
  .icon img {
    width: 30px;
  }
  .img {
    height: 390px;
  }
}
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: #ffc13a;
}

.kanit-thin {
  font-family: "Kanit", sans-serif;
  font-weight: 100;
  font-style: normal;
}

.kanit-extralight {
  font-family: "Kanit", sans-serif;
  font-weight: 200;
  font-style: normal;
}

.kanit-light {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.kanit-regular {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kanit-medium {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: normal;
}

.kanit-semibold {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: normal;
}

.kanit-bold {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: normal;
}

.kanit-extrabold {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: normal;
}

.kanit-black {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-style: normal;
}

.kanit-thin-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 100;
  font-style: italic;
}

.kanit-extralight-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 200;
  font-style: italic;
}

.kanit-light-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 300;
  font-style: italic;
}

.kanit-regular-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 400;
  font-style: italic;
}

.kanit-medium-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 500;
  font-style: italic;
}

.kanit-semibold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 600;
  font-style: italic;
}

.kanit-bold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 700;
  font-style: italic;
}

.kanit-extrabold-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 800;
  font-style: italic;
}

.kanit-black-italic {
  font-family: "Kanit", sans-serif;
  font-weight: 900;
  font-style: italic;
}

.room-detail-page .main-img {
  height: 280px;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.room-detail-page .thumbnail-gallery {
  display: flex;
  justify-content: start;
  margin-top: 15px;
}
.room-detail-page .thumbnail-gallery img {
  width: 75px;
  height: 75px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 8px;
  margin-right: 10px;
  transition: transform 0.3s ease;
}
.room-detail-page .thumbnail-gallery img:hover {
  transform: scale(1.05);
}
.room-detail-page .thumbnail-gallery img:last-child {
  margin-right: 0;
}
.room-detail-page .room-info h4 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}
.room-detail-page .room-info .properties,
.room-detail-page .room-info .check-in-out,
.room-detail-page .room-info .amenities {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.room-detail-page .room-info .properties div,
.room-detail-page .room-info .check-in-out div,
.room-detail-page .room-info .amenities div {
  flex: 1 1 48%;
  margin-bottom: 10px;
  font-size: 1rem;
}
.room-detail-page .room-info .properties div i,
.room-detail-page .room-info .check-in-out div i,
.room-detail-page .room-info .amenities div i {
  margin-right: 10px;
  font-size: 1.2rem;
  color: #333;
}
.room-detail-page .room-info p {
  font-size: 1rem;
  color: #555;
}
.room-detail-page .btn-book-now {
  background-color: #ffc13a;
  color: #000;
  padding: 10px 30px;
  width: 100%;
  font-size: 18px;
  font-weight: bold;
  border-radius: 8px;
  border: 1px solid #1b3779;
  text-transform: uppercase;
  text-decoration: none;
  display: inline-block;
  transition: background-color 0.3s ease, color 0.3s ease;
}
.room-detail-page .btn-book-now:hover {
  background-color: #1b3779;
  color: #ffc13a;
}

@media (min-width: 768px) {
  .room-detail-page .main-img {
    height: 350px;
  }
  .room-detail-page .thumbnail-gallery img {
    width: 100px;
    height: 100px;
    margin-right: 15px;
  }
  .room-detail-page .room-info .properties div,
  .room-detail-page .room-info .check-in-out div,
  .room-detail-page .room-info .amenities div {
    flex: 1 1 23%;
  }
}/*# sourceMappingURL=style.css.map */