@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");
body {
  font-family: "Noto Serif TC", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.bg-img {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
  opacity: 0.6;
}
.bg-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}

h2 {
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 768px) {
  h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }
}

section {
  padding: 8rem 0;
}

@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}
a {
  text-decoration: none;
  color: black;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #990000;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  height: 80px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    height: 60px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
  font-size: 1.2rem;
  transition: 0.5s;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #E6C270;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #990000;
}

#hero {
  width: 100%;
  height: 90vh;
}
@media (max-width: 768px) {
  #hero {
    height: 300px;
    margin-top: 80px;
  }
}
#hero .swiper {
  width: 100%;
  height: 100%;
  position: relative;
}
#hero .swiper .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.438);
}
@media (max-width: 768px) {
  #hero .swiper .cta-box {
    padding: 1rem;
  }
}
#hero .swiper .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .swiper .cta-box .cta-content {
    padding: 0rem;
  }
}
#hero .swiper .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 3rem;
}
@media (max-width: 768px) {
  #hero .swiper .cta-box .cta-content h1 {
    font-size: 1.5rem;
  }
}
#hero .swiper .cta-box .cta-content p {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
@media (max-width: 768px) {
  #hero .swiper .cta-box .cta-content p {
    font-size: 1rem;
  }
}
#hero .swiper .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .swiper .cta-box .cta-content .btn-box {
    gap: 0.5rem;
  }
}
#hero .swiper .cta-box .cta-content .btn-box a {
  padding: 0.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.2rem;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #hero .swiper .cta-box .cta-content .btn-box a {
    font-size: 1rem;
  }
}
#hero .swiper .cta-box .cta-content .btn-box a i {
  padding-left: 0.5rem;
  font-size: 1.3rem;
}
#hero .swiper .cta-box .cta-content .btn-box a:first-child {
  background: #990000;
  color: white;
  border: 1px solid #990000;
}
#hero .swiper .cta-box .cta-content .btn-box a:first-child:hover {
  background: #06C755;
}
#hero .swiper .cta-box .cta-content .btn-box a:last-child {
  color: white;
  border: 1px solid white;
  background: rgba(242, 242, 242, 0.1764705882);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
#hero .swiper .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #990000;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about .about-content {
  background: rgba(255, 255, 255, 0.241);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  padding: 1rem;
}
#about .about-content p {
  font-size: 1.2rem;
  line-height: 2;
  text-align: justify;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #about .about-content p {
    font-size: 1rem;
  }
}

#features h4 {
  display: inline-block;
  padding: 1rem 0;
  border-top: 1px solid #990000;
  border-bottom: 1px solid #990000;
  margin-top: -1rem;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #990000;
}
@media (max-width: 768px) {
  #features h4 {
    font-size: 1rem;
    margin-top: 0;
  }
}
#features .feature-img {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #features .feature-img {
    height: 300px;
  }
}
#features .feature-content span {
  font-size: 1rem;
  color: #990000;
  font-weight: 600;
  margin-bottom: 1rem;
  width: 2rem;
  height: 2rem;
  border-radius: 100%;
  border: 1px solid #990000;
  display: flex;
  justify-content: center;
  align-items: center;
}
#features .feature-content p {
  font-size: 1.2rem;
  line-height: 2;
  text-align: justify;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #features .feature-content p {
    font-size: 1rem;
  }
}
#features .feature-content:first-child {
  border-right: 1px solid black;
  padding-right: 2rem;
}
@media (max-width: 768px) {
  #features .feature-content:first-child {
    border: none;
    padding: 0rem 2rem;
  }
}
#features .feature-content:last-child {
  padding-left: 2rem;
}
@media (max-width: 768px) {
  #features .feature-content:last-child {
    padding: 0rem 2rem;
  }
}

