@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");
: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.5rem, 3vw, 1.7rem);
  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: 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.75rem, 1.1vw, 0.875rem);
  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;
  color: #1c2a39;
  background: #1c2a39;
}

h2 {
  margin-bottom: 7rem;
  position: relative;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 5rem;
  }
}
h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -4rem;
  transform: translateX(-50%);
  width: 2px;
  height: 50px;
  background: #1c2a39;
  background: #4a5a6a;
}

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

a {
  text-decoration: none;
  color: #1c2a39;
}

.navbar.scrolled {
  background: red;
  background: #c5b8a5;
  background: #1c2a39;
}
.navbar.scrolled .navbar-brand {
  color: #c5b8a5;
}
.navbar.scrolled .navbar-toggler-icon {
  filter: invert(1);
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: #f3efe8;
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item.cta {
  background: #c5b8a5;
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
  color: #2e2e2e;
}
.navbar.scrolled .navbar-collapse .navbar-nav .nav-item.cta .nav-link svg {
  fill: #1c2a39;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  display: inline-block;
  position: relative;
  text-decoration: none;
  letter-spacing: 1.5px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: transform 0.25s ease, filter 0.25s ease, text-shadow 0.25s ease, letter-spacing 0.25s ease;
  font-family: "Noto Serif TC", serif;
  font-weight: 700;
  font-size: 1.85rem;
  color: #1c2a39;
  padding: 0.35rem 0.75rem;
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.5rem;
    padding-left: 0;
  }
}
.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: #1c2a39;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
  color: #ffffff;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link svg {
  fill: white;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0));
  background: linear-gradient(to right, rgba(28, 42, 57, 0.3), rgba(28, 42, 57, 0));
}
@media (max-width: 768px) {
  #hero .cta-box {
    position: static;
    background: none;
  }
}
#hero .cta-box .cta-content {
  color: white;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    background: rgba(0, 0, 0, 0.293);
    padding: 2rem;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
}
#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;
  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: #1c2a39;
  color: white;
  border: 1px solid white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: white;
  border: 1px solid white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #1c2a39;
}
#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 {
  background: #c5b8a5;
}
#about p {
  text-align: start;
  line-height: 2;
  margin-bottom: 2rem;
}

#room h2 {
  color: #c5b8a5;
}
#room h2::after {
  background: #c5b8a5;
}
#room h3 {
  margin-bottom: 1rem;
}
#room p {
  margin-bottom: 3rem;
  color: #f3efe8;
  text-align: center;
}
#room .room-card {
  height: 100%;
  background: #c5b8a5;
  position: relative;
  overflow: hidden;
}
#room .room-card:hover img {
  transform: scale(1.1);
}
#room .room-card::after {
  position: absolute;
  content: "\e310  查看更多";
  padding: 0.5rem 1rem;
  font-family: "Phosphor"; /* 記得指定 icon 字型 */
  pointer-events: none;
  top: 0.5rem;
  right: 0.5rem;
  background: rgba(28, 42, 57, 0.7);
  color: #ffffff;
}
#room .room-card .img-box {
  width: 100%;
  height: 400px;
  display: inline-block;
  overflow: hidden;
}
@media (max-width: 768px) {
  #room .room-card .img-box {
    height: 300px;
  }
}
#room .room-card .img-box img {
  transition: 0.5s;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#room .room-card .text {
  padding: 1.5rem 2rem;
  z-index: 2;
}
@media (max-width: 768px) {
  #room .room-card .text {
    padding: 1.5rem;
  }
}
#room .room-card .text p {
  margin: 0;
  color: #4a5a6a;
  color: #1c2a39;
  text-align: start;
  margin-bottom: 1.5rem;
}
#room .room-card .text .info {
  display: flex;
  gap: 1rem 1.5rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  #room .room-card .text .info {
    gap: 1rem 1rem;
  }
}
#room .room-card .text .info .icon-box {
  display: flex;
  gap: 0.4rem;
  align-items: center;
}
#room .room-card .text .info .icon-box svg {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
  stroke: #4a5a6a;
  fill: #4a5a6a;
}
#room .room-card .text .info .icon-box small {
  color: #4a5a6a;
  margin: 0;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #1c2a39;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact h2 {
  color: #c5b8a5;
}
#contact h2::after {
  background: #c5b8a5;
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  background: #f3efe8;
  padding: 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: #1c2a39;
  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: #1c2a39;
  font-weight: 600;
  color: #4a5a6a;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  color: #c5b8a5;
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: #c5b8a5;
}

#process {
  background: #f3efe8;
}
#process h2 {
  color: #1c2a39;
}
#process h2::after {
  background: #4a5a6a;
}
#process .lead {
  color: #4a5a6a;
  margin: 0 auto 2.5rem auto;
  line-height: 1.9;
}
#process .process-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#process .process-list .process-item {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  padding: 1rem 1.25rem;
  align-items: flex-start;
  box-shadow: rgba(149, 157, 165, 0.15) 0px 8px 18px;
}
@media (max-width: 768px) {
  #process .process-list .process-item {
    padding: 1rem;
  }
}
#process .process-list .process-item .num {
  width: 40px;
  height: 40px;
  background: #1c2a39;
  color: #c5b8a5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}
#process .process-list .process-item .content h3 {
  margin: 0 0 0.25rem 0;
  font-size: 1.15rem;
  color: #1c2a39;
}
#process .process-list .process-item .content p {
  margin: 0 0 0.5rem 0;
  color: #2e2e2e;
  line-height: 1.9;
}
#process .process-list .process-item .content .tips {
  color: #4a5a6a;
  font-size: 0.95rem;
}
#process .process-list .process-item .content ul {
  padding-left: 1rem;
  color: #2e2e2e;
  line-height: 1.9;
}/*# sourceMappingURL=all.css.map */