@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Cookie&family=Neonderthaw&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@500&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sevillana&display=swap");
body {
  font-family: "Noto Serif TC", serif;
  letter-spacing: 0.2rem;
  font-weight: 600;
  background: transparent;
}

img {
  max-width: 100%;
  display: block;
}

p {
  font-size: 16px;
  line-height: 2;
}

.link-item {
  text-transform: uppercase;
}

.navbar-toggler:focus {
  box-shadow: none;
}

.navbar-light .navbar-toggler {
  border: none;
}

main {
  background: transparent;
}

section {
  padding: 75px 0;
}

.list-style {
  list-style: none;
  margin-bottom: 40px;
}
.list-style li {
  margin-bottom: 15px;
  padding-left: 20px;
  position: relative;
  font-weight: 300;
  color: #ccc;
  transition: 0.4s;
}
.list-style li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 10px;
  height: 10px;
  border: 1px solid #eee;
  border-radius: 50%;
  transform: rotate(45deg) translateY(-50%);
}
.list-style li::after {
  content: "";
  position: absolute;
  top: 12px;
  left: 7px;
  width: 3px;
  height: 3px;
  background: #aaa;
  border-radius: 50%;
  transition: 1s;
}
.list-style li:hover {
  filter: brightness(2);
}

.sidebar {
  position: fixed;
  bottom: 50px;
  right: 16px;
  z-index: 1000;
}
.sidebar ul {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  list-style: none;
  letter-spacing: 0;
  padding: 0;
  margin: 0;
}
.sidebar ul li {
  width: 50px;
  height: 50px;
  margin: 10px 0px;
}
.sidebar ul li a {
  width: 100%;
  height: 100%;
  background: #F1602D;
  color: #fff;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  transition: 0.3s;
  opacity: 0.5;
  text-decoration: none;
}
.sidebar ul li a:hover {
  opacity: 1;
}
.sidebar ul li a span {
  display: none;
  margin-left: 5px;
  font-size: 14px;
}
.sidebar ul li:last-child {
  border: none;
}
@media (max-width: 991px) {
  .sidebar ul {
    display: flex;
  }
  .sidebar ul li {
    flex-grow: 1;
    margin-bottom: 0;
  }
  .sidebar ul li a {
    width: 100%;
  }
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  padding-top: 30px;
  height: 0;
  overflow: hidden;
}

.video-container iframe,
.video-container object,
.video-container embed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

main {
  width: 100%;
  height: 100%;
  position: relative;
}
main::before {
  content: "";
  width: 100%;
  height: 100%;
  background: url("../images/decorate/bg.jpg") no-repeat center/cover fixed;
  filter: invert(1) brightness(1.4);
  opacity: 0.07;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

section {
  overflow-x: hidden;
}

.img_box img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

section:not(:first-child) .row > * {
  color: #3F1604;
  padding: 0.3rem;
  line-height: 2rem;
}

.sectionTitle h2, .sectionTitle h3 {
  text-align: center;
  color: #694D34;
}

h3 {
  color: #807E2B;
}

h2 {
  color: #694D34;
  font-size: 1.8rem;
  letter-spacing: 6px;
  line-height: 1.5;
  font-weight: bold;
  padding: 0.5rem 2rem;
  border-radius: 3px;
  position: relative;
}
h2::before {
  content: "";
  letter-spacing: 4px;
  text-align: center;
  position: absolute;
  top: 0%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-text-fill-color: rgba(194, 163, 132, 0.4);
  font-size: 4rem;
  z-index: -1;
}
@media (max-width: 991px) {
  h2::before {
    font-size: 3rem;
  }
}
h2::after {
  content: "";
  width: 150px;
  height: 150px;
  background: url(../images/decorate/title_bg.png) no-repeat center/contain;
  opacity: 0.4;
  position: absolute;
  top: 15%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-135deg);
  z-index: -2;
}

.dec {
  font-size: 20px;
  color: #3F1604;
  position: absolute;
  right: 6rem;
  transform: translateY(100%);
}
@media (max-width: 1199px) {
  .dec {
    right: 1rem;
  }
}

