@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");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 500;
}

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;
}

:root {
  --swiper-theme-color: #e7d4d0;
}

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #faf8f7;
  color: #3a3a3a;
}

h2 {
  margin-bottom: 3rem;
  color: #1f1f1f;
  display: flex;
  flex-direction: column;
  color: #c48e88;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}
h2 span:last-child {
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 500;
}

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

a {
  text-decoration: none;
  color: #d8a7a0;
}

.navbar.scrolled .navbar-brand {
  transition: 0.5s;
}
.navbar.scrolled .navbar-brand img {
  width: 80px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 60px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: white;
  background: #c48e88;
  background: #e7d4d0;
  background: linear-gradient(to right, white, #d8a7a0);
  z-index: 1049;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar {
    background: linear-gradient(to right, white 20%, #d8a7a0);
  }
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 100px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 80px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 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: #d8a7a0;
}

#hero {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 106px;
  }
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 1rem;
  display: flex;
  align-items: end;
  justify-content: start;
}
@media (max-width: 768px) {
  #hero .cta-box {
    padding: 2rem 1rem;
    position: static;
    background: none;
  }
}
#hero .cta-box .cta-content {
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content {
    background: #e7d4d0;
    color: rgb(101, 101, 101);
  }
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 2rem;
  text-align: center;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  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.8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
#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: #d8a7a0;
  color: white;
  color: #3a3a3a;
}
#hero .swiper {
  width: 100%;
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#about .img-box {
  position: relative;
}
#about .img-box .bg {
  width: 100%;
}
@media (max-width: 768px) {
  #about .img-box .bg {
    width: 80%;
  }
}
#about .img-box .people {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  right: -5rem;
  width: 80%;
  border-radius: 10%;
}
@media (max-width: 768px) {
  #about .img-box .people {
    right: 1rem;
    width: 60%;
  }
}
#about .content {
  padding-left: 9rem;
}
@media (max-width: 768px) {
  #about .content {
    padding-left: 0;
    margin-top: 2rem;
  }
}
#about .content p {
  margin-bottom: 2rem;
  line-height: 2;
}

#services {
  background: linear-gradient(to bottom, #faf8f7, #c48e88);
}
#services .service-card {
  border-radius: 2rem;
  overflow: hidden;
  background: #faf8f7;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
}
#services .service-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #services .service-card img {
    height: 300px;
  }
}
#services .service-card .text {
  padding: 2rem;
}
@media (max-width: 768px) {
  #services .service-card .text {
    padding: 1.5rem;
  }
}
#services .service-card .text h3 {
  color: #c48e88;
}
#services .service-card .text p {
  margin-bottom: 0;
}

#process {
  background: linear-gradient(to top, #faf8f7, #c48e88);
}
#process h2 {
  color: white;
}
#process .process-card {
  display: flex;
  gap: 1rem;
  flex-direction: column;
  background: #faf8f7;
  padding: 1.5rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  border: 1px solid rgba(0, 0, 0, 0.03);
  position: relative;
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 100%;
}
#process .process-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 6px;
  background: linear-gradient(180deg, #d8a7a0, #bfa06a);
}
#process .process-card:hover {
  transform: translateY(-2px);
  box-shadow: rgba(149, 157, 165, 0.25) 0px 12px 28px;
}
#process .process-card .num {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  background: #d8a7a0;
  color: white;
  font-weight: 400;
  flex-shrink: 0;
  font-size: 1.5rem;
}
#process .process-card .icon {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
  color: #c48e88;
  flex-shrink: 0;
  margin: 2rem 0;
}
#process .process-card .icon i {
  font-size: 5rem;
  color: #bfa06a;
}
#process .process-card h3 {
  margin-bottom: 0.5rem;
  color: #c48e88;
}
#process .process-card p {
  margin-bottom: 0;
  line-height: 2;
}
#process .row {
  row-gap: 1.25rem;
}

.cta-section {
  padding: 5rem;
  position: relative;
  color: white;
}
@media (max-width: 768px) {
  .cta-section {
    padding: 5rem 3rem;
  }
}
.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: url("../images/assets/美甲.avif");
  background-size: cover;
  background-position: center;
  filter: brightness(0.3);
  opacity: 0.9;
}
.cta-section h4 {
  font-size: clamp(2rem, 3vw, 2rem);
  font-weight: 500;
  font-weight: 500;
  margin-bottom: 2rem;
}
.cta-section p {
  font-size: clamp(1.125rem, 1.7vw, 1.2rem);
  font-weight: 400;
  line-height: 2;
  color: #e7d4d0;
}
.cta-section a {
  display: inline-block;
  padding: 0.5rem 2rem;
  letter-spacing: 2px;
  background: #d8a7a0;
  color: #3a3a3a;
  margin-top: 2rem;
}

#works {
  position: relative;
}
#works .bg {
  position: absolute;
  width: 50%;
  height: 90%;
  bottom: 0%;
  right: 0%;
  background: #e7d4d0;
  z-index: -1;
}
@media (max-width: 768px) {
  #works .bg {
    height: 77%;
    width: 80%;
  }
}
#works .swiper img,
#works .swiper video {
  width: 100%;
  height: 550px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #works .swiper img,
  #works .swiper video {
    height: 400px;
  }
}
#works .swiper-button-next,
#works .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid rgb(255, 255, 255);
  border-color: #e7d4d0;
}
@media (max-width: 768px) {
  #works .swiper-button-next,
  #works .swiper-button-prev {
    width: 45px;
    height: 45px;
  }
}
#works .swiper-button-next:after,
#works .swiper-button-prev:after {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #works .swiper-button-next:after,
  #works .swiper-button-prev:after {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#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;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #d8a7a0;
  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: #d8a7a0;
  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 */