@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Oleo+Script:wght@400;700&family=Zen+Kurenaido&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  font-weight: 400;
}

h2 {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.3rem, 2.2vw, 1.35rem);
  font-weight: 500;
}

h4 {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

h5 {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 500;
}

h6 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

p,
a,
span {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
}

small {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}

li {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.5;
}

button,
input,
textarea,
select {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  line-height: 1.4;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #faf7f2;
  color: #666666;
}

/* CSS */
[data-aos=blur-up] {
  opacity: 0;
  filter: blur(4px);
  /*   transform: translateY(10px); */
  transition: all 0.1s ease;
}

[data-aos=blur-up].aos-animate {
  opacity: 1;
  filter: blur(0);
  /*   transform: translateY(0); */
}

h2 {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #2f2f2f;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}
h2 span:first-child {
  text-transform: capitalize;
  font-family: "Oleo Script", system-ui;
  font-weight: 700;
  font-style: normal;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 600;
}
h2 span:last-child {
  font-family: "Zen Kurenaido", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  font-weight: 500;
}

section {
  padding: 8rem 0rem 4rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}

a {
  text-decoration: none;
  color: #6fae75;
}

img {
  -o-object-fit: cover;
     object-fit: cover;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20%);
  } /* 右移距離可自行調整 */
}
.cta-link {
  position: fixed;
  right: 0rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
}
.cta-link a {
  border-radius: 0.5rem 0 0 0.5rem;
  display: inline-block;
  background: #c9a77c;
  padding: 1rem 0.9rem;
  color: white;
  writing-mode: vertical-lr;
  letter-spacing: 6px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
@media (max-width: 768px) {
  .cta-link a {
    padding: 1rem 0.7rem;
    letter-spacing: 4px;
  }
}
.cta-link a i {
  animation: slide 1s ease-in-out infinite alternate;
  display: inline-block;
}

.navbar.scrolled .navbar-brand {
  transition: 0.5s;
}
.navbar.scrolled .navbar-brand img {
  width: 130px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 90px;
  }
}

.navbar {
  position: fixed;
  top: 1rem;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
  padding-left: 3rem;
}
@media (max-width: 768px) {
  .navbar {
    padding-left: 2rem;
  }
}
.navbar .container-fluid {
  background: white;
  padding: 1rem 2rem 1rem;
  border-radius: 4rem 0 0 4rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 180px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 120px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #6fae75;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
#hero .dog {
  position: absolute;
  right: 3rem;
  bottom: -3rem;
  z-index: 10;
  width: 18%;
}
@media (max-width: 768px) {
  #hero .dog {
    width: 40%;
    bottom: -4rem;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: end;
  justify-content: start;
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 1rem 5rem 7rem 1rem;
  }
}
#hero .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    padding: 0;
  }
}
#hero .cta-box .cta-content h1 {
  background: white;
  display: inline-block;
  color: #2f2f2f;
  padding: 0.6rem 0.8rem;
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  font-weight: 400;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 {
    padding: 0.4rem 0.6rem;
  }
}
#hero .cta-box .cta-content p {
  background: white;
  display: inline-block;
  color: #2f2f2f;
  padding: 0.6rem 0.8rem;
  margin-bottom: 0;
  font-size: clamp(1.05rem, 3.5vw, 1.2rem);
  font-weight: 400;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content p {
    padding: 0.4rem 0.6rem;
  }
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about .content {
  background: rgba(201, 167, 124, 0.25);
  border-radius: 2rem 0 0 2rem;
  overflow: hidden;
}
@media (max-width: 768px) {
  #about .content {
    border-radius: 1rem;
  }
}
#about .content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#about .content p {
  line-height: 2;
  margin-bottom: 2rem;
}

#works .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
#works .swiper::after {
  font-family: "Phosphor"; /* 要與字型檔一致 */
  content: "查看公共區域 \e06c";
  position: absolute;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 100;
  border: 1px solid #faf7f2;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: #faf7f2;
  pointer-events: none;
}
@media (max-width: 768px) {
  #works .swiper::after {
    bottom: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
  }
}
#works .swiper::after:hover {
  background: #faf7f2;
  color: #2f2f2f;
}
#works .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
#works .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  #works .swiper .swiper-slide {
    width: 300px;
  }
}
#works .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 1rem;
}