header .navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: transparent;
  transition: 0.4s;
  z-index: 99;
}
header .navbar .navbar-brand {
  color: #694D34;
  display: flex;
  align-items: center;
}
header .navbar .navbar-brand img {
  width: 80px;
  object-fit: contain;
  border-radius: 50%;
  margin-right: 10px;
  transition: 0.5s;
}
@media (max-width: 991px) {
  header .navbar .navbar-brand img {
    width: 40px;
  }
}
header .navbar .navbar-brand h1 {
  font-weight: bold;
}
header .navbar .navbar-brand span {
  color: #C2A384;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 3px;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link {
  padding: 6px 10px;
  position: relative;
  color: #3F1604;
  transition: 0.5s;
  text-align: center;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  background: #694D34;
  width: 0%;
  height: 2px;
  transition: 0.5s;
  z-index: -1;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover {
  color: #694D34;
}
header .navbar .navbar-collapse .navbar-nav .nav-item .nav-link:hover::before {
  width: 100%;
}
header .navbar.scrolled {
  background: white;
}
header .navbar.scrolled .navbar-brand {
  filter: brightness(1);
}
header .navbar.scrolled .navbar-brand img {
  width: 60px;
}
header .navbar.scrolled .nav-link {
  color: #F1602D;
  transition: 0.5s;
}
@media (max-width: 991px) {
  header .navbar {
    background: #fff;
  }
}

.hero_l {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center center;
  transition: background-image 2s;
}

@media (max-width: 768px) {
  .hero_s {
    display: block;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    transition: background-image 2s;
  }
}
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  object-position: center center;
  object-fit: cover;
  overflow-y: hidden;
  display: flex;
  align-items: center;
}
@media (min-width: 992px) {
  .hero {
    padding-top: 80px;
  }
}
.hero .row {
  margin: auto;
  width: 100%;
  height: 75vh;
}
@media (max-width: 1199px) {
  .hero .row {
    padding-right: 0rem;
    padding-left: 0rem;
  }
}
.hero .row > div {
  height: 100%;
}
.hero .row .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero .owl-carousel {
  width: 100%;
  height: 100%;
}
@media (max-width: 991px) {
  .hero .owl-carousel img {
    width: 100%;
    height: 100vh;
    object-fit: cover;
    object-position: center;
  }
}
.hero .owl-theme .owl-dots .owl-dot.active span, .hero .owl-theme .owl-dots .owl-dot:hover span {
  background: #C2A384;
}
.hero .title {
  position: absolute;
  top: 62%;
  left: 50px;
  transform: translate(0%, -50%);
  z-index: 3;
}
@media (max-width: 991px) {
  .hero .title {
    top: 69%;
  }
}
@media (max-width: 767px) {
  .hero .title {
    top: 50%;
    transform: translateY(0%);
  }
}
.hero .title span {
  font-size: 7rem;
  color: #987d5a;
  text-transform: uppercase;
  opacity: 0.2;
  position: absolute;
  top: 80px;
  left: -64px;
  transform: rotate(90deg) translate(-95%, 50%);
}
@media (max-width: 767px) {
  .hero .title span {
    display: none;
  }
}
.hero .title p {
  display: inline-block;
  background: #807E2B;
  color: white;
  padding: 0.15rem 1rem;
  border: solid 2px white;
  box-shadow: 0px 0px 0px 5px #807E2B;
  border-radius: 3px;
}
.hero .title::after {
  content: "";
  width: 100px;
  height: 20px;
  position: absolute;
  bottom: -16px;
  left: 0px;
  background: #807E2B;
  transform: translateY(100%);
}
@media (max-width: 991px) {
  .hero .title::after {
    display: none;
  }
}
.hero .title h1 {
  font-size: 3rem;
  letter-spacing: 0.6rem;
  line-height: 70px;
  color: #fff;
  font-weight: bold;
  text-shadow: 3px 0px 7px rgba(105, 77, 52, 0.8), -3px 0px 7px rgba(105, 77, 52, 0.8), 0px 4px 7px rgba(105, 77, 52, 0.8);
}
.hero .title h3 {
  font-size: 2rem;
  letter-spacing: 0.6rem;
  line-height: 20px;
  color: #fff;
  font-weight: bold;
  text-shadow: 3px 0px 7px rgba(105, 77, 52, 0.8), -3px 0px 7px rgba(105, 77, 52, 0.8), 0px 4px 7px rgba(105, 77, 52, 0.8);
}
@media (max-width: 991px) {
  .hero {
    height: 90vh;
  }
  .hero .txt-content {
    padding: 20vh 0;
  }
  .hero .txt-content h1 {
    font-size: 40px;
  }
}

