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

.nav {
  gap: 1rem;
}
.nav .nav-link {
  color: #574c41;
  border-radius: 100px;
}
.nav .nav-link:hover {
  background: #c6ae92;
  color: white;
  border-radius: 100px;
}

.border-bottom {
  border: none;
}

.accordion-button {
  background: #c6ae92;
  color: white;
  font-size: 1.3rem;
}

.accordion-button:not(.collapsed) {
  background: #c6ae92;
  color: white;
}

.accordion-body {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

h2 {
  font-size: 1.3rem;
  font-weight: 400;
  margin-bottom: 2rem;
  color: #b58c57;
  letter-spacing: 0.2rem;
}

img {
  border-radius: 10px;
}

section {
  margin: 13rem 0;
}

@media (max-width: 576px) {
  section {
    margin: 5rem 0;
  }
}
#navbar {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  width: 100%;
  margin: auto;
  background: #f2eee3;
}
#navbar img {
  width: 80px;
}

#hero {
  padding: 20rem 0 3rem;
  margin: -13rem 0 5rem;
  position: relative;
}
#hero .row {
  justify-self: center;
}
#hero .bg {
  width: 100%;
  z-index: -100;
  height: 85%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.2;
}
#hero .bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero img {
  aspect-ratio: 3/2;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .slogan {
  color: #574c41;
}
#hero .slogan h1 {
  font-size: 2rem;
  font-weight: 400;
  margin-bottom: 2rem;
  line-height: 3rem;
}
#hero .slogan a {
  font-size: 1.2rem;
  display: inline-block;
  width: 150px;
  height: 150px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  background: #c6ae92;
  border-radius: 100%;
  color: white;
  position: relative;
  transition: all 3s;
}
#hero .slogan a::before {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  background: #574c41;
  top: 5px;
  left: 8px;
  z-index: -1;
  border-radius: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}
#hero .slogan a:hover::before {
  opacity: 0.4;
}

@media (max-width: 576px) {
  #hero {
    padding: 20rem 0 3rem;
    margin: -13rem 0 5rem;
    position: relative;
  }
  #hero .bg {
    width: 100%;
    z-index: -100;
    height: 85%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.2;
  }
  #hero .bg img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #hero img {
    aspect-ratio: 3/2;
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #hero .slogan {
    margin-top: 2rem;
    color: #574c41;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }
  #hero .slogan h1 {
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 2rem;
    line-height: 2rem;
  }
  #hero .slogan a {
    font-size: 1.2rem;
    display: inline-block;
    width: 120px;
    height: 120px;
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    background: #c6ae92;
    border-radius: 100%;
    color: white;
    position: relative;
    transition: all 3s;
  }
  #hero .slogan a::before {
    content: "";
    position: absolute;
    width: 150px;
    height: 150px;
    background: #574c41;
    top: 5px;
    left: 8px;
    z-index: -1;
    border-radius: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
  }
  #hero .slogan a:hover::before {
    opacity: 0.4;
  }
}
#services-info {
  position: relative;
  background: #c6ae92;
  color: white;
}
#services-info::after {
  content: "";
  position: absolute;
  width: 40%;
  height: 100%;
  background: #b88f5c;
  border-radius: 0 500px 0 0;
  top: 0;
  left: 0;
  z-index: 2;
}
#services-info h2 {
  margin-bottom: 5rem;
  text-align: center;
  color: white;
}
#services-info .container {
  padding: 8rem 0;
  z-index: 100;
}
#services-info .img-box {
  z-index: 100;
  margin-bottom: 2rem;
}
#services-info .img-box img {
  width: 80px;
  height: 80px;
  -o-object-fit: cover;
     object-fit: cover;
}
#services-info h3 {
  z-index: 100;
  font-size: 1.2rem;
  margin-bottom: 1rem;
}
#services-info p {
  z-index: 100;
}

@media (max-width: 576px) {
  #services-info {
    position: relative;
    background: #c6ae92;
    color: white;
  }
  #services-info::after {
    content: "";
    display: none;
    width: 40%;
    height: 100%;
    background: #b88f5c;
    border-radius: 0 500px 0 0;
    top: 0;
    left: 0;
    z-index: 2;
  }
  #services-info h2 {
    margin-bottom: 5rem;
    text-align: center;
    color: white;
  }
  #services-info .container {
    padding: 8rem 1rem;
    z-index: 100;
    text-align: center;
  }
  #services-info .img-box {
    z-index: 100;
    margin-bottom: 2rem;
  }
  #services-info .img-box img {
    width: 80px;
    height: 80px;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #services-info h3 {
    z-index: 100;
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }
  #services-info p {
    z-index: 100;
  }
}
#about {
  font-size: 1.3rem;
}
#about img {
  border-radius: 2rem 10rem 1rem 10rem;
  aspect-ratio: 4/3;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}
#about p {
  line-height: 2.5rem;
}

@media (max-width: 576px) {
  #about {
    font-size: 1.3rem;
  }
  #about img {
    border-radius: 1rem 5rem 1rem 5rem;
    aspect-ratio: 4/3;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: top;
       object-position: top;
    margin-bottom: 1rem;
  }
  #about p {
    line-height: 2.5rem;
  }
}
#services h2 {
  text-align: center;
}

#news .img-box,
#process .img-box {
  height: 600px;
}
#news .img-box img,
#process .img-box img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

@media (max-width: 576px) {
  #news .img-box {
    padding-top: 2rem;
  }
}
#process .img-box {
  height: 600px;
  padding-top: 6rem;
}
#process h2.text-start {
  padding-top: 6rem;
}
#process h3 {
  margin: 3rem 0 2rem;
  font-size: 1.5rem;
}

@media (max-width: 576px) {
  #process .img-box {
    height: 600px;
    padding-top: 2rem;
  }
  #process h2.text-start {
    padding-top: 0rem;
  }
}
#works .row,
#acne .row {
  --bs-gutter-y: 1.5rem;
}
#works .img-box,
#acne .img-box {
  width: 100%;
  height: 500px;
}
#works .img-box img,
#acne .img-box img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
  -o-object-position: center;
     object-position: center;
}

#contact {
  color: #c6ae92;
  background: rgb(55, 55, 55);
  padding: 5rem 0;
  margin-bottom: 0;
}
#contact h2 {
  color: #c6ae92;
}
#contact .img-box {
  width: 200px;
  margin-bottom: 3rem;
}
#contact .img-box img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contact ul {
  font-size: 1.2rem;
  list-style: none;
  padding: 0;
}
#contact ul li {
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 5px;
  margin-bottom: 1.2rem;
}
#contact ul li a {
  text-decoration: none;
  color: #c6ae92;
}

footer {
  padding: 0.8rem 0;
  background: rgb(55, 55, 55);
}

.fancybox-wrapper a img {
  display: inline-block;
  vertical-align: top;
  width: 33%;
}/*# sourceMappingURL=style.css.map */