@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.2rem, 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: "Noto Sans TC", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: rgb(67, 67, 67);
}

.bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-image: url("../images/assets/chicken.jpg"), url("../images/assets/chicken.jpg");
  background-repeat: repeat, repeat;
  background-size: 500px 500px, 500px, 500px;
  background-position: 0 0, 200px 7 800px; /* 第二層錯開半個單位 */
  z-index: -10;
  opacity: 0.09;
  filter: grayscale(10%);
}

h2 {
  margin-bottom: 2rem;
  text-align: center;
}
@media (max-width: 768px) {
  h2 {
    margin-bottom: 2rem;
  }
}

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

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

.checkered {
  width: 100%;
  height: 35px;
  background: repeating-conic-gradient(#e63a10 0% 25%, #fff 0% 50%) 0 0/35px 35px;
  background-position: 0 0;
  background-repeat: repeat;
  transform: translateZ(0); /* for smoother rendering */
  margin-bottom: 6rem;
}
@media (max-width: 768px) {
  .checkered {
    margin-bottom: 3rem;
  }
}

.cta-box {
  position: fixed;
  bottom: 2.5rem;
  right: 1rem;
  display: flex;
  padding: 1.2rem;
  aspect-ratio: 1/1;
  justify-content: center;
  align-items: center;
  background: #ffd600;
  text-align: center;
  border-radius: 100%;
  box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
  z-index: 1000;
  border: 2px solid white;
  color: rgb(67, 67, 67);
}
@media (max-width: 768px) {
  .cta-box {
    bottom: 1rem;
    padding: 0.9rem;
  }
}
.cta-box p {
  padding: 0;
  margin: 0;
}

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

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .navbar-toggler-icon {
  filter: invert(1);
}
.navbar .navbar-brand {
  transition: 0.5s;
  opacity: 0;
}
.navbar .navbar-brand img {
  width: 10px;
  transition: 0.5s;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 0.5rem 1.5rem;
  color: white;
}
@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: #ffd600;
  border-radius: 2rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
  color: rgb(67, 67, 67);
}

#hero {
  padding: 3rem 0 0;
  position: relative;
}
#hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60%;
  background: #e40000;
  z-index: -1;
}
#hero img {
  width: 100%;
  border-radius: 100%;
  box-shadow: rgba(255, 255, 255, 0.02) 0px 1px 3px 0px, rgba(255, 255, 255, 0.15) 0px 0px 0px 1px;
  animation: rotateSwing 4s ease-in-out infinite;
  transform-origin: center top; /* 或 left top，看哪個角度適合你 */
  display: inline-block; /* 確保 transform 生效 */
}
#hero .svg-box {
  position: absolute;
  bottom: 4rem;
  left: 0;
  z-index: -1;
  width: 100%;
}
@media (max-width: 768px) {
  #hero .svg-box {
    bottom: 4.2rem;
  }
}
@media (min-width: 1440px) {
  #hero .svg-box {
    bottom: 2rem;
  }
}
#hero .svg-box svg {
  width: 100%;
}

#features {
  padding: 3rem 6rem;
}
@media (max-width: 768px) {
  #features {
    padding: 3rem 0;
  }
}
#features .feature-card {
  text-align: center;
}
@media (max-width: 768px) {
  #features .feature-card {
    margin-bottom: 4rem;
  }
}
#features .feature-card .media-box {
  width: 100%;
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #features .feature-card .media-box {
    margin-bottom: 1rem;
  }
}
#features .feature-card .media-box svg {
  width: 35%;
  height: 150px;
  object-fit: contain;
  stroke: #e40000;
}
@media (max-width: 768px) {
  #features .feature-card .media-box svg {
    width: 30%;
    height: 100px;
  }
}
#features .feature-card h3 {
  margin-bottom: 0.5rem;
}
#about {
  background: linear-gradient(to top, #ffd600, #e40000);
  color: white;
}
@media (max-width: 768px) {
  #about {
    background: #e63a10;
  }
}
#about h2 {
  color: white;
}
#about p {
  line-height: 2;
  margin-bottom: 2rem;
}
#about img {
  transform: rotate(10deg);
  width: 100%;
}
@media (max-width: 768px) {
  #about img {
    transform: rotate(5deg);
    width: 90%;
    margin-bottom: 3rem;
    margin-left: 1rem;
  }
}