.about {
  background-blend-mode: color;
  padding-top: 5rem;
  padding-bottom: 7rem;
}
@media (max-width: 991px) {
  .about {
    background: transparent;
  }
}
.about h2::before {
  content: "About";
}
.about h3 {
  font-weight: 600;
}
.about p, .about li {
  color: #5d5d5d;
}
.about .sec_title {
  background: #042963;
  border: solid 2px #fff;
  box-shadow: 0px 0px 0px 5px #3492bd;
  border-radius: 3px;
}
.about .time {
  background: #042963;
}
.about .timeline p:not(:last-child) {
  position: relative;
}
.about .timeline p:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 22px;
  width: 10px;
  border-left: solid 2px #042963;
  left: 0;
  bottom: 0;
  transform: translate(30px, 80%);
}
.about .video {
  width: 100%;
  aspect-ratio: 16/9;
}

section {
  position: relative;
}
section .scroll-down {
  position: absolute;
  bottom: 12px;
  left: 50%;
  z-index: 2;
  display: inline-block;
  transform: translate(-50%, 0%);
  color: #fff;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s;
  padding-top: 80px;
}
section .scroll-down:hover {
  opacity: 0.5;
}
section .scroll-down .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
  animation: sdb07 2s infinite;
  opacity: 0;
  box-sizing: border-box;
}
section .scroll-down .arrow:nth-of-type(1) {
  animation-delay: 0s;
}
section .scroll-down .arrow:nth-of-type(2) {
  top: 16px;
  animation-delay: 0.15s;
}
section .scroll-down .arrow:nth-of-type(3) {
  top: 32px;
  animation-delay: 0.3s;
}

@keyframes sdb07 {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.masonry-store {
  column-width: 300px;
  column-gap: 10px;
}
.masonry-store a {
  display: inline-block;
  padding: 5px;
  border: 1px solid #aaa;
  margin-bottom: 5px;
}
.masonry-store a img {
  filter: brightness(0.8);
  transition: 0.4s;
}
.masonry-store a img:hover {
  filter: brightness(1);
}
@media (max-width: 576px) {
  .masonry-store {
    column-width: 150px;
  }
  .masonry-store a img {
    filter: brightness(1);
  }
}

.services {
  position: relative;
}
.services h2::before {
  content: "Menu";
}
.services .item img {
  height: 100px;
}
.services .menuBg {
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.75);
  border-radius: 4px;
  position: relative;
  padding: 50px;
  box-shadow: 0.5px 0.5px 5px rgba(63, 22, 4, 0.5);
  isolation: isolate;
}
@media (max-width: 425px) {
  .services .menuBg {
    padding: 30px;
  }
}
.services .menuBg::before {
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 4px;
  position: absolute;
  background: url(../images/decorate/menu_bg.jpg) no-repeat bottom center/cover;
  top: 0;
  left: 0;
  z-index: -1;
}
.services .menuBg img {
  border-radius: 8px;
}
.services .menuBg .menuContext {
  display: flex;
  align-items: start;
  pointer-events: none;
}
.services .menuBg .menuContext .contextList {
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
}
.services .menuBg .menuContext h3 {
  font-size: 1.5rem;
  font-weight: 600;
}
.services .menuBg .menuContext li {
  font-size: 1.2rem;
  color: #5d5d5d;
}
.services .menuBg .menuContext span {
  color: #F1602D;
  font-size: 14px;
  border: 1px solid #F1602D;
  border-radius: 50px;
  padding: 1px 5px;
}
.services .menuBg .menuContext .hot {
  color: white;
  background: #F1602D;
}
.services .menuBg .menuContext img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  object-position: center;
  border-radius: 4px;
}

