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

h1 {
  font-size: clamp(1.3rem, 3.5vw, 1.5rem);
  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;
}

h2 {
  margin-bottom: 3rem;
  text-align: center;
  font-family: "Noto Serif TC", serif;
  color: #4c3b32;
  border-left: 0.3rem solid #9d745f;
  padding-left: 1rem;
  display: inline-block;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

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

a {
  text-decoration: none;
  color: #9d745f;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: white;
  z-index: 1049;
  transition: 0.5s;
  flex-direction: column;
  padding: 0;
  box-shadow: rgba(17, 17, 26, 0.1) 0px 0px 16px;
}
.navbar .cta-header {
  background: #f5e9da;
  justify-content: end;
  flex-grow: 1;
  padding: 0.5rem 1rem;
}
.navbar .cta-header a {
  display: flex;
  align-items: center;
  gap: 0.3rem;
  font-weight: 400;
  color: rgb(80, 80, 80);
}
.navbar .navbar-brand {
  transition: 0.5s;
  font-family: "Yuji Boku", serif;
  font-weight: 400;
  font-style: normal;
  font-weight: 700;
  color: rgb(22, 22, 90);
}
.navbar .navbar-brand img {
  width: 80px;
  transition: 0.5s;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item {
  border-right: 1px solid #4c3b32;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item {
    border: none;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0rem 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: #9d745f;
}
.navbar .navbar-collapse .navbar-nav .nav-item:last-child {
  border: none;
}

#hero {
  width: 100%;
  height: 70vh;
  position: relative;
}
#hero img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .cta-box {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: end;
  padding-bottom: 3rem;
}
#hero .cta-box h1 {
  line-height: 1.5;
  text-shadow: 1px 0 #fff, -1px 0 #fff, 0 1px #fff, 0 -1px #fff, 1px 1px #fff, -1px 1px #fff, 1px -1px #fff, -1px -1px #fff;
  font-family: "Noto Serif TC", serif;
}
#hero .cta-box a {
  display: inline-block;
  padding: 0.5rem 2rem;
  background: #9d745f;
  color: white;
  border: 1px solid #f5e9da;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
@media (max-width: 768px) {
  #hero .cta-box a {
    padding: 0.5rem 1rem;
  }
}
#hero .cta-box a i {
  font-size: 32px;
}

#about {
  background: url(../images/assets/about.jpg);
}
@media (max-width: 768px) {
  #about img {
    height: 400px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#about .text-box {
  padding: 0.5rem;
  background: rgba(255, 255, 255, 0.518);
}
#about .text-box .text {
  padding: 2rem;
  border: 1px solid #4c3b32;
}

#services {
  position: relative;
}
#services::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../images/assets/services.jpg) no-repeat center;
  background-size: cover;
  z-index: -1;
  opacity: 0.3;
}
@media (max-width: 768px) {
  #services::after {
    background-position: bottom right;
  }
}
#services .service-card {
  border: 1px solid #9d745f;
  padding: 1rem;
  height: 100%;
}
#services .service-card h3 {
  background: rgb(17, 17, 88);
  text-align: center;
  padding: 0.5rem;
  color: white;
}
#services .service-card .icon-box {
  text-align: center;
  font-size: 5rem;
  color: rgb(146, 146, 146);
}

#process {
  background: #f5e9da;
}
#process .process-card {
  position: relative;
  height: 100%;
  background: white;
}
#process .process-card .step {
  background: #4c3b32;
  background: #9d745f;
  color: white;
  position: absolute;
  top: -2rem;
  left: -2rem;
  width: 20%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-transform: capitalize;
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
}
@media (max-width: 768px) {
  #process .process-card .step {
    top: -2.5rem;
    left: -0.5rem;
  }
}
#process .process-card .step span {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}
#process .process-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #process .process-card img {
    height: 250px;
  }
}
#process .process-card .text {
  background: white;
  padding: 2rem;
}
#process .process-card .text h3 {
  color: #4c3b32;
}
#process .process-card .text a {
  color: black;
  border-bottom: 1.5px solid #9d745f;
  display: inline-block;
  padding-bottom: 0.3rem;
}

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

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  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: #9d745f;
  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: #9d745f;
  font-weight: 600;
}
#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 */