#info .info-card {
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
  overflow: hidden;
}
#info .info-card:hover img {
  transform: scale(1.2);
}
#info .info-card:hover h3 {
  display: none;
}
#info .info-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.5s;
}
#info .info-card h3 {
  background: rgb(255, 255, 255);
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.47));
  position: absolute;
  bottom: 0;
  left: 0;
  margin: 0;
  font-size: clamp(1.2rem, 3.5vw, 2rem);
  font-weight: 600;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: end;
  padding: 1rem;
  color: white;
}
@media (max-width: 768px) {
  #info .info-card h3 {
    padding: 0.5rem;
  }
}

@keyframes rotateSwing {
  0% {
    transform: rotate(0deg);
  }
  25% {
    transform: rotate(-3deg);
  }
  50% {
    transform: rotate(3deg);
  }
  75% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
#price .price-card {
  border-left: 1px solid #b18147;
  margin-bottom: 2rem;
}
#price .price-card h3 {
  background: #b18147;
  padding: 1rem;
  color: white;
  position: relative;
  border-top-right-radius: 2rem;
  overflow: hidden;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
#price .price-card h3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 20%;
  background: #c89f63;
}
#price .price-card ul {
  list-style: none;
  padding: 0;
}
#price .price-card ul li {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(200, 159, 99, 0.5);
  padding: 0.5rem 1rem;
  margin-bottom: 0.5rem;
}
#price .price-card ul li h5 {
  display: flex;
  gap: 0.1rem;
  align-items: center;
}
#price .price-card ul li .red {
  color: #e40000;
  font-weight: 500;
}
#price .seasoning-card {
  background: #ffd600;
  padding: 2rem;
  border-radius: 2rem;
}
@media (max-width: 768px) {
  #price .seasoning-card {
    padding: 1rem;
    border-radius: 1rem;
  }
}
#price .seasoning-card h3 {
  text-align: center;
  padding-bottom: 1rem;
}
#price .seasoning-card .seasoning-box {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #price .seasoning-card .seasoning-box {
    margin-bottom: 1rem;
  }
}
#price .seasoning-card .seasoning-box:last-child {
  margin-bottom: 0;
}
#price .seasoning-card .seasoning-box h4 {
  background: #b18147;
  color: white;
  text-align: center;
  border-radius: 2rem 2rem 0 0;
  padding: 1rem 0;
  margin-bottom: 0;
}
@media (max-width: 768px) {
  #price .seasoning-card .seasoning-box h4 {
    border-radius: 1rem 1rem 0 0;
  }
}
#price .seasoning-card .seasoning-box .outside {
  background: white;
  border: 1px solid #c89f63;
  border-top: none;
  padding: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#price .seasoning-card .seasoning-box .outside.pepper {
  color: #b18147;
}
#price .seasoning-card .seasoning-box .outside.chili {
  color: #e40000;
}
#price .seasoning-card .seasoning-box .outside.powder {
  color: orangered;
  border-radius: 0 0 2rem 2rem;
}
@media (max-width: 768px) {
  #price .seasoning-card .seasoning-box .outside.powder {
    border-radius: 0 0 1rem 1rem;
  }
}
#price .seasoning-card .seasoning-box .outside.flavor {
  color: black;
  justify-content: center;
  border-radius: 0 0 2rem 2rem;
}
@media (max-width: 768px) {
  #price .seasoning-card .seasoning-box .outside.flavor {
    border-radius: 0 0 1rem 1rem;
  }
}
#price .seasoning-card .seasoning-box .outside.flavor ul {
  list-style: none;
}
#price .seasoning-card .seasoning-box .outside ul {
  list-style: square;
  padding: 0;
  margin: 0;
}
#price .seasoning-card .seasoning-box .outside ul li {
  margin-bottom: 0.5rem;
}
#price .seasoning-card .seasoning-box .outside ul li:last-child {
  margin-bottom: 0;
}

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

@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .img-box {
  width: 100%;
}
#contact .img-box img {
  width: 50%;
}
@media (max-width: 768px) {
  #contact .img-box img {
    width: 100%;
  }
}
#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: #ffd600;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
}
#contact .contact-box .icon-box i {
  color: white;
  font-size: 2rem;
  color: rgb(67, 67, 67);
}
#contact .contact-box .icon-box svg {
  fill: rgb(67, 67, 67);
}
#contact .contact-box a {
  color: #ffd600;
  color: #e63a10;
  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: #e63a10;
}/*# sourceMappingURL=all.css.map */