@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;700&display=swap");
body {
  font-family: "Noto Sans TC", sans-serif;
  background-color: #fff0e1;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

p {
  font-size: 16px;
  line-height: 2;
}

.link-item {
  text-transform: uppercase;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-toggler {
  border: none;
}

main {
  margin-top: 88px;
}
@media (max-width: 1200px) {
  main {
    margin-top: 56px;
  }
}

section {
  padding: 30px 0;
}

h2 {
  color: #B99879;
}

p {
  color: rgb(65, 65, 65);
}

.text-main {
  color: #B99879;
}

.bg-main-light {
  color: rgb(255, 238, 225);
}

.btn-main {
  color: #fff;
  background-color: #B99879;
}
.btn-main:hover {
  color: #fff;
  background-color: rgba(165, 120, 82, 0.8);
}

.title-highliner {
  display: inline-block;
  position: relative;
}
.title-highliner::before {
  content: "";
  position: absolute;
  bottom: -3px;
  left: 0;
  width: 100%;
  height: 10px;
  background-color: antiquewhite;
  border-radius: 3px;
  z-index: -1;
}

.obj-cover {
  object-fit: cover;
}

.obj-contain {
  object-fit: contain;
}

.obj-center {
  object-position: center;
}

.img-absolute-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mask {
  position: relative;
}
.mask:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 25%;
  background: url(../assets/mask.png) no-repeat center bottom/100%;
  z-index: 100;
}

.sidebar {
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
  position: fixed;
  bottom: 0;
  right: 0;
  z-index: 1000;
}
@media (max-width: 992px) {
  .sidebar {
    bottom: 0;
    left: 0;
  }
}
.sidebar ul {
  list-style: none;
  padding: 0;
  margin: 0;
  background-color: #fff7f2;
}
.sidebar ul li {
  margin-bottom: 16px;
}
.sidebar ul li a {
  width: 50px;
  height: 50px;
  background: #fff7f2;
  color: #B99879;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 25px;
  transition: 0.3s;
  opacity: 0.75;
  text-decoration: none;
}
.sidebar ul li a span {
  font-size: 14px;
  display: none;
}
.sidebar ul li a.booking {
  background-color: #B99879;
  color: #fff;
  text-align: center;
  font-size: 14px;
  padding: 11px;
  line-height: 1;
}
.sidebar ul li a.booking:hover {
  background: #c97f6d;
}
@media (max-width: 992px) {
  .sidebar ul {
    display: flex;
  }
  .sidebar ul li {
    flex-grow: 1;
    margin-bottom: 0;
  }
  .sidebar ul li a {
    width: unset;
    opacity: 1;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe, .video-container object, .video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header .navbar {
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header .navbar .navbar-brand img {
  width: 120px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding-left: 30px;
  position: relative;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 18px;
  transform: translateY(-50%) rotate(45deg);
  background: #e2cfbf;
  width: 8px;
  height: 8px;
  opacity: 0;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  opacity: 1;
}
@media (max-width: 768px) {
  header .navbar .navbar-brand img {
    width: 80px;
  }
}

#news {
  background-color: rgba(255, 255, 255, 0.337254902);
}

.hero {
  position: relative;
}
.hero .hero-img {
  width: 100%;
}

@media (max-width: 1200px) {
  .hero .hero-img {
    width: 100%;
    margin-top: 3%;
  }
}
@media (max-width: 992px) {
  .hero .hero-img {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .hero .hero-img {
    width: 100%;
    height: 40vh;
  }
}
.news img {
  width: 100%;
  margin: auto;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}

.about {
  background: url(../assets/img/about/.png) no-repeat center/cover fixed;
}
@media (max-width: 992px) {
  .about {
    background-attachment: unset;
  }
}

#about p {
  line-height: 2.5rem;
}

.featurette .featurette-divider {
  margin: 5rem 0; /* Space out the Bootstrap <hr> more */
}
.featurette .featurette-heading {
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.05rem;
  margin-top: 7rem;
  font-size: 50px;
  margin-bottom: 20px;
}
@media (max-width: 1200px) {
  .featurette .featurette-heading {
    font-size: 36px;
    margin-top: 0;
  }
}
.featurette .featurette-heading small {
  font-size: 24px;
}
@media (max-width: 1200px) {
  .featurette .featurette-heading small {
    white-space: nowrap;
  }
}

#store {
  background-color: rgba(255, 255, 255, 0.4705882353);
}
#store img {
  box-shadow: rgba(50, 50, 93, 0.25) 0px 6px 12px -2px, rgba(0, 0, 0, 0.3) 0px 3px 7px -3px;
}

#service {
  background: url(../img/service/12.png);
  background-size: 30%;
}
#service hr {
  width: 80%;
  background-color: #B99879;
}
#service ul {
  list-style: none;
  padding-left: 0px;
  width: 70%;
}
@media (max-width: 992px) {
  #service ul {
    width: 100%;
  }
}
@media (max-width: 576px) {
  #service ul {
    width: 100%;
  }
}
#service h3 {
  background-color: #B99879;
  color: #fff;
  text-align: center;
  width: fit-content;
  padding: 10px 30px;
  font-size: 18px;
  border-radius: 50px;
}

