@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.5rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.7rem);
  font-weight: 600;
}

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

body {
  font-family: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background: #f3f8ff;
  position: relative;
}
body .bodyBg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: -1;
  mix-blend-mode: luminosity;
}
body .bodyBg::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url(../images/assets/bg.avif) no-repeat center/cover;
  filter: invert(1);
  opacity: 0.04;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

section {
  padding: 8rem 0rem;
}
@media (max-width: 768px) {
  section {
    padding: 4rem 0;
  }
}
section#about, section#music-works {
  position: relative;
  isolation: isolate;
}
section#about::before, section#music-works::before {
  content: "";
  width: 100%;
  height: 100%;
  background: black;
  background: url(../images/assets/bg-1.avif) no-repeat center/cover;
  mix-blend-mode: overlay;
  opacity: 0.2;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
section#about .section-title img, section#music-works .section-title img {
  filter: grayscale(1) brightness(3);
}
section#music-works::before {
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 30%, rgba(0, 0, 0, 0) 115%);
          mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0), black 30%, rgba(0, 0, 0, 0) 115%);
}

.section-title {
  width: 100%;
  height: 100%;
  text-align: center;
  position: relative;
}
.section-title h2 {
  margin-top: 1rem;
  margin-bottom: 4rem;
  color: rgb(137, 97, 193);
  position: relative;
  z-index: 2;
}
@media (max-width: 768px) {
  .section-title h2 {
    margin-bottom: 2rem;
  }
}
.section-title img.logo {
  width: 104px;
  position: absolute;
  bottom: -55%;
  left: 50%;
  transform: translate(-50%, 0%);
  z-index: 0;
}

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

.cta-link {
  position: fixed;
  bottom: 2.5rem;
  right: 1rem;
  display: flex;
  padding: 1.2rem;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  background: #e8d3ff;
  background: linear-gradient(45deg, #e8d3ff, #c6cfff);
  text-align: center;
  border-radius: 100%;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  border: 2px solid white;
  color: white;
  color: rgb(77, 77, 77);
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    padding: 0.9rem;
  }
}
.cta-link p {
  padding: 0;
  margin: 0;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #c6cfff;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
  color: rgb(137, 97, 193);
  background: white;
  padding: 0.3rem 1rem;
  border-radius: 0.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-brand {
    font-size: 1rem;
  }
}
.navbar .navbar-brand i {
  transform: rotate(-10deg);
  display: inline-block;
}
.navbar .navbar-brand img {
  width: 80px;
  transition: 0.5s;
}
.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: #e8d3ff;
}

.flower-decorate {
  position: absolute;
}

#hero {
  margin-top: 64.8px;
  width: 100%;
  background: #deecff;
  background: radial-gradient(circle at center, rgba(222, 236, 255, 0), #deecff);
  position: relative;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 51.19px;
  }
}
#hero .flower-1 {
  bottom: -11rem;
  left: 0;
  z-index: 1;
}
@media (max-width: 768px) {
  #hero .flower-1 img {
    width: 120px;
  }
}
#hero .text {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (max-width: 768px) {
  #hero .text {
    padding: 2rem 0;
  }
}
#hero .text h1 {
  line-height: 1.5;
  margin-bottom: 1rem;
}
#hero .text a {
  display: inline-block;
  padding: 0.8rem 3rem;
  background: #c6cfff;
  border-radius: 2rem;
  color: rgb(72, 72, 72);
  text-decoration: none;
  transition: 0.3s;
}
#hero .text a:hover {
  background: #e8d3ff;
  transform: translateY(-2px);
}
#hero .text .promo-info {
  display: block;
  margin-top: 1.5rem;
  padding: 1rem 1.5rem;
  background: rgba(243, 248, 255, 0.6);
  border: 1px solid rgba(198, 207, 255, 0.5);
  border-radius: 1rem;
  text-align: left;
}
#hero .text .promo-info p {
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  color: #5a6a85;
  line-height: 1.4;
  display: flex;
  align-items: center;
}
#hero .text .promo-info p:last-child {
  margin-bottom: 0;
}
#hero .text .promo-info p i {
  margin-right: 8px;
  color: #c6cfff;
  font-size: 1.1rem;
}
#hero .text .promo-info p strong {
  color: rgb(96, 121.1052631579, 255);
  font-weight: 600;
  margin: 0 2px;
}
#hero .swiper {
  width: 100%;
  height: 550px;
}
@media (max-width: 768px) {
  #hero .swiper {
    height: 300px;
  }
}
#hero .swiper .swiper-wrapper {
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide {
  height: 100%;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#about {
  background: #c6cfff;
  background: linear-gradient(to bottom, #c6cfff, #f3f8ff);
  padding-bottom: 12rem;
}
#about p {
  line-height: 2;
  margin-bottom: 1.5rem;
}
#about .img-box {
  width: 100%;
  padding: 0.5rem;
  background: white;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  position: relative;
}
#about .img-box img {
  width: 100%;
}
#about .img-box.img-box-2 {
  transform: translate(-1rem, 8rem) rotate(5deg);
}
#about .img-box .flower-2 {
  bottom: -14rem;
  left: 4rem;
  width: 200px;
}
@media (max-width: 768px) {
  #about .img-box .flower-2 {
    bottom: -11rem;
    left: 2rem;
  }
  #about .img-box .flower-2 img {
    width: 130px;
  }
}

