@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.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: #f9f6f5;
  color: #4a3f3f;
}

h2 {
  margin-bottom: 3rem;
  color: #a87f6f;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

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

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

.navbar.scrolled {
  background: red;
  background: #fbf0e9;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  font-family: "Songti TC", serif;
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: 1.5px;
  background: linear-gradient(90deg, #e9a6a6, #f9c2c2, #f5a6a6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  transition: all 0.3s ease;
}
.navbar .navbar-brand:hover {
  transform: scale(1.03);
  text-shadow: 0 3px 8px rgba(220, 140, 140, 0.35);
}
.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: #fbf0e9;
  background: #d7c0b5;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 56px;
  }
}
#hero .scroll-chevrons {
  position: absolute;
  left: 50%;
  bottom: 0px;
  z-index: 2;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0px;
  text-decoration: none;
}
@media (max-width: 768px) {
  #hero .scroll-chevrons {
    display: none;
  }
}
#hero .scroll-chevrons .chevron {
  width: 35px;
  height: 35px;
  stroke: #a87f6f; /* 改這個顏色就好 */
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
  animation: drop 1.3s ease-in-out infinite;
  opacity: 0.75;
}
#hero .scroll-chevrons .chevron:nth-child(2) {
  animation-delay: 0.15s;
  opacity: 0.6;
}
#hero .scroll-chevrons .chevron:nth-child(3) {
  animation-delay: 0.3s;
  opacity: 0.45;
}
@keyframes drop {
  0% {
    transform: translateY(-2px);
    opacity: 0.3;
  }
  50% {
    transform: translateY(4px);
    opacity: 1;
  }
  100% {
    transform: translateY(-2px);
    opacity: 0.3;
  }
}
#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 {
  padding: 0rem 0 8rem;
}
@media (max-width: 768px) {
  #about {
    padding-bottom: 4rem;
  }
}
#about h3 {
  color: #a87f6f;
}
@media (max-width: 768px) {
  #about h3 {
    margin-top: 2rem;
  }
}
#about p {
  line-height: 2;
  margin-bottom: 1rem;
}
#about .bg {
  width: 80%;
}
#about .bg img {
  width: 100%;
}
#about .swiper {
  width: 100%;
  transform: rotate(0deg);
  margin-top: 5rem;
}
@media (max-width: 768px) {
  #about .swiper {
    margin-top: 2rem;
  }
}
#about .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
#about .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  #about .swiper .swiper-slide {
    width: 300px;
  }
}
#about .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#services .services-row {
  margin-bottom: 10rem;
}
@media (max-width: 768px) {
  #services .services-row {
    margin-bottom: 5rem;
  }
}
#services .services-row:last-child {
  margin-bottom: 0;
}
#services img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #services img {
    height: 300px;
  }
}
#services .service-card {
  border-radius: 0.5rem;
  border: 1px solid #a87f6f;
  width: 100%;
  display: flex;
  align-content: center;
  flex-direction: column;
  padding: 2rem 1rem;
  height: 100%;
  position: relative;
  overflow: hidden;
}
#services .service-card::after {
  content: "";
  position: absolute;
  width: 30%;
  aspect-ratio: 1/1;
  background: #a87f6f;
  background: #d7c0b5;
  border-radius: 100%;
  bottom: -3rem;
  right: -3rem;
}
#services .service-card h3 {
  margin-bottom: 1rem;
}
#services .service-card h5 {
  color: #a87f6f;
}
#services .service-card p {
  margin-bottom: 0;
  color: rgb(101, 101, 101);
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #fbf0e9;
  background: #4a3f3f;
  color: #fbf0e9;
  border-color: #4a3f3f;
}
#works .nav-pills .nav-link {
  color: #d7c0b5;
  border: 1px solid #d7c0b5;
  color: #a87f6f;
}
#works img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}

@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: #fbf0e9;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  background: #d7c0b5;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #fbf0e9;
  font-weight: 600;
  color: #a87f6f;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

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

#process .process-card {
  background: white;
  border-radius: 1rem;
  padding: 2rem 1.5rem;
  height: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
  overflow: hidden;
}
#process .process-card .process-step {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background: #d7c0b5;
  color: white;
  border-radius: 999px;
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}
#process .process-card i {
  font-size: 3rem;
  color: #d7c0b5;
}
#process .process-card h3 {
  color: #a87f6f;
  margin-bottom: 0.75rem;
}
#process .process-card p {
  color: #555;
  margin: 0;
  line-height: 1.8;
}/*# sourceMappingURL=all.css.map */