@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(2.5rem, 3.5vw, 4rem);
  font-weight: 800;
}

h2 {
  font-size: clamp(1.6rem, 3vw, 2rem);
  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.9rem, 1.3vw, 0.9rem);
  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: #eeb231;
  color: #222222;
}

h2 {
  margin-bottom: 3rem;
  background: black;
  color: white;
  display: inline-block;
  padding: 1rem 3rem;
  border-radius: 0 2rem 2rem 0;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
    padding: 1rem 2rem;
  }
}

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

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

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

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(20%);
  } /* 右移距離可自行調整 */
}
.cta-link {
  position: fixed;
  right: 0rem;
  bottom: 2rem;
  z-index: 999;
  flex-direction: column;
  display: flex;
  gap: 1rem;
}
.cta-link a {
  display: inline-block;
  background: #f75521;
  padding: 1rem 0.9rem;
  color: white;
  writing-mode: vertical-lr;
  letter-spacing: 6px;
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 2px, rgba(0, 0, 0, 0.07) 0px 2px 4px, rgba(0, 0, 0, 0.07) 0px 4px 8px, rgba(0, 0, 0, 0.07) 0px 8px 16px, rgba(0, 0, 0, 0.07) 0px 16px 32px, rgba(0, 0, 0, 0.07) 0px 32px 64px;
}
@media (max-width: 768px) {
  .cta-link a {
    padding: 1rem 0.7rem;
    letter-spacing: 4px;
  }
}
.cta-link a i {
  animation: slide 1s ease-in-out infinite alternate;
  display: inline-block;
}

.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%;
}

.navbar.scrolled {
  background: #eeb231;
}
.navbar.scrolled .navbar-brand {
  transition: 0.5s;
}
.navbar.scrolled .navbar-brand img {
  width: 100px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 80px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 150px;
  transition: 0.5s;
}
@media (max-width: 768px) {
  .navbar .navbar-brand img {
    width: 120px;
  }
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
}
@media (max-width: 768px) {
  .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
    padding: 1rem 1em;
  }
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta {
  background: #eeb231;
}

#hero {
  width: 100%;
  height: calc(100vh - 161px);
  position: relative;
  margin-top: 161px;
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  #hero {
    height: auto;
    margin-top: 170px;
  }
}
#hero .splide {
  width: 100%;
  margin: 0 auto;
}
#hero .splide .splide__track .splide__slide {
  opacity: 0.2;
  transition: opacity 0.5s ease-in-out;
}
#hero .splide .splide__track .splide__slide img {
  width: 100%;
  height: 600px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  #hero .splide .splide__track .splide__slide img {
    height: 250px;
  }
}
#hero .splide .splide__track .splide__slide.is-active {
  opacity: 1;
}
#hero .splide .splide__track .splide__arrow--prev {
  left: calc(20% + 16px);
}
#hero .splide .splide__track .splide__arrow--next {
  right: calc(20% + 16px);
}
#hero .splide__arrow {
  background: rgb(255, 255, 255) !important;
}

.marquee {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  background-color: rgba(245, 227, 199, 0.8);
  font-size: 20px;
  font-weight: bold;
  padding: 2rem 0;
  box-sizing: border-box;
  position: relative;
  margin: 5rem 0 0;
}
@media (max-width: 768px) {
  .marquee {
    margin: 4rem 0 0rem;
    padding: 1rem 0;
  }
}
.marquee .marquee-content {
  display: inline-block;
  animation: scroll 25s linear infinite;
}
.marquee .marquee-content span,
.marquee .marquee-content h1 {
  margin-right: 3rem; /* 每段文字之間的距離 */
  display: inline-block;
  font-size: clamp(2.5rem, 3.5vw, 4rem);
  font-weight: 800;
  color: #606060;
}

#video {
  margin: 0rem 0;
  background: #000;
}
#video h2 {
  text-align: center;
  display: block;
}

#services .service-card .img-box {
  width: 100%;
  text-align: center;
  overflow: hidden;
}
#services .service-card .img-box img {
  width: 80%;
  aspect-ratio: 1/1;
  border-radius: 1rem;
  -o-object-fit: cover;
     object-fit: cover;
  border: 5px solid white;
}
#services .service-card .text {
  padding: 2rem;
}
#services .service-card .text h3 {
  margin-bottom: 1rem;
  text-align: center;
}
#services .service-card .text p {
  font-size: clamp(0.9rem, 1.3vw, 0.9rem);
  font-weight: 400;
  color: rgb(71, 71, 71);
}

#about .text {
  background: #f5e3c7;
  width: 110%;
  transform: translate(-3rem, 2rem);
  border-radius: 1rem;
  padding: 2rem 3rem;
}
@media (max-width: 768px) {
  #about .text {
    transform: translate(0rem, 0rem);
    width: 100%;
    margin-top: 1rem;
  }
}
#about .text p {
  line-height: 2;
  margin-bottom: 1rem;
}
#about .text ul {
  padding: 0;
  list-style: none;
}
#about .text ul li {
  margin-bottom: 0.5rem;
}

.img-box {
  position: relative;
  display: inline-block;
}
.img-box span {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: inline-block;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.932);
  border: 2px solid rgb(194, 194, 194);
  border-radius: 1rem;
  color: black;
}

#signature-dish .img-box {
  width: 100%;
  height: 400px;
}
#signature-dish img {
  width: 100%;
  height: 400px;
}

#menu {
  background: black;
}
#menu h2 {
  background: white;
  color: black;
}

#foods .nav-pills .nav-link.active,
#foods .nav-pills .show > .nav-link,
#foods svg.active {
  background: #c62828;
  color: white;
  fill: white;
}
#foods .nav-pills .nav-link {
  color: #c62828;
  background: #eeb231;
  border-radius: 0;
  border: 1px solid #c62828;
}
#foods img {
  width: 100%;
}

@keyframes scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}
:root {
  --swiper-theme-color: white;
}

#feedback .swiper img,
#feedback .swiper video,
#comment .swiper img,
#comment .swiper video {
  width: 100%;
  height: 500px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #feedback .swiper img,
  #feedback .swiper video,
  #comment .swiper img,
  #comment .swiper video {
    height: 400px;
  }
}
#feedback .swiper-button-next,
#feedback .swiper-button-prev,
#comment .swiper-button-next,
#comment .swiper-button-prev {
  width: 50px;
  height: 50px;
  border-radius: 100%;
  border: 2px solid rgb(255, 255, 255);
}
@media (max-width: 768px) {
  #feedback .swiper-button-next,
  #feedback .swiper-button-prev,
  #comment .swiper-button-next,
  #comment .swiper-button-prev {
    width: 50px;
    height: 50px;
  }
}
#feedback .swiper-button-next:after,
#feedback .swiper-button-prev:after,
#comment .swiper-button-next:after,
#comment .swiper-button-prev:after {
  font-size: 1.6rem;
}
@media (max-width: 768px) {
  #feedback .swiper-button-next:after,
  #feedback .swiper-button-prev:after,
  #comment .swiper-button-next:after,
  #comment .swiper-button-prev:after {
    font-size: 1.4rem;
  }
}

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: white;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box .icon-box {
  background: #eeb231;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: rgb(86, 86, 86);
  font-size: 2rem;
}
#contact .contact-box .icon-box svg {
  fill: rgb(86, 86, 86);
}
#contact .contact-box a {
  color: #646363;
  display: inline-block;
  border-bottom: 3px solid #eeb231;
  font-weight: 600;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

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