@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700&family=Noto+Serif+TC:wght@400;500;600&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;
  color: #4a3b33;
  background-color: #f5efe8;
  line-height: 1.6;
  overflow-x: hidden;
}

html {
  overflow-x: hidden;
}

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

.bg-secondary-light {
  background-color: #ede5de;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Noto Serif TC", serif;
  color: #8c6e58;
  font-weight: 500;
}

a {
  color: #c6a98b;
  transition: all 0.3s ease;
  text-decoration: none;
}
a:hover {
  color: #8c6e58;
}

.section-title {
  position: relative;
  display: inline-block;
  padding-bottom: 0.5rem;
  font-size: 2.2rem;
  letter-spacing: 2px;
}
@media (max-width: 768px) {
  .section-title {
    font-size: 1.8rem;
  }
}
.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 3px;
  background: linear-gradient(135deg, #c6a98b 0%, #8c6e58 100%);
  border-radius: 50px;
}

.btn-primary-custom {
  background: linear-gradient(135deg, #c6a98b 0%, #8c6e58 100%);
  color: #fff;
  border: none;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: 0 4px 15px rgba(140, 110, 88, 0.2);
  transition: all 0.3s ease;
}
.btn-primary-custom:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(140, 110, 88, 0.3);
  color: #fff;
}

.navbar {
  background: rgba(245, 239, 232, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  padding: 1rem 0;
  transition: all 0.3s ease;
}
.navbar .navbar-brand .logo-img {
  height: 40px;
  border-radius: 50%;
  -o-object-fit: cover;
     object-fit: cover;
}
.navbar .navbar-brand .brand-text {
  font-family: "Noto Serif TC", serif;
  color: #8c6e58;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 1px;
}
.navbar .nav-link {
  color: #4a3b33;
  font-weight: 500;
  margin: 0 0.5rem;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background-color: #c8a46b;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar .nav-link:hover, .navbar .nav-link.active {
  color: #8c6e58;
}
.navbar .nav-link:hover::after, .navbar .nav-link.active::after {
  width: 100%;
}
.navbar .navbar-toggler {
  border: none;
}
.navbar .navbar-toggler:focus {
  box-shadow: none;
}

.hero-section {
  height: 100vh;
  background-image: url("../images/hero/img-1.avif");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.hero-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(245, 239, 232, 0.4), rgba(245, 239, 232, 0.8));
  z-index: 1;
}
.hero-section .hero-subtitle {
  font-family: "Noto Serif TC", serif;
  color: #c8a46b;
  font-size: 1.2rem;
  letter-spacing: 4px;
  text-transform: uppercase;
}
.hero-section .hero-title {
  font-size: 3.5rem;
  color: #8c6e58;
  line-height: 1.4;
  font-weight: 600;
}
@media (max-width: 768px) {
  .hero-section .hero-title {
    font-size: 1.8rem;
  }
}
.hero-section .hero-desc {
  font-size: 1.2rem;
  color: #4a3b33;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .hero-section .hero-desc {
    font-size: 1rem;
  }
}

.about-section {
  position: relative;
  background: none;
}
.about-section::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/assets/img-1.avif") center/cover no-repeat;
  position: absolute;
  background-attachment: fixed;
  z-index: -1;
}
.about-section .about-text p {
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  color: #4a3b33;
  line-height: 1.8;
}
.about-section .about-text p:last-child {
  margin-bottom: 0;
}
.about-section .aboutSwiper {
  height: 400px;
}
.about-section .aboutSwiper img {
  border: 10px solid white;
}
@media (max-width: 768px) {
  .about-section .aboutSwiper {
    height: 300px;
  }
}
.about-section .aboutSwiper .swiper-pagination-bullet {
  background: #f5efe8;
  opacity: 0.7;
}
.about-section .aboutSwiper .swiper-pagination-bullet-active {
  background: #c8a46b;
  opacity: 1;
}