.environment {
  position: relative;
}
.environment h2::before {
  content: "Environment";
}
.environment p,
.environment li {
  color: #5d5d5d;
  text-align: justify;
  line-height: 2;
}
.environment p b,
.environment li b {
  font-size: 18px;
  color: #807E2B;
}
.environment img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 8px;
}

.feedback {
  position: relative;
}
.feedback h2::before {
  content: "Feedback";
}
.feedback .slick-track {
  display: flex;
}
.feedback .slick-track .slick-slide {
  display: flex;
}
.feedback .feedbackCard {
  background: white;
  text-align: center;
  padding: 24px 20px;
  box-shadow: 1px -2px 3px rgba(63, 22, 4, 0.5);
  flex-grow: 1;
}
.feedback h4 {
  font-size: 18px;
}
.feedback p {
  text-align: justify;
}
.feedback b {
  font-size: 20px;
  display: inline-block;
  margin-bottom: 12px;
}
.feedback img {
  width: auto;
  height: 150px;
  object-fit: contain;
}

.news {
  position: relative;
}
.news h2::before {
  content: "News";
}
.news .item img {
  height: 100px;
}

.news_box {
  width: 100%;
  height: auto;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
  padding: 3rem;
  color: #028C6A;
}
.news_box .text_s {
  display: none;
}
.news_box h3,
.news_box h4 {
  line-height: 3rem;
}
.news_box h5 {
  line-height: 2.5rem;
  color: #003E19;
}
.news_box a {
  text-decoration: none;
  color: #fff;
}
.news_box span {
  background-color: rgba(187, 150, 104, 0.7);
  color: #fff;
  padding: 8px 25px;
  border-radius: 50px;
  transition: 0.5s;
}
.news_box span:hover {
  background-color: rgb(187, 150, 104);
  transition: 0.5s;
}

@media (max-width: 992px) {
  .news_box .text_l {
    display: none;
  }
  .news_box .text_s {
    display: block;
  }
}
@media (max-width: 576px) {
  .news_box {
    padding: 1rem;
  }
}
.portfolio {
  background-blend-mode: color;
}
.portfolio h2::before {
  content: "Recommend";
}
.portfolio a {
  width: 100%;
  height: 350px;
  border: solid 5px #fff;
  overflow: hidden;
  box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  transition: 0.5s;
}
.portfolio a:hover {
  transform: rotate(1.5deg) scale(1.05);
  box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.5);
}
.portfolio a:hover img {
  transform: scale(1.1);
}
.portfolio img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center bottom;
  transition: 0.5s;
}
.portfolio .recommendCard {
  padding: 10px;
  background: #C2A384;
  border-radius: 4px;
}
.portfolio .recommendCard h3 {
  font-weight: 700;
}
.portfolio .recommendCard i {
  font-size: 40px;
  opacity: 0.7;
}
.portfolio .recommendCard p {
  text-align: justify;
}
.portfolio .recommendCard .iconPic {
  width: auto;
  height: 110px;
  transform: rotate(-30deg);
  position: absolute;
  top: -35px;
  left: -30px;
}

.contact {
  position: relative;
  padding: 0px;
}
.contact .contact_box {
  height: 100%;
}
.contact address i {
  color: #C2A384;
}
.contact address p, .contact address li {
  color: #5d5d5d;
}
.contact address ul li a {
  color: #5d5d5d;
  transition: 0.4s;
}
.contact address ul li a i {
  font-size: 18px;
  line-height: 24px;
  display: flex;
  align-items: center;
}
.contact .sns a {
  width: 60px;
  height: 60px;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  color: white;
  background: #C2A384;
  text-decoration: none;
  font-size: 20px;
  transition: 0.5s;
}
.contact .sns a:hover {
  color: #694D34;
  background: white;
  border: 2px solid rgba(105, 77, 52, 0.5);
}
.contact .sns i {
  font-size: 1.7rem;
  letter-spacing: 0px;
}
footer {
  z-index: 1;
  border-top: solid 1px #5d5d5d;
  margin-bottom: 0px;
  color: #5d5d5d;
  background: #3F1604;
  background-blend-mode: color;
}
footer a {
  color: rgb(255, 245, 216);
  text-decoration: none;
}

