@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");
@import url("https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400..800;1,400..800&display=swap");
:root {
  font-size: clamp(16px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.75rem, 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.1rem, 2vw, 1.1rem);
  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: #f6f6f3;
  color: #5c5d57;
}

h2 {
  margin-bottom: 2rem;
  text-transform: capitalize;
  font-family: "EB Garamond", serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  color: #333;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

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

a {
  text-decoration: none;
  color: #7fb5a3;
}

.pointer-none {
  pointer-events: none !important;
}

header {
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  pointer-events: none;
}

p {
  color: #999a92;
  font-weight: 400;
}

header .navbar-box,
header .booking,
header .menu,
header .menu-toggle,
header .logo {
  pointer-events: auto; /* 這些元素恢復可互動 */
}

.cta-booking {
  position: fixed;
  z-index: 1100;
  bottom: 0rem;
  right: 0rem;
  background: red;
  justify-content: center;
  align-items: center;
  writing-mode: vertical-lr;
  padding: 1rem 0.8rem;
  letter-spacing: 0.5rem;
  background: #7fb5a3;
  color: white;
  display: none;
}
@media (max-width: 768px) {
  .cta-booking {
    display: inline-flex;
  }
}

.navbar-box {
  background: white;
  height: 100vh;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 5rem;
}
@media (max-width: 768px) {
  .navbar-box {
    right: auto;
    top: 0;
    left: 0;
    height: auto;
    flex-direction: row;
    gap: 0;
    align-items: center;
    padding: 1rem;
  }
}
.navbar-box .logo {
  width: 100%;
  display: flex;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .navbar-box .logo {
    width: 50px;
    margin: 0;
  }
}
.navbar-box .logo img {
  width: 100%;
  z-index: 10;
  display: block;
}
.navbar-box .menu-box {
  position: relative;
}
.navbar-box .menu-box .menu-toggle {
  background: white;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: 0.5s;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  display: none;
}
@media (max-width: 768px) {
  .navbar-box .menu-box .menu-toggle {
    width: 45px;
    height: 45px;
    display: inline-flex;
  }
}
.navbar-box .menu-box .menu-toggle:hover {
  background: #7fb5a3;
}
.navbar-box .menu-box .menu-toggle:hover i {
  color: white;
}
.navbar-box .menu-box .menu-toggle.active {
  background: #7fb5a3;
}
.navbar-box .menu-box .menu-toggle.active i {
  color: white;
}
.navbar-box .menu-box .menu-toggle i {
  font-size: 1.8rem;
}
@media (max-width: 768px) {
  .navbar-box .menu-box .menu-toggle i {
    font-size: 1.5rem;
  }
}
.navbar-box .menu-box .menu {
  background: #7fb5a3;
  background: white;
  transition: 1s;
  text-align: center;
}
@media (max-width: 768px) {
  .navbar-box .menu-box .menu {
    right: calc(45px + 0.5rem);
    display: none;
    position: absolute;
    padding: 2rem 4rem;
    width: -moz-max-content;
    width: max-content; /* 依內容最大需要的寬度 */
    top: 0;
    right: calc(50px + 1rem);
    border-radius: 1rem;
    box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
  }
}
.navbar-box .menu-box .menu ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 0;
}
.navbar-box .menu-box .menu ul li a {
  color: black;
  color: #5c5d57;
}
.navbar-box .menu-box .menu.active {
  display: block;
  transition: 1s;
}
.navbar-box .booking {
  background: #7fb5a3;
  color: #fdfcf9;
  width: 100%;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 2;
  font-size: clamp(1.1rem, 2vw, 1.1rem);
  font-weight: 500;
}
@media (max-width: 768px) {
  .navbar-box .booking {
    display: none;
  }
}

@media (max-width: 768px) {
  #hero {
    margin-top: 82px;
  }
}
#hero .swiper {
  width: 100%;
  height: 100vh;
}
@media (max-width: 768px) {
  #hero .swiper {
    height: 40vh;
  }
}
#hero .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: transform 8s ease; /* 控制漸進放大 */
}
#hero .swiper-slide-active img {
  transform: scale(1.1); /* 只要變 active 就開始放大 */
}

#about p {
  line-height: 2.5;
  margin-bottom: 1rem;
}

#services .service-card {
  height: 100%;
  background: #e2e2de;
  background: #fdfcf9;
}
#services .service-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #services .service-card img {
    height: 300px;
  }
}
#services .service-card .text {
  padding: 2rem 1rem 1rem;
}
#services .service-card .text h3 {
  margin-bottom: 2rem;
  color: #a98f76;
}
#services .service-card .text h4 {
  margin-top: 2rem;
}

@keyframes zoomIn {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
#foods .swiper {
  width: 100%;
  transform: rotate(0deg);
}
#foods .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
  align-items: center;
}
#foods .swiper .swiper-slide {
  width: 350px;
}
@media (max-width: 768px) {
  #foods .swiper .swiper-slide {
    width: 200px;
  }
}
#foods .swiper .swiper-slide img {
  width: 100%;
  display: block;
  margin-bottom: 1rem;
}
#foods .swiper .swiper-slide .text h6 {
  font-weight: 500;
}
#foods .swiper .swiper-slide .text p {
  font-weight: 400;
}

#contact {
  background: #e2e2de;
  padding-bottom: 0;
}
#contact iframe {
  filter: grayscale(1);
}
#contact iframe:hover {
  filter: grayscale(0);
}
#contact .logo {
  width: 70%;
}
#contact .logo img {
  width: 100%;
}
#contact .text {
  margin: 2rem 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
#contact .text a {
  color: #a98f76;
  color: #5c5d57;
  color: #999a92;
}
#contact .btn-box {
  display: flex;
  gap: 1rem;
}
#contact .btn-box i {
  font-size: 2rem;
  color: #a98f76;
}
#contact .btn-box svg {
  fill: red;
  fill: #a98f76;
}

footer {
  background: #e2e2de;
  padding-bottom: 1rem;
}
footer a {
  text-decoration: underline;
  color: #a98f76;
}

.swiper-button-prev,
.swiper-button-next {
  top: 50%;
  transform: translateY(-50%);
  color: white;
  width: 50px;
  height: 50px;
  border: 2px solid white;
  border-radius: 100%;
  z-index: 100;
}
@media (max-width: 768px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 35px;
    height: 35px;
    bottom: 1rem;
  }
}
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 1.5rem !important;
}
@media (max-width: 768px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 1.2rem !important;
  }
}/*# sourceMappingURL=all.css.map */