@charset "UTF-8";
body {
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  color: #e0e0e0;
  line-height: 1.6;
  background-color: #000000;
}

.section-title {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  padding-bottom: 1.5rem;
}
.section-title h2 {
  color: #8b7349;
  font-size: 2.5rem;
  font-weight: 800;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  margin-bottom: 1rem;
  position: relative;
  display: inline-block;
}
.section-title h2::before, .section-title h2::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 40px;
  height: 2px;
  background: #d4af37;
}
.section-title h2::before {
  left: -60px;
}
.section-title h2::after {
  right: -60px;
}
.section-title .title-decoration {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #cd7f32 20%, #d4af37 50%, #cd7f32 80%, transparent 100%);
}

.navbar {
  background-color: rgba(0, 0, 0, 0.98) !important;
  padding: 1rem 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(139, 115, 73, 0.2);
  box-shadow: 0 2px 10px rgba(212, 175, 55, 0.1);
}
.navbar .navbar-brand {
  font-size: 1.5rem;
  font-weight: bold;
  color: #8b7349;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}
.navbar .nav-link {
  color: #e0e0e0 !important;
  font-size: 1.1rem;
  padding: 0.5rem 1rem;
  transition: all 0.3s ease;
  position: relative;
}
.navbar .nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: #d4af37;
  transition: all 0.3s ease;
  transform: translateX(-50%);
}
.navbar .nav-link:hover {
  color: #e6d5b8 !important;
}
.navbar .nav-link:hover::after {
  width: 80%;
}

.hero-section {
  position: relative;
  height: 100vh;
  background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7));
  overflow: hidden;
}
.hero-section .hero-swiper {
  height: 100%;
}
.hero-section .hero-swiper .swiper-slide {
  position: relative;
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-section .hero-swiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%);
  z-index: 1;
}
.hero-section .hero-swiper .swiper-slide:nth-child(1) {
  background-image: url("../images/hero-1.jpg");
}
.hero-section .hero-swiper .swiper-slide:nth-child(2) {
  background-image: url("../images/hero-2.jpg");
}
.hero-section .hero-swiper .swiper-slide:nth-child(3) {
  background-image: url("../images/hero-3.jpg");
}
.hero-section .hero-swiper .swiper-slide .hero-content {
  position: relative;
  z-index: 2;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #f5f5f5;
  width: 90%;
  max-width: 800px;
}
.hero-section .hero-swiper .swiper-slide .hero-content h1 {
  font-size: 3.5rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #e6d5b8;
}
.hero-section .hero-swiper .swiper-slide .hero-content .lead {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.8);
  color: #f5f5f5;
}
.hero-section .hero-swiper .swiper-slide .hero-content .btn {
  padding: 0.8rem 2rem;
  font-size: 1.1rem;
  border-width: 2px;
  transition: all 0.3s ease;
  background-color: rgba(192, 163, 107, 0.2);
  border-color: #e6d5b8;
}
.hero-section .hero-swiper .swiper-slide .hero-content .btn:hover {
  background-color: #c0a36b;
  border-color: #c0a36b;
  transform: translateY(-2px);
}
.hero-section .hero-swiper .swiper-slide .swiper-button-next,
.hero-section .hero-swiper .swiper-slide .swiper-button-prev {
  color: #e6d5b8;
}
.hero-section .hero-swiper .swiper-slide .swiper-button-next::after,
.hero-section .hero-swiper .swiper-slide .swiper-button-prev::after {
  font-size: 2rem;
}
.hero-section .hero-swiper .swiper-slide .swiper-pagination-bullet {
  background: #e6d5b8;
  opacity: 0.5;
}
.hero-section .hero-swiper .swiper-slide .swiper-pagination-bullet-active {
  opacity: 1;
}

section {
  background-color: #000000;
  position: relative;
  padding: 5rem 0;
}
section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.95) 0%, rgb(0, 0, 0) 100%);
  z-index: 1;
}
section .container {
  position: relative;
  z-index: 2;
}
section h2 {
  color: #8b7349;
  text-align: center;
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 3rem;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
  position: relative;
  padding-bottom: 1.5rem;
}
section h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #c0a36b 50%, transparent 100%);
}

#about p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #f5f5f5;
  text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}
#about .highlight {
  color: #e6d5b8;
  font-weight: 600;
}