#order {
  /* background-color: #D8CABC; */
  background: url(../images/product/img-7.jpg) no-repeat center/cover, #b6ac8e;
  background-blend-mode: multiply;
}

#order h3 {
  font-size: 30px;
  color: #fff;
  line-height: 2;
}

#order p {
  font-size: 20px;
  letter-spacing: 0.2rem;
  color: rgba(255, 255, 255, 0.6392156863);
}

#order .order_content {
  width: 100%;
  height: fit-content;
  color: #fff;
  line-height: 3rem;
  letter-spacing: 0.3rem;
}

/* order button  */
#order button {
  background: #fff;
  color: #F1602D;
  font: bold 25px "Margarine", sans-serif;
  border: 3px solid #F1602D;
  border-radius: 50px;
  padding: 0.8rem 3rem;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: 0.2s ease-in-out;
  letter-spacing: 2px;
}

@media (max-width: 576px) {
  #order button {
    font-size: 19px;
  }
  #order .order_content {
    width: 100%;
    height: fit-content;
    color: #fff;
    line-height: 2rem;
    font-size: 14px;
    letter-spacing: 0.1rem;
  }
}
#order button:hover {
  color: white;
  background: #F1602D;
  border: 3px solid white;
  transform: scale(1.1);
}

#order .name {
  width: 100%;
  text-align: center;
  padding: 0 0 3rem;
  padding-top: 4rem;
  font: 500 14px "Rubik", sans-serif;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-shadow: 0 1px 1px rgba(0, 0, 0, 0.4);
}

#order .button-parrot .parrot {
  position: absolute;
  width: 60px;
  text-align: center;
  animation: blink 0.8s infinite;
  color: transparent;
  top: 70px;
  right: 80px;
}

#order .button-parrot .parrot:before {
  content: "Click Me!";
}

#order .button-parrot .parrot:nth-child(1) {
  top: -30px;
  left: -40px;
  font: 12px/1 "Margarine", sans-serif;
  transform: rotate(-20deg);
  animation-duration: 0.5s;
}

#order .button-parrot .parrot:nth-child(2) {
  font: 12px/1 "Margarine", sans-serif;
  right: -40px;
  top: -20px;
  transform: rotate(15deg);
  animation-duration: 0.3s;
}

#order .button-parrot .parrot:nth-child(3) {
  font: 16px/1 "Margarine", sans-serif;
  top: -60px;
  left: 15px;
  transform: rotate(10deg);
  animation-duration: 1s;
}

#order .button-parrot .parrot:nth-child(4) {
  font: 18px/1 "Margarine", sans-serif;
  top: -70px;
  left: 95px;
  transform: rotate(2deg);
  animation-duration: 0.7s;
}

#order .button-parrot .parrot:nth-child(5) {
  font: 14px/1 "Margarine", sans-serif;
  top: 80px;
  right: -10px;
  transform: rotate(-20deg);
  animation-duration: 0.8s;
}

#order .button-parrot .parrot:nth-child(6) {
  font: 12px/1 "Margarine", sans-serif;
  top: 80px;
  left: -20px;
  transform: rotate(10deg);
  animation-duration: 1.2s;
}

#order .button-parrot button:hover .parrot:before {
  content: "Do it!";
  width: 70px;
}

@keyframes blink {
  25%, 75% {
    color: transparent;
  }
  40%, 60% {
    color: #fff;
  }
}
#order .order_btn {
  height: 30vh;
  display: flex;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=all.css.map */