@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.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: "Helvetica Neue", Helvetica, Arial, "PingFang TC", "Heiti TC", "Microsoft JhengHei", sans-serif;
  background-color: #f8f7f3;
  color: #4a4a4a;
  line-height: 1.8;
  overflow-x: hidden;
}

i.ph {
  vertical-align: middle;
  display: inline-block;
}

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

/* CSS */
[data-aos=blur-up] {
  opacity: 0;
  filter: blur(4px);
  transform: translateY(10px);
  transition: all 0.1s ease;
}

[data-aos=blur-up].aos-animate {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}

.section-header {
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 768px) {
  .section-header {
    margin-bottom: 2.5rem;
  }
}
.section-header .sub-title {
  display: block;
  font-size: 0.875rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #b08e56;
  font-weight: 600;
  margin-bottom: 0.5rem;
  font-family: sans-serif;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.section-header .sub-title::before {
  content: "";
  width: 2rem;
  height: 1px;
  background-color: #b08e56;
}
.section-header h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #12284a;
  line-height: 1.3;
  position: relative;
  z-index: 1;
}
@media (max-width: 768px) {
  .section-header h2 {
    font-size: 1.75rem;
  }
}
.section-header h2 strong {
  color: #d9b65d;
  position: relative;
  display: inline-block;
}
.section-header h2 strong::after {
  content: "";
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 8px;
  background-color: rgba(217, 182, 93, 0.3);
  z-index: -1;
}

.split {
  display: inline-block;
  overflow: hidden;
  text-shadow: 0 1.3em currentColor; /* 和 JS 位移一致 */
  will-change: transform;
  padding: 1 1rem;
}

.char {
  display: inline-block;
  position: relative;
}

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

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

img {
  -o-object-fit: cover;
     object-fit: cover;
}

.all-bg {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: -1;
  opacity: 0.35;
}
.all-bg img {
  width: 100%;
  height: 100%;
}

.cta-link {
  position: fixed;
  right: 1rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
  /* 避免子項目被等寬拉伸，同時維持靠右貼齊 */
  align-items: flex-end;
}
@media (max-width: 768px) {
  .cta-link {
    bottom: 1rem;
    right: 0.5rem;
  }
}
.cta-link a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  border-radius: 2rem;
  overflow: hidden;
}
.cta-link a.line {
  background: #39cd00;
}
.cta-link a.tel {
  background: #12284a;
}
.cta-link a.tel svg #background {
  fill: #12284a;
}
.cta-link a.tel svg #icon {
  fill: white;
}
.cta-link a .icon {
  display: inline-flex;
  align-items: center;
  transition: transform 0.3s ease;
}
.cta-link a .icon svg {
  width: 50px;
}
.cta-link a .label {
  white-space: nowrap;
  overflow: hidden;
  color: white;
  /* 用可動畫屬性取代 display */
  opacity: 0;
  visibility: hidden;
  max-width: 0; /* 或用 width，依喜好 */
  margin-left: 0;
  transform: translateX(8px);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s linear 0.3s;
}
.cta-link a:hover {
  gap: 0.5rem;
}
.cta-link a:hover .label {
  opacity: 1;
  visibility: visible;
  max-width: 200px;
  margin-left: 0rem;
  padding-right: 1rem;
  transform: translateX(0);
  transition: opacity 0.3s ease, max-width 0.3s ease, margin-left 0.3s ease, transform 0.3s ease, visibility 0s;
}
.cta-link .dropdown-menu {
  margin-right: 0.25rem;
  margin-left: 0;
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  background: #12284a;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler {
  border-color: rgb(136, 136, 136);
}
.navbar .navbar-toggler .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  transition: 0.5s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.navbar .navbar-brand span {
  color: #b08e56;
  font-size: 1.3rem;
  font-weight: 700;
  font-family: "Noto Serif TC", serif;
}
@media (max-width: 768px) {
  .navbar .navbar-brand span {
    font-size: 1.2rem;
  }
}
.navbar .navbar-brand img {
  width: 400px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 280px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse {
    padding-top: 1rem;
  }
}
.navbar .navbar-collapse .navbar-nav {
  gap: 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav {
    gap: 0.5rem;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  color: white;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #12284a;
}

.parallax-fixed {
  position: relative;
  height: 100vh; /* 可自行調整高度 */
  overflow: hidden;
}
.parallax-fixed .parallax-img {
  position: absolute;
  top: -15%;
  left: 0;
  width: 100%;
  height: 120%;
}
.parallax-fixed .parallax-img img {
  width: 100%;
  height: 100%;
}

.parallax-dynamic {
  position: relative;
  /* 高度交給圖片本身決定 */
}
.parallax-dynamic .parallax-media {
  overflow: hidden;
  line-height: 0; /* 移除 img 作為 inline 元素的行高縫隙 */
}
.parallax-dynamic .parallax-media img {
  display: block;
  width: 100%;
  height: auto;
  /* 關鍵：先往上、並放大一點，避免上下兩端出現空白 */
  transform: translateY(-12%) scale(1.12);
  transform-origin: center;
  will-change: transform;
}

#hero {
  width: 100%;
  height: 50vh;
  position: relative;
  overflow: hidden;
  margin-top: 73.09px;
}
@media (max-width: 768px) {
  #hero {
    height: 35vh;
    margin-top: 107px;
  }
}
#hero .swiper {
  position: absolute;
  top: -10%; /* 往上預留位移空間 */
  left: 0;
  width: 100%;
  height: 120%;
  will-change: transform;
}
#hero .swiper .swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: left;
     object-position: left;
  transition: transform 8s ease; /* 控制漸進放大 */
}
#hero .swiper .swiper-slide-active img {
  transform: scale(1.05); /* 只要變 active 就開始放大 */
}
#hero .cta-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  padding: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.438);
}
#hero .cta-box .cta-content {
  text-align: center;
  color: white;
  padding: 2rem 3rem;
  border-radius: 1rem;
}
#hero .cta-box .cta-content h1 {
  margin-bottom: 1rem;
  text-align: center;
}
#hero .cta-box .cta-content p {
  margin-bottom: 2rem;
}
#hero .cta-box .cta-content .btn-box {
  display: flex;
  gap: 1rem;
  justify-content: center;
  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.5rem 1.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 10rem;
  transition: 0.5s;
}
@media (max-width: 768px) {
  #hero .cta-box .cta-content .btn-box a {
    padding: 0.5rem 1rem;
  }
}
#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: #12284a;
  color: white;
}
#hero .cta-box .cta-content .btn-box a:last-child {
  color: gray;
  background: white;
}
#hero .cta-box .cta-content .btn-box a:last-child:hover {
  background: white;
  color: #12284a;
}

