@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@100..900&family=Noto+Serif+TC:wght@200..900&display=swap");
body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #F5F5F5;
  color: #222222;
}

h2 {
  margin-bottom: 3rem;
  color: #333333;
  font-weight: 600;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

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

a {
  text-decoration: none;
  color: #A99B3C;
  transition: 0.3s;
}
a:hover {
  opacity: 0.8;
}

.lead {
  font-weight: 300;
  font-size: 1.25rem;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.7);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.navbar.scrolled .navbar-brand img {
  filter: brightness(0) invert(1);
}
.navbar.scrolled .nav-link {
  color: #333333 !important;
}
.navbar.scrolled .navbar-brand {
  color: #A99B3C;
}
.navbar .navbar-brand {
  color: white;
  transition: 0.5s;
  font-size: 1.5rem;
}
.navbar .navbar-brand img {
  width: 80px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    color: #A99B3C;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
  font-weight: 500;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
    color: black;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #A99B3C;
  border-radius: 50rem;
  transition: 0.3s;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta:hover {
  background: #968a35;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
  color: white !important;
}

#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: end;
  justify-content: center;
  background: rgba(0, 0, 0, 0.4);
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: static;
    background: none;
    color: #333333;
  }
}
#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: none;
    -webkit-backdrop-filter: none;
            backdrop-filter: none;
    color: #222222;
    padding: 0rem 3rem;
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.3);
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content h1 {
    font-size: 1.5rem;
    text-shadow: none;
  }
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
  font-size: 1.2rem;
  line-height: 1.8;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content p {
    font-size: 1rem;
  }
}
#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;
  font-size: 1.2rem;
  border-radius: 1rem;
  transition: 0.5s;
  border: 2px solid transparent;
}
#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: #333333;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:first-child:hover {
  background: #83782f;
}
#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%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about {
  background: white;
}
#about p {
  margin-bottom: 2rem;
  line-height: 2;
  font-size: 1.1rem;
}
#about hr {
  margin-bottom: 2rem;
}
#about h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
}

#trust {
  background: linear-gradient(to top, #F5F5F5, #fff, #F5F5F5);
}

#works img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

#services {
  background: #F5F5F5;
}
#services .service-card {
  background: white;
  padding: 2.5rem 2rem;
  border-radius: 1rem;
  text-align: center;
  height: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease-in-out;
}
#services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}
#services .service-card i {
  font-size: 3rem;
  color: #A99B3C;
  margin-bottom: 1.5rem;
  display: inline-block;
}
#services .service-card h3 {
  font-size: 1.5rem;
  color: #333333;
  margin-bottom: 1rem;
}
#services .service-card p {
  color: #666;
  line-height: 1.7;
}

#awards {
  position: relative;
}
#awards::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../images/awards/muse.png") no-repeat;
  background-size: 100% auto;
  z-index: -1;
  opacity: 0.04;
}
@media (max-width: 768px) {
  #awards::after {
    height: 100vh;
    background-size: cover;
  }
}
#awards::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(255, 255, 255);
  z-index: -2;
}
#awards .awards-list {
  max-width: 800px;
  margin: 0 auto;
}
#awards .awards-list .award-year {
  margin-bottom: 2rem;
}
#awards .awards-list .award-year h3 {
  color: #333333;
  font-weight: 600;
  margin-bottom: 1rem;
  border-bottom: 2px solid #A99B3C;
  padding-bottom: 0.5rem;
}
#awards .awards-list .award-year ul {
  list-style: none;
  padding: 0;
}
#awards .awards-list .award-year ul li {
  margin-bottom: 0.5rem;
  color: #222222;
}
#awards .awards-list .award-year ul li a {
  margin-left: 0.5rem;
  font-size: 1rem;
}
#awards .awards-list .award-year ul li a i {
  font-size: 1.3rem;
}

