@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=Klee+One:wght@400;600&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.3rem, 3vw, 1.4rem);
  font-weight: 600;
}

h3 {
  font-size: clamp(1.2rem, 2.2vw, 1.2rem);
  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: 400;
}

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

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

small {
  font-size: clamp(0.875rem, 1.3vw, 0.8rem);
  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: "PingFang TC", "Noto Sans TC";
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #2f2f2f;
}

h2 {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  color: #9c7a63;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}
h2 span:first-child {
  font-family: "PingFang TC", "Noto Sans TC";
  text-transform: capitalize;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-left: 0rem;
}
h2 span:first-child::before {
  content: "";
  width: 7px;
  height: 7px;
  background: #9c7a63;
  display: inline-block;
  border-radius: 100%;
}
h2 span:last-child {
  font-size: clamp(1.3rem, 3vw, 1.4rem);
  font-weight: 600;
  font-family: "Klee One", cursive;
  font-weight: 400;
  font-style: normal;
}

.cta-link {
  position: fixed;
  bottom: 0rem;
  right: 0rem;
  z-index: 1000;
  display: none;
}
@media (max-width: 768px) {
  .cta-link {
    display: inline-block;
  }
}
.cta-link a {
  display: inline-block;
  padding: 0.5rem 1rem 0.5rem;
  background: #d08a57;
  background: black;
  margin-left: 1rem;
  border-radius: 0.5rem 0 0;
  color: white;
}

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

a {
  text-decoration: none;
  color: #d08a57;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: white;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 100px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 70px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1rem;
}
@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: #d08a57;
  background: black;
  margin-left: 1rem;
  border-radius: 0.5rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
  color: white;
}

#hero {
  width: 100%;
  height: calc(100vh - 129.25px);
  position: relative;
  padding: 0rem 1rem 1rem;
  margin-top: 129.25px;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 96px;
    padding: 0 0.5rem 0.5rem;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.438);
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: static;
    background: none;
  }
}
#hero .cta-box .cta-content {
  text-align: center;
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    background: rgba(0, 0, 0, 0.293);
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box {
    flex-direction: column;
  }
}
#hero .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
#hero .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .cta-box .cta-content .btn-box a:first-child {
  background: #d08a57;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #d08a57;
}
#hero .swiper {
  width: 100%;
  height: 100%;
  border-radius: 0.5rem;
  overflow: hidden;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about .text {
  padding-right: 4rem;
}
@media (max-width: 768px) {
  #about .text {
    padding-right: 0;
  }
}
#about .text p {
  line-height: 2;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #about img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.divider-img {
  width: 100%;
  height: 80vh;
}
@media (max-width: 768px) {
  .divider-img {
    height: 30vh;
  }
}
.divider-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: bottom;
     object-position: bottom;
}

#room .swiper {
  width: 100%;
  height: 450px;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #room .swiper {
    height: 250px;
  }
}
#room .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#room .swiper .swiper-pagination-bullet {
  background: none;
  border: 1px solid #2f2f2f;
  opacity: 1;
}
#room .swiper .swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: #2f2f2f;
}
#room .room-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #room .room-card {
    margin-top: 1rem;
  }
}
#room .room-card .title {
  color: #9c7a63;
  display: flex;
  gap: 0.8rem;
  align-items: center;
}
@media (max-width: 768px) {
  #room .room-card .title {
    margin-bottom: 1rem;
  }
}
#room .room-card .title .floor {
  width: 30px;
  height: 30px;
  background: #9c7a63;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
#room .room-card .title h3 {
  margin-bottom: 0;
}
#room .room-card .content {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}
#room .room-card .content .item {
  border-bottom: 1px solid rgb(186, 186, 186);
  padding-bottom: 0.8rem;
}
#room .room-card .content .item .title {
  color: rgb(167, 167, 167);
  margin-bottom: 0.5rem;
}
#room .room-card .content .item .text {
  font-size: clamp(0.875rem, 1.3vw, 0.8rem);
  font-weight: 400;
}
#room .room-card .content .item ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#room .room-card .content .item ul li {
  font-size: clamp(0.875rem, 1.3vw, 0.8rem);
  font-weight: 400;
  margin-bottom: 0;
}
#room .room-card .content .item ul li + li {
  /* 從第二個 li 開始才加 margin */
  margin-top: 0.5rem;
}

#works .swiper {
  width: 100%;
  transform: rotate(0deg);
}
#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;
}

#space .space-card {
  background: #f2f2f2;
  border-radius: 1rem;
  overflow: hidden;
  height: 100%;
}
#space .space-card img {
  width: 100%;
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #space .space-card img {
    height: 250px;
  }
}
#space .space-card .content {
  padding: 1.5rem;
}
#space .space-card .content h3 {
  color: #9c7a63;
  margin-bottom: 1rem;
}
#space .space-card .content ul {
  padding-left: 1rem;
  list-style: circle;
}
#space .space-card .content ul li + li {
  margin-top: 0.5rem;
}

#process {
  position: relative;
  color: white;
  padding: 3rem 0;
}
#process .bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  filter: brightness(0.2);
}
#process .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#process h2 {
  color: white;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #process h2 {
    margin-bottom: 2rem;
  }
}
#process h2 span:first-child::before {
  background: white;
}
#process .process-box {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
#process .process-box .process-item {
  border-bottom: 1px solid rgb(96, 96, 96);
}
#process .process-box .process-item h3 {
  margin-bottom: 1rem;
}
#process .process-box .process-item ul {
  list-style: none;
  padding: 0;
  margin-bottom: 1.5rem;
}
#process .process-box .process-item ul li + li {
  margin-top: 0.2rem;
}

@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: #d08a57;
  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: #d08a57;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  footer {
    padding-bottom: 3rem;
  }
}
footer a {
  text-decoration: underline;
}/*# sourceMappingURL=all.css.map */