@media (max-width: 1200px) {
  #service {
    background: url(../img/service/12.png);
    background-size: 50%;
  }
}
@media (max-width: 992px) {
  #service {
    background: url(../img/service/12.png);
    background-size: 70%;
  }
}
@media (max-width: 576px) {
  #service {
    background: url(../img/service/12.png);
    background-size: 100%;
  }
}
.services .card .card-image img {
  height: 250px;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
.services .card .card-body {
  background: url(../assets/image/texture/bg-service.jpg) no-repeat center/cover;
  min-height: 260px;
}
.services .card .card-footer strong {
  font-weight: 300;
  font-size: 24px;
  color: darkgoldenrod;
}
.services .card .card-footer small {
  font-size: 16px;
  color: rgba(184, 135, 11, 0.8);
}

.feedback .center-one .item {
  height: 300px;
  object-fit: cover;
  margin: 20px 15px 40px;
  display: inline-block;
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.2);
}

#service h4 {
  color: #B99879;
}
#service .learn_more {
  text-decoration: none;
  background-color: #c99a74;
  color: #fff;
  padding: 15px 20px;
  border-radius: 10px;
  border: none;
  transition: 0.5s;
}
#service .learn_more:hover {
  background-color: #B99879;
  transition: 0.5s;
}
#service img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}
#service ul {
  line-height: 3rem;
}
#service ul li {
  font-size: 18px;
}

.leaves {
  position: relative;
}
.leaves .leaf {
  position: absolute;
  width: 15vw;
  height: 15vw;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: -1;
}
.leaves .leaf.leaf1 {
  background-image: url(../assets/image/texture/7.png);
  right: 5%;
  bottom: 0%;
}
.leaves .leaf.leaf2 {
  background-image: url(../assets/image/texture/8.png);
  left: 10%;
  top: 10%;
}
@media (max-width: 1200px) {
  .leaves .leaf.leaf2 {
    left: unset;
    right: 10%;
    top: 5%;
  }
}
.leaves .leaf.leaf3 {
  background-image: url(../assets/image/texture/7.png);
}
.leaves .leaf.leaf4 {
  background-image: url(../assets/image/texture/8.png);
}

@media (max-width: 576px) {
  footer {
    margin-bottom: 50px;
  }
}
#contact {
  background-color: #fff;
  color: #B99879;
  line-height: 2.5rem;
}
#contact img {
  padding-top: 35px;
  width: 200px;
}
#contact a {
  color: #B99879;
  text-decoration: none;
}
#contact i {
  color: #B99879;
  transition: 0.5s;
}
#contact a:hover i {
  color: #B99879;
  transition: 0.5s;
}
#contact .social_media {
  font-size: 40px;
}
#contact .social_media_link {
  background-color: #ebd1b8;
  padding: 10px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.5s;
}
#contact .social_media_link:hover {
  background-color: #B99879;
  padding: 10px 30px;
  color: #fff;
  border-radius: 50px;
  transition: 0.5s;
}

.et-slide {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: fit-content;
  position: relative;
  background: #eee;
  text-align: center;
}
.et-slide hr {
  width: 100%;
  margin: 5px;
  margin-bottom: 15px;
}
.et-slide h1 {
  font-size: 2rem;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.5rem;
  font-family: "Oswald", sans-serif;
}
.et-slide h3 {
  font-size: 1rem;
  letter-spacing: 0.3rem;
  opacity: 0.6;
}

.google_comment {
  width: 100%;
  object-fit: contain;
}

.google_comment .comment_box {
  width: 360px;
  object-fit: contain;
}

.google_comment img {
  max-width: 100%;
  display: block;
}

.google_comment .comment_box img {
  box-shadow: rgba(14, 30, 37, 0.12) 0px 2px 4px 0px, rgba(14, 30, 37, 0.32) 0px 2px 16px 0px;
  transition: 0.5s;
}

.google_comment .comment_box img:hover {
  transform: scale(1.1);
  transition: 0.5s;
}

.pic_s {
  display: none;
}

@media (max-width: 992px) {
  .pic_s {
    display: flex;
  }
  .pic_l {
    display: none;
  }
}/*# sourceMappingURL=all.css.map */