.services-section {
  position: relative;
  background: none;
}
.services-section::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/services/bg.avif") center/cover no-repeat;
  z-index: -1;
  background-attachment: fixed;
  opacity: 0.5;
}
@media (max-width: 768px) {
  .services-section::after {
    background-position: left;
  }
}
.services-section .service-card {
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  border: 1px solid rgba(198, 169, 139, 0.1);
  position: relative;
}
.services-section .service-card::after {
  position: absolute;
  content: "";
  left: -10px;
  bottom: -10px;
  width: 120px;
  height: 120px;
  background: url("../images/services/flowers.png") center/contain no-repeat;
}
@media (max-width: 768px) {
  .services-section .service-card::after {
    width: 80px;
    height: 120px;
    bottom: -20px;
  }
}
.services-section .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(140, 110, 88, 0.1);
}
.services-section .service-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.services-section .service-card:hover .service-icon {
  color: #c8a46b;
}
.services-section .service-card .card-img-wrap {
  height: 300px;
  overflow: hidden;
}
@media (max-width: 768px) {
  .services-section .service-card .card-img-wrap {
    height: 200px;
  }
}
.services-section .service-card .card-img-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
.services-section .service-card .card-body-custom {
  padding: 2rem;
  text-align: center;
  position: relative;
}
.services-section .service-card .card-body-custom .service-icon {
  font-size: 3rem;
  color: #c6a98b;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
.services-section .service-card .card-body-custom h3 {
  font-size: 1.3rem;
  margin-bottom: 1.5rem;
  color: #8c6e58;
}
.services-section .service-card .card-body-custom .service-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.services-section .service-card .card-body-custom .service-list li {
  font-size: 0.95rem;
  color: #4a3b33;
  padding: 0.4rem 0;
  border-bottom: 1px dashed rgba(198, 169, 139, 0.3);
}
.services-section .service-card .card-body-custom .service-list li:last-child {
  border-bottom: none;
}

.pricing-section {
  position: relative;
  background: none;
}
.pricing-section::after {
  content: "";
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/price/bg.avif") center/cover no-repeat;
  position: absolute;
  background-attachment: fixed;
  z-index: -1;
}
.pricing-section .pricing-card {
  border: 1px solid rgba(198, 169, 139, 0.15);
  z-index: 2;
  background: rgba(255, 255, 255, 0.755);
}
.pricing-section .pricing-card .pricing-decoration {
  position: absolute;
  right: -20px;
  top: -20px;
  width: 100px;
  height: 100px;
  background: url("../images/services/flowers.png") center/contain no-repeat;
  opacity: 0.5;
  z-index: -1;
  pointer-events: none;
}
.pricing-section .pricing-card .pricing-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.pricing-section .pricing-card .pricing-list .pricing-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(198, 169, 139, 0.3);
  transition: all 0.3s ease;
}
.pricing-section .pricing-card .pricing-list .pricing-item:last-child {
  border-bottom: none;
}
.pricing-section .pricing-card .pricing-list .pricing-item:hover {
  transform: translateX(5px);
}
.pricing-section .pricing-card .pricing-list .pricing-item:hover .item-name {
  color: #c8a46b;
}
.pricing-section .pricing-card .pricing-list .pricing-item .item-name {
  font-size: 1.1rem;
  color: #8c6e58;
  font-weight: 500;
  letter-spacing: 2px;
  transition: color 0.3s ease;
}
.pricing-section .pricing-card .pricing-list .pricing-item .item-price {
  font-family: "Noto Serif TC", serif;
  font-size: 1.15rem;
  color: #4a3b33;
  font-weight: 600;
}
.pricing-section .pricing-card .pricing-list .pricing-item .item-price::before {
  content: "$ ";
  font-size: 0.9rem;
  color: #c6a98b;
}
.pricing-section .pricing-card .pricing-notes {
  padding-top: 1.5rem;
  border-top: 2px solid #d9b8b0;
}
.pricing-section .pricing-card .pricing-notes .note-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #4a3b33;
  font-size: 0.95rem;
  margin-bottom: 0.5rem;
  letter-spacing: 1px;
}
@media (max-width: 768px) {
  .pricing-section .pricing-card .pricing-notes .note-item {
    flex-direction: column;
  }
}
.pricing-section .pricing-card .pricing-notes .note-item:last-child {
  margin-bottom: 0;
}
.pricing-section .pricing-card .pricing-notes .note-item .note-price {
  font-weight: 600;
  color: #8c6e58;
  font-family: "Noto Serif TC", serif;
}
.pricing-section .pricing-card .pricing-notes .note-item .note-price::before {
  content: "$ ";
  font-size: 0.85rem;
  color: #c6a98b;
}