#services .services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
#services .services-grid .service-item {
  background: rgba(10, 10, 10, 0.8);
  border-radius: 10px;
  text-align: center;
  transition: all 0.3s ease;
  border: 2px solid rgba(192, 163, 107, 0.3);
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1), inset 0 0 15px rgba(192, 163, 107, 0.1);
  overflow: hidden;
}
#services .services-grid .service-item:hover {
  transform: translateY(-5px);
  border-color: #c0a36b;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15), inset 0 0 20px rgba(192, 163, 107, 0.15);
}
#services .services-grid .service-item:hover .service-img img {
  transform: scale(1.1);
}
#services .services-grid .service-item .service-img {
  position: relative;
  width: 100%;
  padding-top: 75%;
  overflow: hidden;
  background: #000000;
}
#services .services-grid .service-item .service-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}
#services .services-grid .service-item h3 {
  color: #e6d5b8;
  font-size: 1.3rem;
  margin: 1rem 0;
  padding: 0 1rem;
  font-weight: 600;
}
#services .services-grid .service-item .service-subtitle {
  color: #f5f5f5;
  font-size: 0.9rem;
  margin: 0 0 1rem;
  padding: 0 1rem;
  opacity: 0.8;
}

#process {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.95) 0%, rgba(10, 8, 5, 0.95) 100%);
  position: relative;
  padding: 6rem 0;
}
#process .process-steps {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 0;
}
#process .process-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(192, 163, 107, 0.2) 20%, rgba(192, 163, 107, 0.3) 50%, rgba(192, 163, 107, 0.2) 80%, transparent 100%);
  z-index: 1;
}
#process .process-steps .step {
  flex: 0 1 300px;
  position: relative;
  padding: 2rem;
  background: rgba(10, 8, 5, 0.8);
  border: 1px solid rgba(192, 163, 107, 0.1);
  border-radius: 15px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
  overflow: hidden;
}
#process .process-steps .step::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, transparent 0%, rgba(192, 163, 107, 0.05) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}
#process .process-steps .step::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: #c0a36b;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.4s ease;
}
#process .process-steps .step:hover {
  transform: translateY(-10px) scale(1.02);
  border-color: rgba(192, 163, 107, 0.3);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.6), 0 0 30px rgba(192, 163, 107, 0.1);
}
#process .process-steps .step:hover::before {
  opacity: 1;
}
#process .process-steps .step:hover::after {
  transform: scaleY(1);
}
#process .process-steps .step:hover .step-icon {
  transform: scale(1.1) rotate(5deg);
  color: #e6d5b8;
}
#process .process-steps .step:hover .step-number {
  background: #e6d5b8;
  color: #000000;
}
#process .process-steps .step .step-number {
  position: absolute;
  top: -3px;
  right: -3px;
  width: 40px;
  height: 40px;
  background: #c0a36b;
  border-radius: 0%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  font-weight: bold;
  font-size: 1.2rem;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  transition: all 0.4s ease;
  z-index: 3;
}
#process .process-steps .step .step-icon {
  font-size: 2.5rem;
  color: #c0a36b;
  margin-bottom: 1.5rem;
  text-align: center;
  transition: all 0.4s ease;
}
#process .process-steps .step h4 {
  color: #e6d5b8;
  margin-bottom: 1rem;
  font-weight: bold;
  text-align: center;
  font-size: 1.4rem;
  position: relative;
  padding-bottom: 1rem;
}
#process .process-steps .step h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 2px;
  background: #c0a36b;
  transition: width 0.4s ease;
}
#process .process-steps .step:hover h4::after {
  width: 60px;
}
#process .process-steps .step p {
  color: #f5f5f5;
  margin-bottom: 0;
  text-align: center;
  font-size: 1.1rem;
  line-height: 1.6;
}