#awards .award-title {
  color: white;
  background: #990000;
  font-size: 1.5rem;
  font-weight: bold;
  display: inline-block;
  padding: 0.5rem 10rem 0.5rem 10rem;
  margin-bottom: 2rem;
  text-align: center;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  /* 定義緞帶形狀 */
  -webkit-clip-path: polygon(10% 0%, 90% 0%, 80% 50%, 90% 100%, 10% 100%, 20% 50%);
          clip-path: polygon(10% 0%, 90% 0%, 80% 50%, 90% 100%, 10% 100%, 20% 50%);
}
@media (max-width: 768px) {
  #awards .award-title {
    font-size: 1.2rem;
    padding: 0.5rem 6rem 0.5rem 6rem;
  }
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #990000;
  color: #E6C270;
}
#works .nav-pills .nav-link {
  color: #990000;
  border: 1px solid #990000;
  margin: 0.5rem;
  border-radius: 0px;
}
#works .work-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
#works .card {
  border-radius: 0px;
}
#works .card .card-img-top {
  border-radius: 0px !important;
  border-top-left-radius: 0px !important;
  border-top-right-radius: 0px !important;
}
#works .card .card-body {
  border-radius: 0px;
  background: #990000;
  color: #E6C270;
}
#works .card .card-body h5 {
  color: #E6C270;
}

@media (max-width: 768px) {
  #works .work-img {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 0.5rem;
  }
}
#contact {
  background: #f2f2f2;
}
#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;
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box h3 {
  font-size: 1.3rem;
}
#contact .contact-box .icon-box {
  background: #990000;
  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: #990000;
  font-weight: 600;
  font-size: 1.4rem;
}
#contact .contact-box a.small {
  font-size: 1rem;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

@media (max-width: 768px) {
  #contact {
    background: #f2f2f2;
  }
  #contact .contact-box {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1rem;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    margin-bottom: 1rem;
  }
  #contact .contact-box:last-child {
    margin-bottom: 1rem;
  }
  #contact .contact-box h3 {
    font-size: 1.1rem;
  }
  #contact .contact-box .icon-box {
    background: #990000;
    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: #990000;
    font-weight: 600;
    font-size: 1.2rem;
  }
  #contact .contact-box a.small {
    font-size: 1rem;
  }
  #contact .contact-box span {
    display: block;
    color: gray;
    margin-top: 0.5rem;
  }
}
footer {
  background: #f2f2f2;
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
}

#process {
  background: linear-gradient(135deg, rgba(153, 0, 0, 0.05) 0%, rgba(230, 194, 112, 0.1) 100%);
}
#process .process-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 3rem;
}
@media (max-width: 768px) {
  #process .process-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}
#process .process-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
  min-width: 150px;
}
#process .process-step .step-number {
  position: absolute;
  top: -10px;
  left: -10px;
  width: 30px;
  height: 30px;
  background: #E6C270;
  color: #4D0F0F;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.9rem;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(153, 0, 0, 0.3);
}
@media (max-width: 768px) {
  #process .process-step .step-number {
    top: -30px;
    left: -30px;
  }
}
#process .process-step .step-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, #990000 0%, #B3202D 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  box-shadow: 0 4px 15px rgba(153, 0, 0, 0.3);
  transition: all 0.3s ease;
}
#process .process-step .step-icon i {
  color: white;
  font-size: 2rem;
}
#process .process-step .step-icon:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(153, 0, 0, 0.4);
}
#process .process-step .step-content h4 {
  color: #990000;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-size: 1.2rem;
}
@media (max-width: 768px) {
  #process .process-step .step-content h4 {
    font-size: 1.5rem;
  }
}
#process .process-step .step-content p {
  color: #1A1A1A;
  font-size: 0.9rem;
  line-height: 1.4;
  margin: 0;
  max-width: 120px;
}
#process .process-step:hover .step-icon {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(153, 0, 0, 0.4);
}
#process .process-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
#process .process-arrow i {
  color: #990000;
  font-size: 2rem;
  opacity: 0.7;
  animation: pulse 2s infinite;
}
@media (max-width: 768px) {
  #process .process-arrow {
    transform: rotate(90deg);
  }
  #process .process-arrow i {
    font-size: 1.5rem;
  }
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.7;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.1);
  }
}
@media (max-width: 768px) {
  #process .process-container {
    gap: 1rem;
  }
  #process .process-step {
    min-width: 120px;
  }
  #process .process-step .step-icon {
    width: 120px;
    height: 120px;
  }
  #process .process-step .step-icon i {
    font-size: 4rem;
  }
  #process .process-step .step-content h4 {
    font-size: 1.4rem;
  }
  #process .process-step .step-content p {
    font-size: 1rem;
    max-width: 100px;
  }
}/*# sourceMappingURL=style.css.map */