.process-section {
  position: relative;
  background: none;
}
.process-section::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: url("../images/process/bg.avif") center/cover no-repeat;
  z-index: -1;
}
.process-section .timeline {
  position: relative;
  padding: 2rem 0;
}
.process-section .timeline::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 2px;
  height: 100%;
  background: rgba(198, 169, 139, 0.3);
}
@media (max-width: 768px) {
  .process-section .timeline::before {
    left: 20px;
  }
}
.process-section .timeline .timeline-item {
  position: relative;
  margin-bottom: 3rem;
  width: 50%;
  padding-right: 3rem;
  text-align: center;
}
.process-section .timeline .timeline-item:nth-child(even) {
  margin-left: auto;
  padding-right: 0;
  padding-left: 3rem;
}
.process-section .timeline .timeline-item:nth-child(even) .timeline-dot {
  right: auto;
  left: -20px;
}
@media (max-width: 768px) {
  .process-section .timeline .timeline-item:nth-child(even) .timeline-dot {
    left: 0;
  }
}
@media (max-width: 768px) {
  .process-section .timeline .timeline-item {
    width: 100%;
    padding-left: 60px !important;
    padding-right: 0 !important;
    text-align: left !important;
  }
}
.process-section .timeline .timeline-item:last-child {
  margin-bottom: 0;
}
.process-section .timeline .timeline-item .timeline-dot {
  position: absolute;
  top: 0;
  right: -20px;
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #c6a98b 0%, #8c6e58 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: "Noto Serif TC", serif;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 0 0 5px #ede5de;
  z-index: 2;
}
@media (max-width: 768px) {
  .process-section .timeline .timeline-item .timeline-dot {
    left: 0;
    right: auto;
  }
}
.process-section .timeline .timeline-item .timeline-content {
  background: #fff;
  padding: 1.5rem 2rem;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.02);
  position: relative;
}
.process-section .timeline .timeline-item .timeline-content::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 1.5px solid #d9b8b0;
  border-radius: 1rem;
  transform: scale(0.95, 0.9);
}
.process-section .timeline .timeline-item .timeline-content .content-header {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  flex-direction: column;
}
.process-section .timeline .timeline-item .timeline-content .content-header .icon {
  font-size: 2rem;
  color: #c8a46b;
  background: #d9b8b0;
  color: white;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100%;
}
.process-section .timeline .timeline-item .timeline-content .content-header h4 {
  color: #8c6e58;
  margin-bottom: 0;
  font-size: 1.1rem;
  padding: 1rem 0 0.5rem;
}
.process-section .timeline .timeline-item .timeline-content p {
  margin: 0;
  color: #4a3b33;
  font-size: 0.95rem;
  text-align: center;
}

.contact-section .contact-info li .text-primary-custom {
  color: #c6a98b;
}
.contact-section .contact-info li strong {
  color: #8c6e58;
  font-family: "Noto Serif TC", serif;
}
.contact-section .contact-info li a,
.contact-section .contact-info li span {
  color: #4a3b33;
  transition: color 0.3s;
}
.contact-section .contact-info li a:hover {
  color: #c8a46b;
}
.contact-section .social-links .social-icon {
  width: 45px;
  height: 45px;
  background-color: #c6a98b;
  color: #fff;
  font-size: 1.5rem;
  transition: all 0.3s ease;
}
.contact-section .social-links .social-icon:hover {
  background-color: #8c6e58;
  transform: translateY(-3px);
}
.footer {
  background-color: #4a3b33;
  color: rgba(255, 255, 255, 0.8);
}
.footer .copyright-text {
  font-size: 0.9rem;
  letter-spacing: 0.5px;
}
.footer .designed-by {
  color: #c8a46b;
  text-decoration: none;
  margin-left: 5px;
}
.footer .designed-by:hover {
  color: #fff;
  text-decoration: underline;
}

.floating-actions {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}
@media (max-width: 768px) {
  .floating-actions {
    bottom: 20px;
    right: 20px;
  }
}
.floating-actions .float-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.floating-actions .float-btn:hover {
  transform: scale(1.1);
}
.floating-actions .float-btn.float-phone {
  background: linear-gradient(135deg, #c6a98b 0%, #8c6e58 100%);
  color: #fff;
  font-size: 1.8rem;
}
.floating-actions .float-btn.float-line {
  background: transparent;
  box-shadow: none;
}
.floating-actions .float-btn.float-line svg {
  width: 65px;
  height: 65px;
  filter: drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
}
.floating-actions .float-btn.float-line:hover {
  transform: scale(1.05);
}

.auto-carousel {
  padding: 0;
}
.auto-carousel .swiper {
  width: 100%;
  transform: rotate(0deg);
  position: relative;
}
.auto-carousel .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
.auto-carousel .swiper .swiper-slide {
  width: auto;
  height: 350px;
  /* 關鍵：增加這行，防止圖片加載前寬度為 0 */
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    height: 180px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: auto;
  height: 100%;
  display: block;
  /* 確保圖片渲染不會有奇怪的間隙 */
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=all.css.map */