#contact {
  padding: 5rem 0;
}
#contact .contact-wrapper {
  background: rgba(10, 10, 10, 0.8);
  border-radius: 15px;
  padding: 2rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(192, 163, 107, 0.3);
}
#contact .contact-info {
  padding: 1rem;
}
#contact .contact-info .contact-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
#contact .contact-info .contact-item:hover {
  transform: translateX(5px);
}
#contact .contact-info .contact-item:hover i {
  background: #c0a36b;
  color: #000000;
}
#contact .contact-info .contact-item i {
  width: 45px;
  height: 45px;
  background: rgba(192, 163, 107, 0.1);
  color: #c0a36b;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  margin-right: 1rem;
  transition: all 0.3s ease;
}
#contact .contact-info .contact-item .contact-text h4 {
  color: #e6d5b8;
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
#contact .contact-info .contact-item .contact-text p {
  color: #f5f5f5;
  margin: 0;
  font-size: 1rem;
}
#contact .contact-info .contact-item .contact-text a {
  color: #f5f5f5;
  text-decoration: none;
  transition: all 0.3s ease;
}
#contact .contact-info .contact-item .contact-text a:hover {
  color: #e6d5b8;
  text-decoration: none;
}
#contact .contact-info .contact-item .contact-text a p {
  margin: 0;
  transition: all 0.3s ease;
}
#contact .contact-info .contact-item .contact-text .social-links {
  display: flex;
  gap: 1.5rem;
  margin-top: 0.5rem;
  padding-left: 0;
}
#contact .contact-info .contact-item .contact-text .social-links a {
  color: #c0a36b;
  transition: all 0.3s ease;
  margin: 0;
  padding: 0;
  background: none;
  border-radius: 0;
}
#contact .contact-info .contact-item .contact-text .social-links a:hover {
  color: #e6d5b8;
  transform: translateY(-3px);
  background: none;
}
#contact .contact-info .contact-item .contact-text .social-links a i {
  font-size: 1.5rem;
  margin: 0;
  padding: 0;
  line-height: 1;
}
#contact .map-container {
  height: 100%;
  min-height: 300px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  border: 2px solid rgba(192, 163, 107, 0.3);
}
#contact .map-container iframe {
  width: 100%;
  height: 100%;
  min-height: 300px;
}

footer {
  background-color: #000000;
  color: #f5e9d7;
  padding: 2rem 0;
  border-top: 1px solid rgba(139, 115, 73, 0.2);
}

@media (max-width: 768px) {
  .hero-section h1 {
    font-size: 2.5rem;
  }
  .hero-section .lead {
    font-size: 1.2rem;
  }
  .navbar .navbar-brand {
    font-size: 1.2rem;
  }
  .navbar .nav-link {
    font-size: 1rem;
  }
}
.fade-in {
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #000000;
}

::-webkit-scrollbar-thumb {
  background: #8b7349;
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: #c0a36b;
}

::-moz-selection {
  background: #c0a36b;
  color: #ffffff;
}

::selection {
  background: #c0a36b;
  color: #ffffff;
}

a {
  color: #c0a36b;
  transition: color 0.3s ease;
}
a:hover {
  color: #e6d5b8;
}

.highlight-text {
  color: #8b7349;
  font-weight: bold;
}

.gold-border {
  border: 1px solid rgba(192, 163, 107, 0.3);
}
.gold-border:hover {
  border-color: rgba(230, 213, 184, 0.6);
}

.gold-bg {
  background-color: #0f0d09;
  border: 1px solid rgba(139, 115, 73, 0.2);
}

.decoration-line {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, #cd7f32 20%, #d4af37 50%, #cd7f32 80%, transparent 100%);
  margin: 2rem 0;
}

.gold-divider {
  width: 60px;
  height: 3px;
  background: #d4af37;
  margin: 1rem auto;
  position: relative;
}
.gold-divider::before, .gold-divider::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: #d4af37;
  border-radius: 50%;
  transform: translateY(-50%);
}
.gold-divider::before {
  left: -15px;
}
.gold-divider::after {
  right: -15px;
}

#cases {
  background-color: #000000;
  padding: 5rem 0;
}
#cases .case-categories {
  margin-bottom: 2rem;
}
#cases .case-categories .case-category-btn {
  background: transparent;
  border: 2px solid #c0a36b;
  color: #c0a36b;
  padding: 0.5rem 1.5rem;
  border-radius: 25px;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
#cases .case-categories .case-category-btn:hover, #cases .case-categories .case-category-btn.active {
  background: #c0a36b;
  color: #000000;
}
#cases .case-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
#cases .case-grid .case-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  aspect-ratio: 4/3;
  background: #000000;
  border: 1px solid rgba(192, 163, 107, 0.1);
  display: block;
  text-decoration: none;
  cursor: zoom-in;
}
#cases .case-grid .case-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  border-color: #c0a36b;
}
#cases .case-grid .case-item:hover .case-img {
  transform: scale(1.05);
}
#cases .case-grid .case-item .case-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.3s ease;
}

.fancybox__container {
  --fancybox-bg: rgba(0, 0, 0, 0.95);
}

.fancybox__toolbar {
  --fancybox-accent-color: #c0a36b;
  --fancybox-accent-contrast: #000000;
}

.fancybox__caption {
  --fancybox-accent-color: #c0a36b;
  --fancybox-accent-contrast: #000000;
  font-family: "Microsoft JhengHei", "微軟正黑體", sans-serif;
  text-align: center;
  padding: 0.5rem 1rem;
}/*# sourceMappingURL=style.css.map */