#services {
  position: relative;
}
@media (max-width: 768px) {
  #services {
    padding-bottom: 10rem;
  }
}
#services .flower-3 {
  top: 0;
  left: 0;
  z-index: 5;
}
@media (max-width: 768px) {
  #services .flower-3 {
    top: auto;
    bottom: 0rem;
  }
}
#services .flower-3 img {
  width: 300px;
}
@media (max-width: 768px) {
  #services .flower-3 img {
    width: 150px;
  }
}
#services .service-card {
  background: white;
  height: 100%;
}
#services .service-card img {
  width: 100%;
  height: 300px;
  -o-object-fit: cover;
     object-fit: cover;
}
#services .service-card .text {
  padding: 1.5rem;
}
#services .service-card .text h3 {
  margin-bottom: 1rem;
  display: inline-block;
  border-bottom: 4px solid #c6cfff;
  padding-bottom: 0.5rem;
}
#services .service-card .text ul {
  list-style: none;
  padding: 0;
}
#services .service-card .text ul li {
  margin-bottom: 1rem;
  color: rgb(120, 120, 120);
}
#services .service-card .text ul li i {
  padding-right: 0.3rem;
}
#services::after {
  content: "";
  position: absolute;
  bottom: 4rem;
  left: 0;
  width: 100%;
  height: 430px;
  background: #c6cfff;
  background: #deecff;
}
@media (max-width: 768px) {
  #services::after {
    height: 300px;
  }
}

#flower-works {
  width: 100%;
  overflow: hidden;
  padding-bottom: 10rem;
}
@media (max-width: 768px) {
  #flower-works {
    padding-top: 0;
  }
}
#flower-works .swiper {
  width: 100%;
  padding-bottom: 50px;
}
#flower-works .swiper-slide {
  background-position: center;
  background-size: cover;
  width: 400px;
  height: 400px;
}
#flower-works .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.wave svg {
  width: 100% !important;
}
.wave svg path {
  fill: #e8d3ff;
  fill: #c6cfff;
}

.wave-top {
  transform: scaleY(-1);
  margin-bottom: -1rem;
}
@media (max-width: 768px) {
  .wave-top {
    margin-bottom: -0.1rem;
  }
}

.wave-bottom {
  margin-top: -1rem;
}
@media (max-width: 768px) {
  .wave-bottom {
    margin-top: -0.1rem;
  }
}

#music-works {
  background: #e8d3ff;
  background: #c6cfff;
  position: relative;
}
#music-works .flower-4 {
  top: -12rem;
  right: 0;
  z-index: 5;
}
@media (max-width: 768px) {
  #music-works .flower-4 {
    top: -8rem;
  }
}
#music-works .flower-4 img {
  width: 300px;
}
@media (max-width: 768px) {
  #music-works .flower-4 img {
    width: 150px;
  }
}
#music-works .flower-5 {
  bottom: 20rem;
  left: 2rem;
  z-index: 5;
}
@media (max-width: 768px) {
  #music-works .flower-5 {
    display: none;
  }
}
#music-works .flower-5 img {
  width: 180px;
}
#music-works .flower-6 {
  bottom: -12rem;
  right: 2rem;
  z-index: 5;
}
@media (max-width: 768px) {
  #music-works .flower-6 {
    right: 1rem;
    bottom: -11rem;
  }
}
#music-works .flower-6 img {
  width: 250px;
}
@media (max-width: 768px) {
  #music-works .flower-6 img {
    width: 150px;
  }
}
#music-works .music-card {
  background: white;
  padding: 0.5rem;
  position: relative;
  margin-top: 2rem;
}
@media (max-width: 768px) {
  #music-works .music-card {
    margin-top: 1rem;
  }
}
#music-works .music-card::after {
  position: absolute;
  content: "";
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  background: url("../images/assets/tape.avif") no-repeat;
  width: 150px;
  height: 100px;
  background-size: contain;
}
@media (max-width: 768px) {
  #music-works .music-card::after {
    width: 100px;
    height: 50px;
  }
}
#music-works .music-card img {
  width: 100%;
}

#works {
  position: relative;
}
@media (max-width: 768px) {
  #works {
    padding-top: 13rem;
  }
}
#works .bg {
  position: absolute;
  width: 60%;
  height: 70%;
  bottom: 0;
  right: 0;
  background: #e8d3ff;
  background: #c6cfff;
  background: #deecff;
  z-index: -1;
}
@media (max-width: 768px) {
  #works .bg {
    height: 60%;
    width: 80%;
  }
}
#works .swiper img,
#works .swiper video {
  width: 100%;
  height: 350px;
}
@media (max-width: 768px) {
  #works .swiper img,
  #works .swiper video {
    height: 400px;
  }
}
#works .swiper img,
#works .swiper video {
  -o-object-fit: cover;
     object-fit: cover;
}
#works .swiper-button-next,
#works .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid rgb(255, 255, 255);
}
@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: #e8d3ff;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  color: rgb(137, 97, 193);
  font-size: 2rem;
}
#contact .contact-box .icon-box svg {
  fill: rgb(137, 97, 193);
}
#contact .contact-box a {
  color: #e8d3ff;
  color: rgb(137, 97, 193);
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: rgb(137, 97, 193);
}/*# sourceMappingURL=all.css.map */