/* Noto Sans TC */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;600;700&display=swap');
/* Montserrat */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;500;600;700&display=swap');
/* Satisfy */
@import url('https://fonts.googleapis.com/css2?family=Satisfy&display=swap');
/* Cinzel */
@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;700&display=swap');
/* LXGW WenKai TC */
@import url('https://fonts.googleapis.com/css2?family=LXGW+WenKai+TC:wght@400;500;600;700&display=swap');
/* Ruthie */
@import url('https://fonts.googleapis.com/css2?family=Ruthie&display=swap');
/* Lugrasimo */
@import url('https://fonts.googleapis.com/css2?family=Lugrasimo&display=swap');
:root {
  /* 配色 */
  --color-primary: #272220; /* 主色：水泥灰 */
  --color-secondary: #3A3A3A; /* 次色：深灰 */
  --color-accent: #3A3A3A; /* 強調：深灰 */
  --color-bg: #F6F5F3; /* 背景：淡灰 */
  --color-bg-secondary: #EFE3E0; /* 次背景：淺灰 */

  /* 背景顏色 */
  --bg-color: #2722209d;


  /* 字體 */
  --font-base: "Cinzel", "LXGW WenKai TC", sans-serif; 
  --font-heading: "Cinzel", "LXGW WenKai TC", sans-serif;
  --transition-base: 0.4s ease-in-out;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: var(--font-base);
  background-color: var(--color-bg);
  color: var(--color-accent);
  line-height: 1.6;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--color-primary);
  margin-bottom: 1rem;
}
p {
  margin-bottom: 1rem;
  font-size: 1rem;
  color: var(--color-secondary);
}

/* 連結與按鈕 */
a,
.btn {
  color: var(--color-primary);
  text-decoration: none;
  display: inline-block;
  transition: transform var(--transition-base);
}
a:hover,
.btn:hover {
  transform: translateY(-10px);
}


.salon-style-line .salon {
    width: 8rem;
    height: 1px;
    background-color: black;
}

.salon-style-line p {
    font-size: 14px;
    color: black;
    font-family: "Lugrasimo", serif;
}

.w-fit {
    width: fit-content;
}

.logo {
    width: 30rem;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

#hero:before {
    content: "";
    background: rgb(39 34 32 / 50%);
    position: absolute;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
}

.sc-title {
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--color-primary);
    text-align: center;
    margin-bottom: 1rem;
    /* font-family: "Satisfy", serif; */
    letter-spacing: 3px;
}

.sc-sub-title {
    font-size: 1.2rem;
    color: var(--color-secondary);
    font-weight: 400;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
  .sc-title {
    font-size: 2.3rem;
  }
    .sc-sub-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
}

.text-3a {
    color: var(--color-secondary);
}

.btn-ab-social {
    position: relative;
    background-color: var(--color-accent);
    min-width: 2rem;
    color: white;
    padding: 0.5rem;
}
.btn-ab-social:hover {
    color: whitesmoke;
}
.btn-ab-social::after {
    content: "";
    position: absolute;
    top: 3px;
    left: 3px;
    width: 100%;
    height: 100%;
    background-color: var(--color-primary);
    opacity: 0.2;
    transition: opacity var(--transition-base);
}

.social {
    column-gap: 1rem;
}

.services {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url(../img/services/service-bg.png);
    background-size: cover;
    background-position: center 75%;
    background-repeat: no-repeat;
}

@media (min-width: 768px) {
    .services {
        background-attachment: fixed;
    }
}

.services h5 {
    color: white;
}

.services p {
    color: #ffffffcc;
}

.services-item {
    position: relative;
    background-color: var(--color-accent);
    padding-bottom: 1.5rem;
    transition: all 0.6s ease-in-out;
}

.services div.row {
    gap: 1.65rem;
}

.services-item::before {
    content: "";
    position: absolute;
    top: -10px;
    left: -10px;
    width: 100%;
    height: 100%;
    border: #efe3e0 1px solid;
    background-color: transparent;
    transition: opacity var(--transition-base);
}

.services-item:hover::before {
    opacity: 0.5;
    transform: translateY(0px);
}

.services-item:hover {
    /* transform: scale(1.05); */
    transform: translateY(-15px);
}

.bg-base {
    background-color: var(--bg-color);
}

.faq-item-box {
  background-color: #ffffffc7;
  padding: 20px 2rem;
  box-shadow: 0 0 10px rgba(170, 170, 170, 0.1);
  border-radius: 10px;
}

.faq-item-a {
  display: none;
}

@media (max-width: 768px) {
  .faq-item-box {
    padding: 20px 1rem;
  }
}

@media (max-width: 992px) {
  .faq-contact-box img {
    position: relative;
    transform: unset;
  }
}

.faq-item-q {
    cursor: pointer;
}

.faq-item-arrow-d .bi::before {
  color: var(--color-primary);
  font-weight: 800 !important;
}

.faq-item-arrow-p .bi::before {
  color: var(--color-primary);
  font-weight: 800 !important;
}

.faq-item-line {
  background: var(--color-secondary);
  height: 1px;
  margin: 15px 0;
  width: 100%;
}



.footer-line {
    width: 100%;
    height: 1px;
    background-color: var(--color-accent);
    margin: 1rem 0;
}

.maps {
    width: 100%;
    height: 15rem;
    border-radius: 10px;
    overflow: hidden;
}

#footer {
    background-color: var(--color-bg-secondary);
    padding: 2rem 0;
}

#footer h3 {}

#footer .copyright p, #footer .copyright a {
    color: var(--color-bg-secondary) !important;
    font-family: "LXGW WenKai TC", sans-serif;
    opacity: 0.7;
    /* font-size: 0.9rem; */
}