@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.08rem, 1.7vw, 1.1rem);
  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: #2e2b28;
  color: #cccccc;
}

h2 {
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}
h2 span {
  font-size: inherit;
  font-weight: inherit;
  padding: 0;
  margin: 0;
  color: #d4bfa3;
}

h2,
h3,
h4,
h5 {
  color: #f2f2f2;
}

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

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

.cta-link {
  display: flex;
  flex-direction: column;
  position: fixed;
  bottom: 0.5rem;
  right: 0.5rem;
  gap: 1rem;
  z-index: 999;
}
.cta-link a {
  display: inline-block;
  position: relative;
}
.cta-link a svg {
  width: 50px;
  fill: red;
  fill: #d4bfa3;
}
@media (max-width: 768px) {
  .cta-link a svg {
    width: 45px;
  }
}
.cta-link a::after {
  background: rgb(0, 0, 0);
  content: "";
  width: 80%;
  height: 80%;
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.navbar.scrolled {
  background: #2e2b28;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 60px;
  transition: 0.5s;
  filter: invert(1);
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 40px;
  }
}
.navbar .navbar-brand {
  display: inline-block;
  position: relative;
  text-decoration: none;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  transition: letter-spacing 0.25s ease, transform 0.25s ease;
  font-family: "Zen Kaku Gothic New", "Noto Sans TC", "PingFang TC", "Microsoft JhengHei", sans-serif;
  font-weight: 600;
  font-size: 1.5rem;
  letter-spacing: 2px;
  color: #ffffff;
  /* 乾淨立體，深底易讀 */
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.35), 0 0 10px rgba(0, 0, 0, 0.18);
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1.3rem;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
}
@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: #d4bfa3;
}

#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;
  justify-content: center;
  background: rgba(0, 0, 0, 0.3);
}
@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: 1rem;
  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: #d4bfa3;
  color: #3f3c38;
}
#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: #d4bfa3;
  color: #2e2b28;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
@media (max-width: 768px) {
  #hero .swiper {
    height: 250px;
  }
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#services .service-card {
  background: #3f3c38;
  padding: 2rem;
  border: 1px solid #746c62;
  border-radius: 1rem;
  height: 100%;
}
#services .service-card h3 {
  text-align: center;
  margin-bottom: 1.5rem;
}
#services .service-card .icon-box {
  text-align: center;
  margin-bottom: 2rem;
}
#services .service-card .icon-box svg {
  width: 40%;
  fill: #d4bfa3;
  stroke: #d4bfa3;
}
#about p {
  line-height: 2;
  margin-bottom: 1rem;
}
#about p.imp {
  color: #d4bfa3;
  font-weight: 500;
}

#cert {
  position: relative;
}
#cert h2 span {
  color: #d4bfa3;
}
#cert::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url("../images/assets/cert-bg-1.jpg") no-repeat;
  background-size: cover;
  filter: grayscale(0) brightness(0.25);
  z-index: -1;
}
#cert h3 {
  margin-bottom: 2rem;
  background: rgba(26, 80, 26, 0.443);
  padding: 1rem;
}
#cert p {
  color: white;
}
#cert .imgbox .imgItem img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

#process .process-timeline {
  position: relative;
}
#process .process-card {
  background: #3f3c38;
  border: 1px solid #746c62;
  border-radius: 1rem;
  padding: 2rem;
  height: 100%;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}
#process .process-card:hover {
  transform: translateY(-5px);
  border-color: #d4bfa3;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}
#process .process-card:hover .process-number {
  background: #d4bfa3;
  color: #2e2b28;
  transform: scale(1.1);
}
#process .process-card .process-number {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 60px;
  height: 60px;
  background: #8e735b;
  color: #f2f2f2;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 700;
  transition: all 0.3s ease;
  border: 3px solid #2e2b28;
  z-index: 2;
}
@media (max-width: 768px) {
  #process .process-card .process-number {
    width: 50px;
    height: 50px;
    font-size: 1rem;
    top: -8px;
    right: -8px;
  }
}
#process .process-card .process-content h3 {
  color: #d4bfa3;
  margin-bottom: 1rem;
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1.4;
}
@media (max-width: 768px) {
  #process .process-card .process-content h3 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }
}
#process .process-card .process-content p {
  color: #cccccc;
  line-height: 1.7;
  margin: 0;
  font-size: 0.95rem;
}
@media (max-width: 768px) {
  #process .process-card .process-content p {
    font-size: 0.9rem;
    line-height: 1.6;
  }
}
#process .process-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #8e735b, #d4bfa3, #8e735b);
  opacity: 0.7;
  transition: opacity 0.3s ease;
}
#process .process-card:hover::before {
  opacity: 1;
}
@media (max-width: 991px) {
  #process .process-timeline::before {
    content: "";
    position: absolute;
    top: 0;
    left: 10px;
    width: 2px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #746c62 10%, #746c62 90%, transparent);
    z-index: 0;
  }
  #process .process-card {
    margin-left: 30px;
    position: relative;
  }
  #process .process-card::after {
    content: "";
    position: absolute;
    top: 50%;
    left: -60px;
    width: 30px;
    height: 2px;
    background: #746c62;
    transform: translateY(-50%);
    z-index: 1;
  }
  #process .process-card .process-number {
    left: -90px;
    top: 50%;
    transform: translateY(-50%);
    right: auto;
  }
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #d4bfa3;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}
#works .work-card {
  border-radius: 0.5rem;
  overflow: hidden;
  position: relative;
  transition: 0.5s;
  display: inline-block;
}
#works .work-card:hover h3 {
  display: none;
}
#works .work-card:hover img {
  transform: scale(1.2);
}
#works .work-card img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #works .work-card img {
    height: 250px;
  }
}
#works .work-card h3 {
  position: absolute;
  height: 100%;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.522));
  top: 0;
  left: 0;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 1rem;
  transition: 0.5s;
  color: #f2f2f2;
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  padding: 1rem;
  border-radius: 1rem;
  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: #d4bfa3;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  color: #3f3c38;
  font-size: 2rem;
}
#contact .contact-box .icon-box svg {
  fill: #3f3c38;
}
#contact .contact-box a {
  color: #d4bfa3;
  font-weight: 600;
}
#contact .contact-box a.small {
  font-size: 0.9rem;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

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