@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(15px, 2.8vw, 18px);
}

h1 {
  font-size: clamp(1.75rem, 3.5vw, 2rem);
  font-weight: 600;
}

h2 {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  font-weight: 400;
}

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 Serif TC", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  background-color: #ffffff;
  color: #383838;
}

.h2-box {
  margin-bottom: 5rem;
  text-align: center;
  color: #383838;
}
@media (max-width: 768px) {
  .h2-box {
    margin-bottom: 2rem;
  }
}
.h2-box span {
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 1rem;
}
.h2-box h2 {
  font-family: "Noto Sans TC", sans-serif;
}

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

a {
  text-decoration: none;
  color: #8b4513;
  transition: all 0.3s ease;
}
a:hover {
  color: #d2691e;
}

.navbar.scrolled {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
}
.navbar.scrolled .container-fluid {
  align-items: center;
}
.navbar.scrolled .navbar-brand img {
  width: 80px;
}
@media (max-width: 768px) {
  .navbar.scrolled .navbar-brand img {
    width: 70px;
  }
}

.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  left: 0;
  z-index: 1049;
  transition: 0.5s;
}
.navbar .container-fluid {
  align-items: start;
  padding-left: 2rem;
}
@media (max-width: 768px) {
  .navbar .container-fluid {
    padding-left: 1rem;
  }
}
.navbar .navbar-brand {
  transition: 0.5s;
}
.navbar .navbar-brand img {
  width: 200px;
  transition: 0.5s;
}
.navbar .navbar-collapse {
  flex-grow: 0;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 1rem 1.5rem;
  color: #383838;
  transition: all 0.3s ease;
}
.navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #8b4513;
}
@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: #8b4513;
  border-radius: 25px;
  margin-left: 1rem;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link {
  color: #ffffff;
}
.navbar .navbar-collapse .navbar-nav .nav-item.cta .nav-link:hover {
  color: #ffffff;
}

.swiper-button-prev,
.swiper-button-next {
  top: auto;
  bottom: 3rem;
  color: black;
  width: 50px;
  height: 50px;
  background: rgb(255, 255, 255);
  border-radius: 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;
  }
}

.swiper-button-prev {
  left: 50px;
}
@media (max-width: 768px) {
  .swiper-button-prev {
    left: 20px;
  }
}

.swiper-button-next {
  right: 50px;
}
@media (max-width: 768px) {
  .swiper-button-next {
    right: 10px;
  }
}

#hero {
  margin-top: 5rem;
}
@media (max-width: 768px) {
  #hero {
    margin-top: 8rem;
  }
}
#hero .swiper {
  width: 100%;
  aspect-ratio: 3/2;
  border-radius: 100px 0 0 100px;
  background: red;
}
@media (max-width: 768px) {
  #hero .swiper {
    border-radius: 50px 0 0 50px;
  }
}
#hero .swiper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#hero .text {
  writing-mode: vertical-rl;
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: center;
  gap: 2rem;
  padding-top: 15rem;
  letter-spacing: 5px;
}
@media (max-width: 768px) {
  #hero .text {
    padding: 5rem 0;
  }
}
#hero .text h1 {
  font-size: clamp(1rem, 1vw, 1.125rem);
  font-weight: 400;
  margin: 0;
  padding: 0;
}
#hero .text p {
  padding: 0;
  margin: 0;
  padding-top: 5rem;
}

#about h3 {
  margin-bottom: 2rem;
}
#about p {
  line-height: 2;
  margin-bottom: 1rem;
}
#about .mask {
  position: relative;
  width: 60%;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 20px;
  transform: rotate(-5deg);
}
@media (max-width: 768px) {
  #about .mask {
    width: 80%;
    margin-bottom: 5rem;
  }
}
#about .mask img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 480px;
  transform: translate(-50%, -50%) rotate(5deg);
}
@media (max-width: 768px) {
  #about .mask img {
    width: 350px;
  }
}

#services {
  background: #f8f5f0;
  position: relative;
  margin-top: 6rem;
}
#services .bread {
  position: absolute;
  top: -4rem;
  left: 0;
  width: 100%;
}
@media (max-width: 768px) {
  #services .bread {
    top: -2rem;
  }
}
#services .bread img {
  width: 100%;
}
#services .services-container {
  padding: 0rem 6rem;
}
@media (max-width: 768px) {
  #services .services-container {
    padding: 0rem 2rem;
  }
}
#services .services-container .services-row {
  margin-bottom: 5rem;
}
@media (max-width: 768px) {
  #services .services-container .services-row {
    margin-bottom: 3rem;
  }
}
#services .services-container img {
  width: 100%;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 1rem;
}
#services .services-container .text {
  padding-left: 5rem;
}
@media (max-width: 768px) {
  #services .services-container .text {
    padding-left: 0;
  }
}
#services .services-container .text p {
  line-height: 2;
}
@media (max-width: 768px) {
  #services .services-container .text {
    margin-top: 1rem;
  }
}
#services .services-container .text h4 {
  margin-bottom: 1rem;
}

#breads {
  background: #f8f5f0;
}
#breads .title-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#breads .title-box .title {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
  margin-bottom: 1rem;
}
#breads .title-box .title svg {
  width: 70px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
}
#breads .title-box p {
  margin-bottom: 2rem;
}
@media (max-width: 768px) {
  #breads .title-box p {
    text-align: center;
  }
}
#breads .bread-card {
  background: white;
  border-radius: 1rem;
  overflow: hidden;
  border: 1.5px solid rgba(139, 69, 19, 0.2);
  height: 100%;
}
#breads .bread-card img {
  width: 100%;
  height: 400px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #breads .bread-card img {
    height: 300px;
  }
}
#breads .bread-card .text {
  padding: 2rem;
}
#breads .bread-card .text h4 {
  margin-bottom: 2rem;
  color: #8b4513;
}

#works .swiper {
  width: 100%;
  transform: rotate(0deg);
}
#works .swiper .swiper-wrapper {
  transition-timing-function: linear !important; /* 平滑線性移動 */
}
#works .swiper .swiper-slide {
  width: 600px;
  aspect-ratio: 3/2;
}
@media (max-width: 768px) {
  #works .swiper .swiper-slide {
    width: 300px;
  }
}
#works .swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

#contact {
  background: #f8f5f0;
}
@media (max-width: 768px) {
  #contact {
    padding-bottom: 1rem;
  }
}
#contact .contact-box {
  display: flex;
  gap: 1rem;
  background: #ffffff;
  padding: 1.5rem;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(139, 69, 19, 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}
#contact .contact-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(139, 69, 19, 0.2);
}
@media (max-width: 768px) {
  #contact .contact-box {
    margin-bottom: 1rem;
  }
}
#contact .contact-box:last-child {
  margin-bottom: 0;
}
#contact .contact-box h3 {
  color: #8b4513;
  color: black;
  margin-bottom: 0.5rem;
}
#contact .contact-box .icon-box {
  background: #8b4513;
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}
#contact .contact-box .icon-box i {
  color: #ffffff;
  font-size: 1.5rem;
}
#contact .contact-box a {
  color: #8b4513;
  font-weight: 600;
}
#contact .contact-box a.small {
  font-size: 0.9rem;
}
#contact .contact-box span {
  display: block;
  color: gray;
  margin-top: 0.5rem;
}

footer {
  background: #f8f5f0;
  padding: 2rem 0 1rem;
}
footer a {
  text-decoration: underline;
  color: #f5f5dc;
  color: #8b4513;
}/*# sourceMappingURL=all.css.map */