@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;
  color: #333;
}

h2 {
  color: #f086a2;
  text-align: center;
  margin-bottom: 3rem;
}

@media (max-width: 768px) {
  h2 {
    color: #f086a2;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.5rem;
  }
}
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: #EEE6D7;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand img {
  height: 100px;
  transition: 0.5s;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  font-size: 1rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: red;
}

.navbar.scrolled .navbar-brand img {
  height: 70px;
}

@media (max-width: 768px) {
  .navbar {
    position: fixed;
    top: 0;
    width: 100%;
    left: 0;
    background: #EEE6D7;
    z-index: 1049;
    transition: 0.5s;
  }
  .navbar .navbar-brand img {
    height: 60px;
    transition: 0.5s;
  }
  .navbar .navbar-collapse {
    flex-grow: 0;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 0.5rem 1.5rem;
    font-size: 1rem;
  }
  .navbar .navbar-collapse .navbar-nav .nav-item.cta {
    background: red;
  }
  .navbar.scrolled .navbar-brand img {
    height: 50px;
  }
}
#hero {
  width: 100%;
  height: 100vh;
}
#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);
}
#hero .swiper .cta-box .cta-content {
  text-align: center;
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
#hero .swiper .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 3rem;
}
#hero .swiper .cta-box .cta-content p {
  margin-bottom: 2rem;
  font-size: 1.3rem;
}
#hero .swiper .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
}
#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;
  border-radius: 10rem;
  transition: 0.5s;
}
#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: #f086a2;
  color: white;
}
#hero .swiper .cta-box .cta-content .btn-box a:last-child {
  color: white;
}
#hero .swiper .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #f086a2;
}
#hero .swiper .scroll {
  position: absolute;
  bottom: 5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
}
#hero .swiper .scroll p {
  color: white;
}
#hero .swiper .scroll span {
  display: block;
  width: 25px;
  height: 25px;
  border-bottom: 2px solid white;
  border-right: 2px solid white;
  transform: rotate(45deg);
  margin: -10px;
  animation: animate 2s infinite;
}
#hero .swiper .scroll span:nth-child(2) {
  animation-delay: -0.2s;
}
#hero .swiper .scroll span:nth-child(3) {
  animation-delay: -0.4s;
}
@keyframes animate {
  0% {
    opacity: 0;
    transform: rotate(45deg) translate(-20px, -20px);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: rotate(45deg) translate(20px, 20px);
  }
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #hero {
    width: 100%;
    height: 100vh;
  }
  #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;
  }
  #hero .swiper .cta-box .cta-content {
    background: linear-gradient(140deg, rgba(240, 134, 162, 0.9) 50%, rgba(255, 255, 255, 0.6) 100%);
    color: white;
    padding: 2rem 3rem;
    border-radius: 1rem;
  }
  #hero .swiper .cta-box .cta-content h1 {
    font-size: 1.4rem;
  }
  #hero .swiper .cta-box .cta-content p {
    margin-bottom: 2rem;
  }
  #hero .swiper .cta-box .cta-content .btn-box {
    display: flex;
    gap: 1rem;
    flex-direction: column;
  }
  #hero .swiper .cta-box .cta-content .btn-box a {
    padding: 0.5rem 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  #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: #ffffff;
    color: #f086a2;
    border-radius: 10rem;
  }
  #hero .swiper .cta-box .cta-content .btn-box a:last-child {
    color: white;
  }
  #hero .swiper .swiper-wrapper .swiper-slide img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#about img {
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
}
#about h3 {
  color: #f086a2;
  font-size: 1.5rem;
  margin-bottom: 3rem;
  font-weight: 400;
  background: #EEE6D7;
  display: inline;
  line-height: 2;
}
#about p {
  margin-top: 2rem;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  line-height: 1.5;
}

@media (max-width: 768px) {
  #about img {
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
    margin-bottom: 2rem;
  }
  #about h3 {
    color: #f086a2;
    font-size: 1.3rem;
    margin-bottom: 3rem;
    font-weight: 400;
    background: #EEE6D7;
    display: inline;
    line-height: 2;
  }
  #about p {
    margin-top: 2rem;
    font-size: 1rem;
    margin-bottom: 2rem;
    line-height: 1.5;
  }
}
#price {
  position: relative;
  z-index: 0;
}
#price::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, #f086a2 80%);
  background-size: cover;
  opacity: 0.3;
  z-index: -1;
}
#price p {
  text-align: center;
  margin-bottom: 2rem;
  color: gray;
  margin-top: -1.5rem;
  font-size: 1.1rem;
}
#price img {
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}

#services {
  background: rgba(240, 134, 162, 0.3);
}
#services .time {
  background: #f086a2;
  display: inline-block;
  margin-bottom: 1rem;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10rem;
}
#services h5 {
  color: rgb(49, 49, 49);
}
#services img {
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 768px) {
  #services {
    background: rgba(240, 134, 162, 0.3);
  }
  #services .time {
    background: #f086a2;
    display: inline-block;
    margin-bottom: 1rem;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 10rem;
  }
  #services h5 {
    color: rgb(49, 49, 49);
  }
  #services img {
    height: 200px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #f086a2;
}
#works .nav-pills .nav-link {
  color: #FF6B00;
}
#works .work-img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 0.5rem;
}

@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;
  border-radius: 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: #f086a2;
  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: #f086a2;
  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;
}
#contact h4 {
  background: #f086a2;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 10rem;
  margin-bottom: 1rem;
  text-align: center;
}

@media (max-width: 768px) {
  #contact {
    background: #f2f2f2;
  }
  #contact .contact-box {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 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: #f086a2;
    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: #f086a2;
    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;
}/*# sourceMappingURL=style.css.map */