.wave svg {
  width: 100% !important;
}
.wave svg path {
  fill: rgba(111, 174, 117, 0.6);
}

.wave-top {
  margin-top: 10rem;
  margin-bottom: -0.035rem;
}
@media (max-width: 768px) {
  .wave-top {
    margin-top: 5rem;
  }
}

.wave-bottom {
  transform: scaleY(-1);
  margin-top: -0.04rem;
}
#services {
  background: rgba(111, 174, 117, 0.6);
}
#services .service-card {
  background: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 2rem 3rem;
  border-radius: 1rem;
  height: 100%;
}
#services .service-card i {
  font-size: 6rem;
  color: #6fae75;
}
#services .service-card h3 {
  margin: 1.5rem 0 1rem;
}

#room .rooms-card {
  position: relative;
}
#room .rooms-card .more {
  display: inline-block;
  background: rgba(255, 255, 255, 0.758);
  position: absolute;
  top: 1rem;
  z-index: 10;
  right: 1rem;
  padding: 0.5rem 1rem;
  border-radius: 2rem;
  color: #666666;
}
#room .rooms-card .img-box {
  width: 100%;
  height: 550px;
  position: relative;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #room .rooms-card .img-box {
    height: 450px;
  }
}
#room .rooms-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.8rem;
}
#room .rooms-card .img-box .title {
  display: inline-block;
  position: absolute;
  bottom: 0;
  left: 0;
}
#room .rooms-card .img-box .title h3 {
  margin-bottom: 0;
  border-top-right-radius: 0.8rem;
  background: #faf7f2;
  padding: 0.5rem 1rem 0rem 0;
}
#room .rooms-card .img-box .title .top-radius {
  top: -1.39rem;
  left: 0;
  position: absolute;
  transform: scaleY(-1);
  width: 25px;
  height: 25px;
}
#room .rooms-card .img-box .title .top-radius path {
  fill: #faf7f2;
}
#room .rooms-card .img-box .title .bottom-radius {
  right: -1.38rem;
  bottom: 0;
  position: absolute;
  transform: scaleY(-1);
  width: 25px;
  height: 25px;
}
@media (max-width: 768px) {
  #room .rooms-card .img-box .title .bottom-radius {
    right: -1.56rem;
  }
}
#room .rooms-card .img-box .title .bottom-radius path {
  fill: #faf7f2;
}
#room .rooms-card .text {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #room .rooms-card .text {
    margin-bottom: 2rem;
  }
}
#room .rooms-card .text .floor {
  background: #c9a77c;
  display: inline-block;
  padding: 0.3rem 0.8rem;
  color: white;
  border-radius: 2rem;
  margin: 0.5rem 0 1.5rem;
  align-self: start;
}
#room .rooms-card .text .content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#room .rooms-card .text .content .item {
  border-bottom: 1px solid rgb(186, 186, 186);
  padding-bottom: 0.8rem;
}
#room .rooms-card .text .content .item .title {
  color: rgb(167, 167, 167);
  margin-bottom: 0.5rem;
}
#room .rooms-card .text .content .item .text {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
}
#room .rooms-card .text .content .item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#room .rooms-card .text .content .item ul li {
  font-size: clamp(0.875rem, 1.3vw, 1rem);
  font-weight: 400;
  margin-bottom: 0;
}
#room .rooms-card .text .content .item ul li + li {
  /* 從第二個 li 開始才加 margin */
  margin-top: 0.5rem;
}

#process .process-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#process .process-list .process-card {
  background: white;
  padding: 2rem;
  border-radius: 1rem;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px;
}
#process .process-list .process-card h5 {
  margin-bottom: 1rem;
}
#process .process-list .process-card ul {
  list-style: square;
  margin-bottom: 0;
}
#process .process-list .process-card ul li + li {
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #c9a77c;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #c9a77c;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: #c9a77c;
}/*# sourceMappingURL=all.css.map */