#process {
  background: white;
}
#process .process-timeline {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}
#process .process-timeline::after {
  content: "";
  position: absolute;
  width: 3px;
  background-color: #A99B3C;
  top: 0;
  bottom: 0;
  left: 50%;
  margin-left: -1.5px;
}
@media (max-width: 768px) {
  #process .process-timeline::after {
    left: 20px;
  }
}
#process .process-timeline .timeline-item {
  padding: 1rem 3rem;
  position: relative;
  width: 50%;
}
#process .process-timeline .timeline-item:nth-child(odd) {
  left: 0;
  padding-left: 50px;
}
#process .process-timeline .timeline-item:nth-child(even) {
  left: 50%;
  padding-right: 50px;
}
#process .process-timeline .timeline-item .timeline-dot {
  content: "";
  position: absolute;
  width: 15px;
  height: 15px;
  background-color: white;
  border: 3px solid #A99B3C;
  top: 28px;
  border-radius: 50%;
  z-index: 1;
}
#process .process-timeline .timeline-item:nth-child(odd) .timeline-dot {
  right: -7.5px;
}
#process .process-timeline .timeline-item:nth-child(even) .timeline-dot {
  left: -7.5px;
}
#process .process-timeline .timeline-item .timeline-content {
  padding: 20px 30px;
  background-color: #F5F5F5;
  position: relative;
  border-radius: 8px;
}
#process .process-timeline .timeline-item .timeline-content h4 {
  color: #333333;
  font-weight: 600;
}
#process .process-timeline .timeline-item .timeline-content p {
  font-size: 0.95rem;
  color: #666;
}
@media (max-width: 768px) {
  #process .process-timeline .timeline-item {
    width: 100%;
    left: 0 !important;
    padding-left: 50px;
    padding-right: 15px;
  }
  #process .process-timeline .timeline-item .timeline-dot {
    left: 12.5px !important;
  }
}

#works {
  background: #D4D4D4;
}
#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #A99B3C;
  color: white;
  border-color: #A99B3C;
}
#works .nav-pills .nav-link {
  color: #333333;
  border: 1px solid #333333;
  margin: 0 0.5rem;
  border-radius: 50rem;
  padding: 0.5rem 1.5rem;
  font-weight: 500;
  transition: 0.3s;
}
#works .nav-pills .nav-link:hover {
  background: #A99B3C;
  color: white;
  border: none;
}
#works .nav {
  gap: 0.5rem;
}
#works .work-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}
#works .work-item a {
  display: block;
}
#works .work-item a img {
  transition: transform 0.4s ease;
}
#works .work-item a .overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
  color: white;
  padding: 3rem 1.5rem 1.5rem 1.5rem;
  transition: opacity 0.4s ease;
  opacity: 1;
}
#works .work-item a .overlay h5 {
  font-size: 1.25rem;
  font-weight: 600;
  transform: translateY(10px);
  transition: transform 0.4s ease;
}
#works .work-item a .overlay p {
  font-size: 0.9rem;
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s ease;
}
#works .work-item a:hover img {
  transform: scale(1.05);
}
#works .work-item a:hover .overlay h5 {
  transform: translateY(0);
}
#works .work-item a:hover .overlay p {
  opacity: 1;
  transform: translateY(0);
}

#contact {
  background: #F5F5F5;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.1) 0px 8px 24px;
  margin-bottom: 2rem;
  transition: 0.3s;
}
#contact .contact-box:hover {
  transform: translateY(-5px);
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box h3 {
  font-size: 1.3rem;
  color: #333333;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
@media (max-width: 768px) {
  #contact .contact-box h3 {
    font-size: 1.1rem;
  }
}
#contact .contact-box .icon-box {
  background: #A99B3C;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  flex-shrink: 0;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
}
#contact .contact-box a {
  color: #A99B3C;
  font-weight: 600;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #contact .contact-box a {
    font-size: 1.1rem;
  }
}
#contact .contact-box a.small {
  font-size: 1rem;
  text-decoration: underline;
}
#contact .contact-box a.small:hover {
  color: #A99B3C;
}
#contact .contact-box p {
  color: #666;
}

footer {
  background: #333333;
  color: #F5F5F5;
  padding: 2rem 0;
  font-size: 0.9rem;
}
footer a {
  text-decoration: none;
  color: #A99B3C;
}
footer a:hover {
  text-decoration: underline;
}

#trust img {
  height: 350px;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */