@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=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Kapakana:wght@300..400&display=swap");
:root {
  font-size: clamp(17px, 2.8vw, 18px);
}

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

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

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: #2b2b2b;
  color: #3e3e3e;
}

h1 {
  font-family: "DM Sans", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

h2 {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  color: #7f6040;
  justify-content: center;
  text-align: center;
  color: #f7f6f4;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 1rem;
  }
}
h2 span:first-child {
  font-size: clamp(1.5rem, 3vw, 1.3rem);
  font-weight: 400;
}
h2 span:last-child {
  font-size: clamp(2rem, 4.5vw, 5rem);
  font-weight: 400;
  font-family: "DM Sans", sans-serif;
  text-transform: uppercase;
}

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

a {
  text-decoration: none;
  color: #7f6040;
}

.navbar.scrolled {
  background: #2b2b2b;
}
.navbar.scrolled .navbar-brand img {
  width: 160px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 100px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler {
  border-color: white;
  border-width: 0.5px;
}
.navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  transition: 0.5s;
  filter: invert(1);
}
.navbar .navbar-brand img {
  width: 200px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 150px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 0.3rem;
  position: relative;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover span:last-child {
  opacity: 1;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link span {
  text-transform: uppercase;
  transition: 1s;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link span:last-child {
  opacity: 0;
  bottom: -1.2rem;
  left: 50%;
  width: 80%;
  text-align: center;
  transition: 1s;
  transform: translateX(-50%);
  border-top: 1px solid white;
  position: absolute;
}
@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: #7f6040;
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0.5;
}
.bg img {
  width: 100%;
  height: 100%;
}

#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.428);
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: relative;
    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);
    padding: 2rem 1.5rem;
    border-radius: 0px;
  }
}
#hero .cta-box .cta-content img {
  width: 200px;
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1.5rem;
  text-align: center;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#hero .cta-box .cta-content .cursive {
  font-family: "Kapakana", cursive;
  font-optical-sizing: auto;
  font-style: normal;
  font-size: clamp(1.75rem, 3.5vw, 3rem);
  font-weight: 600;
  font-weight: 300;
  margin: 0;
  color: #d1c6b6;
}
#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: #7f6040;
  border: 1px solid #7f6040;
  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: #7f6040;
}
#hero .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
@media (max-width: 768px) {
  #hero .swiper {
    height: 300px;
  }
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#news {
  position: relative;
}
#news .new-list {
  border-bottom: 1px solid white;
  padding: 1rem 0.5rem;
  transition: 0.7s;
}
#news .new-list .link {
  display: inline-flex;
  justify-content: space-between;
  color: white;
  align-items: center;
  width: 100%;
  background: none;
  border: none;
}
#news .new-list h5 {
  padding: 0;
  margin: 0;
}
@media (max-width: 768px) {
  #news .new-list h5 {
    line-height: 2.5;
  }
}
#news .new-list span.tag {
  color: white;
  display: inline-block;
  background: #7f6040;
  padding: 0.3rem 1rem;
  margin-right: 1rem;
}
#news .new-list i {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}
#news .new-list:hover {
  background: #d1c6b6;
  color: #2b2b2b !important;
  padding: 1rem 2rem 1rem 0.5rem;
}
#news .new-list:hover h5,
#news .new-list:hover i {
  color: #2b2b2b;
}
#news .newCard {
  color: white;
}
#news .newCard img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: center;
     object-position: center;
}

#about .about-container {
  padding: 2rem 3rem;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  #about .about-container {
    padding: 1rem;
  }
}
#about .about-container p {
  color: white;
}

#services .service-card {
  overflow: hidden;
  height: 100%;
  color: white;
}
#services .service-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #services .service-card img {
    height: 250px;
  }
}
#services .service-card .text {
  padding: 2rem 1rem;
}
#services .service-card .text h3 {
  background: #7f6040;
  display: inline-block;
  padding: 0.5rem 1rem;
  color: white;
}
#services .service-card .text ul {
  list-style: circle;
  padding-left: 1rem;
}
#services .service-card .text ul li {
  margin-bottom: 1rem;
}

#process .process-card {
  padding: 0rem 0rem 0 2rem;
  color: #f7f6f4;
  display: flex;
  gap: 2rem;
  border-bottom: 1px solid rgb(149, 149, 149);
  padding: 3rem 1rem;
}
@media (max-width: 768px) {
  #process .process-card {
    flex-direction: column;
    padding: 1rem 1rem;
    gap: 1rem;
  }
}
#process .process-card i {
  font-size: 5rem;
  color: #d1c6b6;
}
@media (max-width: 768px) {
  #process .process-card i {
    font-size: 2.5rem;
  }
}
#process .process-card .text h3 {
  margin: 0rem 0 2rem;
}
@media (max-width: 768px) {
  #process .process-card .text h3 {
    margin-bottom: 1rem;
  }
}
#process .process-card .text p {
  color: rgb(200, 200, 200);
  margin: 0;
}

#works .work-card {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
#works .work-card:hover h3 {
  opacity: 1;
}
#works .work-card:hover .img-box img {
  transform: scale(1.2);
}
#works .work-card .img-box {
  width: 100%;
  height: 300px;
}
@media (max-width: 768px) {
  #works .work-card .img-box {
    height: 250px;
  }
}
#works .work-card .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: 0.5s;
}
#works .work-card h3 {
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f7f6f4;
  opacity: 0;
  transition: 0.5s;
  pointer-events: none;
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  padding: 2rem 1rem;
  border-bottom: 1px solid rgb(106, 106, 106);
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box h3 {
  color: white;
}
#contact .contact-box .icon-box {
  background: #7f6040;
  background: #d1c6b6;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  color: #7f6040;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #7f6040;
  font-weight: 600;
  color: #d1c6b6;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}
#contact .contact-box p {
  color: #dadada;
}

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