#about {
  background: #ffffff;
  overflow: hidden;
}
#about .bg-deco-text {
  position: absolute;
  top: 5%;
  left: -2%;
  font-size: 15rem;
  font-weight: 900;
  color: rgba(18, 40, 74, 0.03);
  line-height: 1;
  z-index: 0;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: sans-serif;
}
@media (max-width: 992px) {
  #about .bg-deco-text {
    font-size: 8rem;
    top: 2%;
  }
}
#about .about-visual {
  position: relative;
  padding: 2rem;
}
@media (max-width: 768px) {
  #about .about-visual {
    padding: 0;
    margin-bottom: 3rem;
  }
}
#about .about-visual .img-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(18, 40, 74, 0.1);
}
#about .about-visual .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
#about .about-visual .img-wrapper:hover img {
  transform: scale(1.05);
}
#about .about-visual .main-img {
  width: 85%;
  aspect-ratio: 4/3;
  z-index: 1;
}
#about .about-visual .sub-img {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 45%;
  aspect-ratio: 1/1;
  z-index: 2;
  border: 6px solid #ffffff;
}
@media (max-width: 768px) {
  #about .about-visual .sub-img {
    width: 40%;
    right: -5px;
    bottom: -30px;
    border: 3px solid #ffffff;
  }
}
#about .about-visual .deco-box {
  position: absolute;
  top: 10%;
  right: 5%;
  background: linear-gradient(135deg, #d9b65d 0%, #ead18c 100%);
  padding: 1rem 1.5rem;
  border-radius: 4px;
  color: #12284a;
  font-weight: 700;
  z-index: 3;
  box-shadow: 0 20px 40px -12px rgba(18, 40, 74, 0.2);
  display: flex;
  flex-direction: column;
  align-items: center;
}
#about .about-visual .deco-box i {
  font-size: 1.5rem;
  margin-bottom: 0.25rem;
}
#about .about-visual .deco-box span {
  font-size: 0.875rem;
  letter-spacing: 1px;
}
#about .about-content {
  position: relative;
  z-index: 2;
}
#about .about-content .lead-text {
  font-size: 1.125rem;
  font-weight: 500;
  color: #12284a;
  margin-bottom: 1.5rem;
}
#about .about-content p {
  color: #4a4a4a;
  margin-bottom: 1.5rem;
  text-align: justify;
}
#about .about-content .feature-list {
  list-style: none;
  padding: 0;
  margin: 2rem 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
#about .about-content .feature-list li {
  display: flex;
  align-items: center;
  font-weight: 600;
  color: #1a1a1a;
}
#about .about-content .feature-list li i {
  color: #d9b65d;
  font-size: 1.25rem;
  margin-right: 0.75rem;
}
#about .about-content .highlight-quote {
  border-left: 4px solid #d9b65d;
  padding-left: 1.5rem;
  font-style: italic;
  color: #1a1a1a;
  font-weight: 500;
  background: rgba(217, 182, 93, 0.1);
  padding: 1.5rem;
  border-radius: 0 4px 4px 0;
}
#about .education-philosophy {
  margin: 2.5rem 0;
}
#about .education-philosophy .philosophy-item {
  position: relative;
  padding: 1.5rem;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border-radius: 12px;
  border: 1px solid rgba(18, 40, 74, 0.2);
  background: #f8f9fa;
  transform: translateY(-5px);
  box-shadow: 8px 8px 0px rgba(18, 40, 74, 0.08);
  background: #ffffff;
}
#about .education-philosophy .philosophy-item h4 {
  color: #12284a;
}
#about .education-philosophy .philosophy-item h4::after {
  background: #12284a;
}
#about .education-philosophy .philosophy-item h4 i {
  color: #12284a;
}
#about .education-philosophy .philosophy-item h4 {
  display: flex;
  align-items: center;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
#about .education-philosophy .philosophy-item h4 i {
  font-size: 1.5rem;
  margin-right: 0.5rem;
}
#about .education-philosophy .philosophy-item p {
  margin-bottom: 0;
  line-height: 1.8;
  color: #4a4a4a;
}
#about .highlight-quote {
  margin-top: 3rem;
  padding: 1.5rem;
  background-color: rgba(var(--bs-primary-rgb), 0.05);
  border-radius: 8px;
  font-style: italic;
  color: var(--bs-primary);
  border-left: 4px solid var(--bs-primary);
}

#services {
  background-color: #f8f7f3;
  background-image: radial-gradient(#d9b65d 1.2px, transparent 1.2px);
  background-size: 40px 40px;
}
@media (max-width: 768px) {
  #services {
    background-image: radial-gradient(#d9b65d 1.3px, transparent 1.3px);
    background-size: 25px 25px;
  }
}
#services .service-card {
  background: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  height: 100%;
  transition: all 0.4s ease;
  border: 1px solid rgba(18, 40, 74, 0.05);
  position: relative;
  display: flex;
  flex-direction: column;
}
#services .service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px -12px rgba(18, 40, 74, 0.2);
  border-color: rgba(217, 182, 93, 0.3);
}
#services .service-card:hover .card-img img {
  transform: scale(1.1);
}
#services .service-card:hover .card-img .icon-box {
  background-color: #12284a;
  transform: rotate(-10deg) scale(1.1);
}
#services .service-card:hover .card-body h3 {
  color: #b08e56;
}
#services .service-card .card-img {
  position: relative;
  height: 300px;
  overflow: hidden;
}
#services .service-card .card-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.6s ease;
}
#services .service-card .card-img .icon-box {
  position: absolute;
  bottom: -24px;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #d9b65d 0%, #ead18c 100%);
  color: #12284a;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 2;
}
#services .service-card .card-body {
  padding: 2rem 1.5rem;
  flex-grow: 1;
}
#services .service-card .card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #12284a;
  margin-bottom: 1rem;
  transition: color 0.3s;
}
#services .service-card .card-body p {
  font-size: 0.95rem;
  color: #4a4a4a;
  margin-bottom: 0;
  line-height: 1.6;
}
#services .service-card.special-card .custom-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
#services .service-card.special-card .custom-list li {
  display: flex;
  align-items: center;
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
  color: #1a1a1a;
}
#services .service-card.special-card .custom-list li i {
  color: #d9b65d;
  margin-right: 0.5rem;
}
#services .service-card.special-card .custom-list li:last-child {
  margin-bottom: 0;
}

.auto-carousel {
  padding: 0;
  scroll-margin-top: 8rem;
}
@media (max-width: 768px) {
  .auto-carousel {
    scroll-margin-top: 5rem;
  }
}
.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: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  .auto-carousel .swiper .swiper-slide {
    width: 300px;
  }
}
.auto-carousel .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#works .nav-pills .nav-link.active,
#works .nav-pills .show > .nav-link {
  background: #12284a;
}
#works .nav-pills .nav-link {
  color: #ff6b00;
}

#contact {
  background-color: #f8f7f3;
  position: relative;
  overflow: hidden;
}
@media (max-width: 768px) {
  #contact .container {
    padding-bottom: 2rem;
  }
}
#contact .contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
#contact .contact-box {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(18, 40, 74, 0.08);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}
@media (max-width: 576px) {
  #contact .contact-box {
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
  }
}
#contact .contact-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px -12px rgba(18, 40, 74, 0.2);
  border-color: rgba(217, 182, 93, 0.5);
}
#contact .contact-box:hover .icon-box {
  background: #12284a;
  transform: scale(1.1) rotate(-10deg);
}
#contact .contact-box:hover .icon-box i,
#contact .contact-box:hover .icon-box svg {
  color: #d9b65d;
  stroke: #d9b65d;
}
#contact .contact-box:hover .main-link {
  color: #b08e56;
}
#contact .contact-box.highlight-box {
  background: linear-gradient(to right, #ffffff, rgba(217, 182, 93, 0.05));
}
#contact .contact-box .icon-box {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(18, 40, 74, 0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
  flex-shrink: 0;
}
#contact .contact-box .icon-box i {
  font-size: 2rem;
  color: #12284a;
  transition: color 0.3s ease;
}
#contact .contact-box .icon-box.svg-box svg {
  width: 32px;
  height: 32px;
}
#contact .contact-box .icon-box.svg-box svg path {
  fill: #12284a;
  transition: fill 0.3s ease;
}
#contact .contact-box .content h3 {
  font-size: 0.9rem;
  font-weight: 700;
  color: rgba(26, 26, 26, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.25rem;
}
#contact .contact-box .content p {
  font-size: 1.1rem;
  color: #1a1a1a;
  font-weight: 500;
  margin-bottom: 0.25rem;
}
@media (max-width: 576px) {
  #contact .contact-box .content p {
    font-size: 1rem;
  }
}
#contact .contact-box .content a {
  text-decoration: none;
  transition: all 0.2s ease;
}
#contact .contact-box .content a.link-arrow {
  font-size: 0.9rem;
  color: #b08e56;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
#contact .contact-box .content a.link-arrow i {
  font-size: 1rem;
}
#contact .contact-box .content a.link-arrow:hover {
  gap: 8px;
}
#contact .contact-box .content a.main-link {
  font-size: 1.25rem;
  font-weight: 700;
  color: #12284a;
  font-family: monospace, sans-serif;
}
#contact .social-mini-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  border: 1px solid rgba(18, 40, 74, 0.08);
  border-radius: 4px;
  padding: 1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  height: 100%;
}
#contact .social-mini-box i {
  font-size: 2rem;
  color: #12284a;
  margin-bottom: 0.5rem;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
#contact .social-mini-box span {
  font-size: 0.875rem;
  font-weight: 600;
  color: #4a4a4a;
}
#contact .social-mini-box:hover {
  background: #12284a;
  border-color: #12284a;
  transform: translateY(-3px);
}
#contact .social-mini-box:hover i {
  color: #d9b65d;
  transform: scale(1.2);
}
#contact .social-mini-box:hover span {
  color: #ffffff;
}
#contact .location-preview {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 10px 30px -10px rgba(18, 40, 74, 0.1);
  display: block;
  min-height: 300px;
}
@media (min-width: 992px) {
  #contact .location-preview {
    min-height: 100%;
  }
}
#contact .location-preview img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 0.8s ease;
}
#contact .location-preview .map-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(18, 40, 74, 0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  opacity: 0;
  transition: opacity 0.4s ease;
}
#contact .location-preview .map-overlay .pin-animation {
  font-size: 3rem;
  color: #d9b65d;
  margin-bottom: 1rem;
  transform: translateY(20px);
  transition: transform 0.4s ease;
}
#contact .location-preview .map-overlay span {
  font-weight: 700;
  letter-spacing: 2px;
  background: rgba(18, 40, 74, 0.8);
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  border: 1px solid #d9b65d;
}
#contact .location-preview:hover img {
  transform: scale(1.1);
}
#contact .location-preview:hover .map-overlay {
  opacity: 1;
}
#contact .location-preview:hover .map-overlay .pin-animation {
  transform: translateY(0);
}

footer {
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: #b08e56;
}/*# sourceMappingURL=all.css.map */